/* ============================================================
   KATHAROOM — Custom Design System
   Version: 1.0.0
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --kr-bg-darkest:   #080418;
  --kr-bg-dark:      #0D0725;
  --kr-bg-card:      rgba(255,255,255,0.05);
  --kr-bg-card-hover:rgba(255,255,255,0.09);

  --kr-purple-deep:  #1E0A4A;
  --kr-purple:       #5B21B6;
  --kr-purple-mid:   #7E22CE;
  --kr-purple-light: #A855F7;
  --kr-magenta:      #A21CAF;
  --kr-magenta-light:#C026D3;

  --kr-orange:       #EA580C;
  --kr-orange-hover: #C2410C;

  --kr-white:        #FFFFFF;
  --kr-white-60:     rgba(255,255,255,0.60);
  --kr-white-40:     rgba(255,255,255,0.40);
  --kr-white-15:     rgba(255,255,255,0.15);
  --kr-white-08:     rgba(255,255,255,0.08);

  --kr-hero-gradient: linear-gradient(
    180deg,
    #C026D3 0%,
    #7E22CE 20%,
    #4C1D95 45%,
    #1E0A4A 70%,
    #080418 100%
  );

  --kr-text-gradient: linear-gradient(90deg, #E879F9 0%, #A78BFA 50%, #60A5FA 100%);

  --kr-radius-sm:    8px;
  --kr-radius-md:    16px;
  --kr-radius-lg:    24px;
  --kr-radius-pill:  999px;

  --kr-font:         'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --kr-font-display: 'Fredoka', sans-serif;

  --kr-transition:   0.2s ease;

  --kr-max-w:        1160px;
  --kr-section-py:   80px;
}

/* ---- Global Reset for KR pages ---- */
body.kr-page {
  font-family: var(--kr-font) !important;
  background: var(--kr-bg-darkest) !important;
  color: var(--kr-white) !important;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Override parent theme's Sen font on all headings */
body.kr-page h1,
body.kr-page h2,
body.kr-page h3,
body.kr-page h4,
body.kr-page h5,
body.kr-page h6 {
  font-family: var(--kr-font) !important;
  font-style: normal !important;
}

body.kr-page *,
body.kr-page *::before,
body.kr-page *::after {
  box-sizing: border-box;
}

body.kr-page a {
  color: inherit;
  text-decoration: none;
}

/* Ensure specific link types keep their intended colors against parent theme overrides */
body.kr-page .kr-download__badge {
  color: #111 !important;
}
body.kr-page .kr-download__badge svg {
  fill: #111 !important;
  color: #111 !important;
}
body.kr-page .kr-nav__cta,
body.kr-page .kr-btn-primary {
  color: #fff !important;
}
body.kr-page .kr-btn-ghost {
  color: #fff !important;
}
body.kr-page .kr-footer__links a,
body.kr-page .kr-footer__copy,
body.kr-page .kr-footer__credits {
  color: var(--kr-white-60) !important;
}
body.kr-page .kr-footer__links a:hover {
  color: var(--kr-white) !important;
}

/* Hide any WordPress admin bar gap */
body.kr-page.admin-bar .kr-nav {
  top: 32px;
}

.kr-container {
  max-width: var(--kr-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAV
   ============================================================ */
.kr-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(8, 4, 24, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--kr-white-08);
}

.kr-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kr-nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.kr-nav__logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kr-white);
  letter-spacing: -0.02em;
}

.kr-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kr-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--kr-white-60);
  transition: color var(--kr-transition);
}

.kr-nav__links a:hover,
.kr-nav__links a.active {
  color: var(--kr-white);
}

.kr-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--kr-orange);
  color: var(--kr-white) !important;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--kr-radius-pill);
  transition: background var(--kr-transition), transform var(--kr-transition);
  white-space: nowrap;
}

.kr-nav__cta:hover {
  background: var(--kr-orange-hover);
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.kr-hero {
  position: relative;
  min-height: 100vh;
  background: var(--kr-hero-gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.kr-hero__tagline {
  display: inline-block;
  background: var(--kr-white-15);
  border: 1px solid var(--kr-white-15);
  border-radius: var(--kr-radius-pill);
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kr-white-60);
  margin-bottom: 28px;
}

.kr-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  max-width: 740px;
  margin: 0 auto 24px;
}

.kr-hero__title span {
  background: var(--kr-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kr-hero__sub {
  font-size: 1.05rem;
  color: var(--kr-white-60);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.kr-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--kr-orange);
  color: var(--kr-white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--kr-radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--kr-transition), transform var(--kr-transition);
  text-decoration: none;
}

.kr-btn-primary:hover {
  background: var(--kr-orange-hover);
  transform: translateY(-2px);
  color: var(--kr-white);
}

.kr-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--kr-white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--kr-radius-pill);
  border: 1px solid var(--kr-white-40);
  cursor: pointer;
  transition: border-color var(--kr-transition), background var(--kr-transition), transform var(--kr-transition);
  text-decoration: none;
}

.kr-btn-ghost:hover {
  border-color: var(--kr-white);
  background: var(--kr-white-08);
  transform: translateY(-2px);
  color: var(--kr-white);
}

.kr-hero__mockup {
  margin-top: 56px;
  max-width: 680px;
  width: 100%;
}

.kr-hero__mockup img {
  width: 100%;
  border-radius: var(--kr-radius-lg);
  box-shadow: 0 40px 120px rgba(162, 28, 175, 0.35), 0 0 0 1px var(--kr-white-08);
}

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.kr-features {
  background: var(--kr-bg-darkest);
  padding: var(--kr-section-py) 24px;
}

.kr-features__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.kr-features__title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  margin: 0 auto 56px;
  max-width: 560px;
  line-height: 1.2;
}

.kr-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--kr-max-w);
  margin: 0 auto;
}

.kr-feature-card {
  background: var(--kr-bg-card);
  border: 1px solid var(--kr-white-08);
  border-radius: var(--kr-radius-lg);
  padding: 36px 32px;
  transition: background var(--kr-transition), transform var(--kr-transition);
}

.kr-feature-card:hover {
  background: var(--kr-bg-card-hover);
  transform: translateY(-4px);
}

.kr-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--kr-radius-md);
  background: linear-gradient(135deg, var(--kr-purple) 0%, var(--kr-magenta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.kr-feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kr-white);
  margin: 0 0 10px;
}

.kr-feature-card__desc {
  font-size: 0.9rem;
  color: var(--kr-white-60);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   THOUGHTFULLY DESIGNED SECTION
   ============================================================ */
.kr-designed {
  background: linear-gradient(180deg, var(--kr-bg-darkest) 0%, #0F052B 100%);
  padding: var(--kr-section-py) 24px;
}

.kr-designed__inner {
  max-width: var(--kr-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kr-designed__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.kr-designed__title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  line-height: 1.2;
  margin: 0 0 20px;
}

.kr-designed__desc {
  font-size: 1rem;
  color: var(--kr-white-60);
  line-height: 1.7;
  margin: 0 0 32px;
}

.kr-designed__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kr-designed__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--kr-white-60);
  line-height: 1.5;
}

.kr-designed__points li::before {
  content: "✦";
  color: var(--kr-purple-light);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.kr-designed__visual {
  background: var(--kr-bg-card);
  border: 1px solid var(--kr-white-08);
  border-radius: var(--kr-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kr-designed__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.kr-testimonials {
  background: var(--kr-bg-darkest);
  padding: var(--kr-section-py) 24px;
}

.kr-testimonials__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.kr-testimonials__title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  margin: 0 auto 52px;
  max-width: 520px;
  line-height: 1.2;
}

.kr-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--kr-max-w);
  margin: 0 auto;
}

.kr-testimonial-card {
  background: var(--kr-bg-card);
  border: 1px solid var(--kr-white-08);
  border-radius: var(--kr-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kr-testimonial-card__stars {
  color: #FBBF24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.kr-testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--kr-white-60);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.kr-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kr-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kr-purple) 0%, var(--kr-magenta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--kr-white);
  flex-shrink: 0;
}

.kr-testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kr-white);
  margin: 0 0 2px;
}

.kr-testimonial-card__role {
  font-size: 0.8rem;
  color: var(--kr-white-40);
  margin: 0;
}

/* ============================================================
   APP DOWNLOAD SECTION
   ============================================================ */
.kr-download {
  background: linear-gradient(135deg, var(--kr-purple-deep) 0%, #2D0A6B 50%, var(--kr-purple-deep) 100%);
  padding: var(--kr-section-py) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kr-download::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(162, 28, 175, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.kr-download__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
}

.kr-download__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  margin: 0 auto 16px;
  max-width: 600px;
  line-height: 1.2;
  position: relative;
}

.kr-download__sub {
  font-size: 1rem;
  color: var(--kr-white-60);
  margin: 0 auto 40px;
  max-width: 480px;
  line-height: 1.65;
  position: relative;
}

.kr-download__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.kr-download__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--kr-white);
  color: #111;
  border-radius: var(--kr-radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--kr-transition), box-shadow var(--kr-transition);
  text-decoration: none;
}

.kr-download__badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  color: #111;
}

.kr-download__badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.kr-footer {
  background: var(--kr-bg-dark);
  border-top: 1px solid var(--kr-white-08);
  padding: 56px 24px 32px;
}

.kr-footer__inner {
  max-width: var(--kr-max-w);
  margin: 0 auto;
}

.kr-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--kr-white-08);
  margin-bottom: 28px;
}

.kr-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.kr-footer__brand-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.kr-footer__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kr-white);
}

.kr-footer__tagline {
  font-size: 0.875rem;
  color: var(--kr-white-60);
  line-height: 1.6;
  margin: 0 0 20px;
}

.kr-footer__social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.kr-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kr-white-08);
  border: 1px solid var(--kr-white-15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kr-white-60);
  font-size: 0.9rem;
  transition: background var(--kr-transition), color var(--kr-transition);
}

.kr-footer__social a:hover {
  background: var(--kr-purple);
  color: var(--kr-white);
  border-color: var(--kr-purple);
}

.kr-footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kr-white);
  margin: 0 0 18px;
}

.kr-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kr-footer__links a {
  font-size: 0.875rem;
  color: var(--kr-white-60);
  transition: color var(--kr-transition);
}

.kr-footer__links a:hover {
  color: var(--kr-white);
}

.kr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.kr-footer__copy {
  font-size: 0.8rem;
  color: var(--kr-white-40);
  margin: 0;
}

.kr-footer__credits {
  font-size: 0.8rem;
  color: var(--kr-white-40);
  margin: 0;
}

.kr-footer__credits a {
  color: var(--kr-white-60);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kr-footer__credits a:hover {
  color: var(--kr-white);
}

/* ============================================================
   OUR TEAM PAGE
   ============================================================ */
.kr-team {
  background: var(--kr-bg-darkest);
  padding-top: 80px;
}

.kr-team__hero {
  background: linear-gradient(180deg, #2D0A6B 0%, var(--kr-bg-darkest) 100%);
  padding: 80px 24px 64px;
  text-align: center;
}

.kr-team__hero-label {
  display: inline-block;
  background: var(--kr-white-08);
  border: 1px solid var(--kr-white-15);
  border-radius: var(--kr-radius-pill);
  padding: 6px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin-bottom: 20px;
}

.kr-team__hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  margin: 0 auto 16px;
  max-width: 600px;
  line-height: 1.15;
}

.kr-team__hero-sub {
  font-size: 1rem;
  color: var(--kr-white-60);
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.65;
}

.kr-team__section {
  padding: 64px 24px;
}

.kr-team__section-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin: 0 0 12px;
}

.kr-team__section-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--kr-white);
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  line-height: 1.2;
}

.kr-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: var(--kr-max-w);
  margin: 0 auto;
}

.kr-team__grid--single {
  max-width: 320px;
}

.kr-team-card {
  background: var(--kr-bg-card);
  border: 1px solid var(--kr-white-08);
  border-radius: var(--kr-radius-lg);
  overflow: hidden;
  transition: transform var(--kr-transition), box-shadow var(--kr-transition);
}

.kr-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(91, 33, 182, 0.25);
}

.kr-team-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--kr-purple-deep) 0%, #2D0A6B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.kr-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kr-team-card__body {
  padding: 24px;
}

.kr-team-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kr-white);
  margin: 0 0 4px;
}

.kr-team-card__role {
  font-size: 0.8rem;
  color: var(--kr-purple-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

.kr-team-card__bio {
  font-size: 0.875rem;
  color: var(--kr-white-60);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.kr-contact {
  background: var(--kr-bg-darkest);
  padding-top: 80px;
}

.kr-contact__hero {
  background: linear-gradient(180deg, #2D0A6B 0%, var(--kr-bg-darkest) 100%);
  padding: 80px 24px 64px;
  text-align: center;
}

.kr-contact__hero-label {
  display: inline-block;
  background: var(--kr-white-08);
  border: 1px solid var(--kr-white-15);
  border-radius: var(--kr-radius-pill);
  padding: 6px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin-bottom: 20px;
}

.kr-contact__hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  margin: 0 auto 16px;
  max-width: 560px;
  line-height: 1.15;
}

.kr-contact__hero-sub {
  font-size: 1rem;
  color: var(--kr-white-60);
  margin: 0 auto;
  max-width: 440px;
  line-height: 1.65;
}

.kr-contact__body {
  padding: 72px 24px;
}

.kr-contact__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
}

.kr-contact__info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kr-white);
  margin: 0 0 28px;
}

.kr-contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kr-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.kr-contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--kr-radius-md);
  background: linear-gradient(135deg, var(--kr-purple) 0%, var(--kr-magenta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.kr-contact__info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kr-purple-light);
  font-weight: 600;
  margin: 0 0 4px;
}

.kr-contact__info-value {
  font-size: 0.925rem;
  color: var(--kr-white);
  margin: 0;
  line-height: 1.5;
}

.kr-contact__info-value a {
  color: var(--kr-white);
  transition: color var(--kr-transition);
}

.kr-contact__info-value a:hover {
  color: var(--kr-purple-light);
}

/* Contact Form */
.kr-contact__form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kr-white);
  margin: 0 0 28px;
}

.kr-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kr-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kr-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kr-white-60);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kr-form-group input,
.kr-form-group textarea,
.kr-form-group select {
  background: var(--kr-white-08);
  border: 1px solid var(--kr-white-15);
  border-radius: var(--kr-radius-sm);
  padding: 12px 16px;
  color: var(--kr-white);
  font-size: 0.925rem;
  font-family: var(--kr-font);
  transition: border-color var(--kr-transition);
  outline: none;
  width: 100%;
}

.kr-form-group input::placeholder,
.kr-form-group textarea::placeholder {
  color: var(--kr-white-40);
}

.kr-form-group input:focus,
.kr-form-group textarea:focus,
.kr-form-group select:focus {
  border-color: var(--kr-purple-light);
}

.kr-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.kr-form-group select option {
  background: var(--kr-bg-dark);
  color: var(--kr-white);
}

.kr-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--kr-orange);
  color: var(--kr-white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--kr-radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--kr-transition), transform var(--kr-transition);
  font-family: var(--kr-font);
  margin-top: 4px;
}

.kr-form__submit:hover {
  background: var(--kr-orange-hover);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .kr-designed__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kr-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .kr-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  :root {
    --kr-section-py: 56px;
  }

  .kr-nav {
    padding: 14px 20px;
    gap: 12px;
  }

  .kr-nav__links {
    display: none;
  }

  .kr-hero {
    padding: 110px 20px 60px;
  }

  .kr-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kr-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .kr-team__grid {
    grid-template-columns: 1fr;
  }

  .kr-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HERO — DECORATIVE ILLUSTRATIONS & PHONE MOCKUPS
   ============================================================ */
.kr-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kr-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.kr-hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.kr-hero__deco--left {
  left: 0;
  bottom: 0;
  height: 300px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.kr-hero__deco--right-top {
  right: 20px;
  top: 60px;
  height: 220px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.kr-hero__deco--right-low {
  right: 200px;
  bottom: 20px;
  height: 160px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  opacity: 0.9;
}

.kr-hero__phones {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-bottom: 0;
}

.kr-hero__phone {
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.6));
  border-radius: 24px;
}

.kr-hero__phone--main {
  height: 320px;
  z-index: 2;
}

.kr-hero__phone--side {
  height: 260px;
  z-index: 1;
  opacity: 0.9;
  transform: translateX(-16px) rotate(3deg);
}

/* ============================================================
   STORIES SECTION
   ============================================================ */
.kr-stories {
  background: var(--kr-bg-dark);
  padding: 80px 0;
}

.kr-stories__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kr-stories__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  margin: 0 0 12px;
}

.kr-stories__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  line-height: 1.15;
  margin: 0 0 16px;
}

.kr-stories__desc {
  font-size: 1rem;
  color: var(--kr-white-60);
  line-height: 1.7;
  margin: 0;
}

.kr-stories__visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.kr-stories__collection {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.kr-stories__player {
  width: 100%;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================================
   SHARED LISTENING SECTION
   ============================================================ */
.kr-shared {
  background: linear-gradient(180deg, var(--kr-bg-dark) 0%, #160438 100%);
  padding: 80px 0;
}

.kr-shared__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kr-shared__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  margin: 0 0 12px;
}

.kr-shared__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  line-height: 1.15;
  margin: 0 0 16px;
}

.kr-shared__desc {
  font-size: 1rem;
  color: var(--kr-white-60);
  line-height: 1.7;
  margin: 0 0 24px;
}

.kr-shared__visual {
  position: relative;
}

.kr-shared__visual > img:first-child {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.kr-shared__char {
  position: absolute;
  bottom: -30px;
  right: -40px;
  height: 160px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  pointer-events: none;
}

/* ============================================================
   DEVICES SECTION
   ============================================================ */
.kr-devices {
  background: linear-gradient(180deg, #160438 0%, #0D0725 50%, var(--kr-bg-darkest) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kr-devices__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kr-purple-light);
  margin: 0 0 12px;
}

.kr-devices__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--kr-white);
  margin: 0 0 12px;
}

.kr-devices__sub {
  font-size: 1rem;
  color: var(--kr-white-60);
  margin: 0 0 48px;
}

.kr-devices__mockup img {
  max-width: 100%;
  filter: drop-shadow(0 24px 64px rgba(90,30,150,0.4));
}

.kr-devices__char {
  position: absolute;
  right: 40px;
  bottom: 20px;
  height: 200px;
  width: auto;
  opacity: 0.7;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 900px) {
  .kr-stories__inner,
  .kr-shared__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kr-hero__deco--left {
    height: 180px;
    opacity: 0.6;
  }

  .kr-hero__deco--right-top {
    height: 140px;
    opacity: 0.6;
  }

  .kr-hero__deco--right-low {
    display: none;
  }

  .kr-shared__char {
    display: none;
  }

  .kr-devices__char {
    display: none;
  }
}

@media (max-width: 680px) {
  .kr-hero__deco {
    display: none;
  }

  .kr-hero__phones {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .kr-hero__phone--main {
    height: 240px;
  }

  .kr-hero__phone--side {
    display: none;
  }

  .kr-stories__visuals {
    align-items: center;
  }

  .kr-devices__mockup img {
    max-width: 100%;
  }
}

/* ============================================================
   HOMEPAGE DESIGN REFERENCE ALIGNMENT
   ============================================================ */
body.kr-page {
  overflow-x: hidden;
}

body.kr-page .wp-site-blocks {
  background: #31065f;
}

.kr-home {
  --kr-home-bg: #330068;
  --kr-home-panel: #54258b;
  --kr-home-panel-deep: #45137e;
  --kr-home-orange: #e87938;
  --kr-home-orange-dark: #c95f24;
  --kr-home-max: 1136px;
  background: var(--kr-home-bg);
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
}

.kr-home .kr-container {
  max-width: var(--kr-home-max);
}

.kr-home__nav {
  position: relative;
  inset: auto;
  z-index: 20;
  width: min(calc(100% - 160px), 1260px);
  min-height: 116px;
  margin: 44px auto 0;
  padding: 24px 44px;
  border: 0;
  border-radius: 56px;
  background: rgba(91, 43, 139, 0.92);
  box-shadow: none;
}

.kr-home__nav .kr-nav__logo-text {
  font-size: 1.55rem;
  line-height: 0.95;
  max-width: 112px;
  color: #fbfbff;
}

.kr-home__nav .kr-nav__logo-img {
  width: 108px;
  height: auto;
}

.kr-home__nav .kr-nav__logo-img + .kr-nav__logo-text,
.kr-home-footer .kr-footer__brand-logo img + .kr-footer__brand-name {
  display: none;
}

.kr-home__nav .kr-nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 78px;
}

.kr-home__nav .kr-nav__links a {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.kr-home__nav .kr-nav__links a.active {
  color: #ffe65c;
  text-decoration: underline wavy #ffe65c 1px;
  text-underline-offset: 8px;
}

.kr-home__nav .kr-nav__cta {
  padding: 16px 28px;
  background: var(--kr-home-orange);
  border-radius: 26px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
  font-size: 1rem;
}

.kr-home-hero {
  min-height: auto;
  padding: 58px 24px 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(121, 54, 196, 0.62) 0 30%, transparent 58%),
    var(--kr-home-bg);
  isolation: isolate;
}

.kr-home-hero .kr-hero__content {
  max-width: 760px;
  z-index: 4;
}

.kr-home-hero .kr-hero__title {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 4.2vw, 4.45rem);
  line-height: 1.17;
  letter-spacing: 0;
  color: #fff;
}

.kr-home-hero .kr-hero__sub {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.28;
}

.kr-store-badges {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.kr-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  height: 58px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #080808;
  color: #fff !important;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
}

.kr-listen-label {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.kr-audio-pill {
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 16px;
  width: min(370px, 100%);
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 22px;
  background: var(--kr-home-orange);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.12);
  text-align: left;
}

.kr-audio-pill__play {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  overflow: hidden;
  color: transparent;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  position: relative;
}

.kr-audio-pill__play::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-left: 17px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.kr-audio-pill__title {
  font-size: 1.2rem;
  font-weight: 800;
}

.kr-audio-pill__bar {
  display: block;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(83, 50, 38, 0.65);
}

.kr-audio-pill__bar span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.kr-home-hero .kr-hero__clouds {
  position: absolute;
  left: 50%;
  bottom: 70px;
  z-index: 1;
  width: min(1460px, 124vw);
  max-width: none;
  transform: translateX(-50%);
  opacity: 0.96;
  pointer-events: none;
}

.kr-home-hero .kr-hero__devices {
  position: relative;
  z-index: 3;
  width: min(670px, 58vw);
  margin-top: 44px;
  filter: drop-shadow(0 26px 46px rgba(25, 0, 42, 0.55));
}

.kr-home-hero .kr-hero__deco {
  z-index: 3;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.36));
}

.kr-hero__deco--rabbit {
  left: 8%;
  top: 235px;
  width: 205px;
}

.kr-hero__deco--mongoose {
  left: -42px;
  top: 555px;
  width: 245px;
}

.kr-hero__deco--child {
  right: 9%;
  top: 250px;
  width: 190px;
}

.kr-hero__deco--elephant {
  right: 3%;
  top: 545px;
  width: 190px;
}

.kr-showcase {
  max-width: var(--kr-home-max);
  margin: 40px auto 0;
  padding: 0 24px;
}

.kr-showcase__wide,
.kr-story-card,
.kr-shared-banner {
  border-radius: 24px;
  background: linear-gradient(145deg, #542397 0%, #43107d 100%);
  overflow: hidden;
}

.kr-showcase__wide {
  display: grid;
  grid-template-columns: 1fr 270px 270px;
  gap: 32px;
  min-height: 360px;
  padding: 46px 50px 0;
  align-items: end;
}

.kr-showcase__wide > div {
  align-self: start;
}

.kr-showcase__wide h2,
.kr-story-card h2,
.kr-shared-banner h2,
.kr-designed-block h2,
.kr-home-download h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.kr-showcase__wide p,
.kr-story-card p,
.kr-shared-banner p,
.kr-designed-block p,
.kr-home-download p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.kr-showcase__wide img {
  max-height: 345px;
  object-fit: contain;
  align-self: end;
  justify-self: center;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.38));
}

.kr-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 32px;
  margin-top: 32px;
}

.kr-story-card {
  min-height: 380px;
  position: relative;
}

.kr-story-card--image {
  display: block;
  text-align: center;
  min-height: auto;
  aspect-ratio: 498 / 397;
}

.kr-story-card--image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
}

.kr-story-card--image h2 {
  padding: 0 32px 36px;
  line-height: 1.05;
}

.kr-story-card--split {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 26px;
  align-items: start;
  padding: 34px 36px 0;
}

.kr-story-card--split img {
  align-self: start;
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.kr-story-card--split > div {
  align-self: start;
  padding-top: 8px;
}

.kr-story-card--split em {
  color: #fff074;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-style: italic;
}

.kr-shared-banner {
  position: relative;
  margin-top: 32px;
  min-height: 420px;
}

.kr-shared-banner img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  filter: none;
  border-radius: 24px;
}

.kr-shared-banner > div {
  position: absolute;
  left: 52px;
  top: 44px;
  max-width: 360px;
}

.kr-designed-block {
  max-width: var(--kr-home-max);
  margin: 110px auto 90px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kr-designed-features {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  gap: 48px 44px;
  margin-top: 50px;
}

.kr-designed-features div {
  text-align: center;
}

.kr-designed-features img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 14px;
}

.kr-designed-features span {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
}

.kr-designed-block__visual {
  position: relative;
  min-height: 560px;
}

.kr-designed-block__phone {
  position: absolute;
  right: 90px;
  top: 10px;
  width: 310px;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.45));
  z-index: 3;
}

.kr-designed-block__fox {
  position: absolute;
  left: 80px;
  top: 18px;
  width: 125px;
  z-index: 2;
}

.kr-designed-block__cloud {
  position: absolute;
  right: 12px;
  top: 170px;
  width: 170px;
  z-index: 1;
}

.kr-designed-block__animal {
  position: absolute;
  left: 60px;
  bottom: 40px;
  width: 150px;
  z-index: 4;
}

.kr-home-testimonials {
  position: relative;
  padding: 140px 24px 150px;
  background:
    radial-gradient(circle at 10% 0%, #5b2a92 0 150px, transparent 151px),
    linear-gradient(180deg, #7d4ca3 0%, #7d4ca3 74%, #55258f 74%, #55258f 100%);
}

.kr-home-testimonials .kr-testimonials__title {
  max-width: none;
  margin-bottom: 64px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
}

.kr-home-testimonials .kr-testimonials__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 68px;
}

.kr-home-testimonials .kr-testimonial-card {
  padding: 24px;
  border: 0;
  border-radius: 12px;
  background: rgba(62, 26, 84, 0.75);
}

.kr-home-testimonials .kr-testimonial-card h3 {
  margin: 18px 0 6px;
  color: #fff;
  font-size: 1.02rem;
}

.kr-home-testimonials .kr-testimonial-card__quote {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.kr-home-devices {
  padding: 100px 24px 680px;
  background:
    linear-gradient(180deg, #330068 0%, rgba(29, 13, 95, 0.5) 45%, rgba(1, 30, 36, 0.88) 100%),
    var(--kr-home-bg);
}

.kr-home-devices .kr-devices__title {
  margin-bottom: 58px;
  color: #fff;
}

.kr-home-devices .kr-devices__mockup img {
  width: min(980px, 90vw);
}

.kr-home-download {
  margin-top: -620px;
  min-height: 850px;
  padding: 0 24px;
  position: relative;
  background:
    url("/wp-content/themes/gutenify-virtual-reality-child/images/katharoom-night-footer.png?v=2") center top / cover no-repeat,
    linear-gradient(180deg, #10105c 0%, #061e25 100%);
}

.kr-home-download__panel {
  display: block;
  position: absolute;
  z-index: 5;
  top: clamp(604px, 42.3vw, 640px);
  left: calc(50% + clamp(410px, 30.2vw, 456px));
  width: 350px;
  transform: translateX(-50%);
}

.kr-home-download__panel > div {
  display: none;
}

.kr-home-download__form {
  display: grid;
  gap: 20px;
  margin-top: 0;
  justify-items: center;
}

.kr-home-download__notice {
  width: 100%;
  margin: 0 0 12px;
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.kr-home-download__notice--success {
  background: rgba(72, 187, 120, 0.2);
  border: 1px solid rgba(72, 187, 120, 0.56);
}

.kr-home-download__notice--error {
  background: rgba(248, 113, 113, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.56);
}

.kr-home-download__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.kr-home-download__form input {
  width: 100%;
  height: 61px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px 0 64px;
  background: #fff;
  color: #111 !important;
  -webkit-text-fill-color: #111;
  caret-color: #111;
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  text-align: left;
  box-shadow: none;
  outline: none;
}

.kr-home-download__form input:focus {
  color: #111 !important;
  -webkit-text-fill-color: #111;
}

.kr-home-download__form button {
  justify-self: center;
  min-width: 128px;
  height: 42px;
  margin-top: 0;
  border: 0;
  border-radius: 999px;
  background: var(--kr-home-orange);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.13);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.kr-home-footer {
  padding: 72px 24px 36px;
  background: #041d22;
}

.kr-home-footer .kr-footer__inner {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 42px;
}

.kr-home-footer .kr-footer__brand-name {
  font-size: 1.6rem;
}

.kr-home-footer .kr-footer__brand-logo img {
  width: 126px;
  height: auto;
}

.kr-home-footer .kr-footer__links {
  gap: 18px;
}

.kr-home-footer .kr-footer__links a {
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 800;
}

.kr-home-footer .kr-footer__links a:first-child {
  color: #fff36a !important;
  text-decoration: underline wavy #fff36a 1px;
  text-underline-offset: 8px;
}

.kr-home-footer .kr-footer__copy {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

@media (max-width: 1100px) {
  .kr-home__nav {
    width: calc(100% - 48px);
  }

  .kr-home__nav .kr-nav__links {
    gap: 38px;
  }

  .kr-hero__deco--rabbit,
  .kr-hero__deco--child {
    width: 150px;
  }

  .kr-hero__deco--mongoose,
  .kr-hero__deco--elephant {
    width: 155px;
  }

  .kr-showcase__wide {
    grid-template-columns: 1fr 220px 220px;
  }
}

@media (max-width: 820px) {
  .kr-home__nav {
    min-height: 76px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 36px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .kr-home__nav .kr-nav__links {
    position: static;
    order: 2;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 22px;
    transform: none;
  }

  .kr-home__nav .kr-nav__links a {
    font-size: 0.92rem;
  }

  .kr-home__nav .kr-nav__cta {
    padding: 11px 15px;
    font-size: 0.82rem;
  }

  .kr-home-hero {
    padding-top: 48px;
    overflow: hidden;
  }

  .kr-home-hero .kr-hero__title {
    max-width: calc(100vw - 32px);
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .kr-home-hero .kr-hero__sub {
    max-width: calc(100vw - 44px);
    font-size: 1.05rem;
  }

  .kr-home-hero .kr-hero__deco {
    display: none;
  }

  .kr-home-hero .kr-hero__devices {
    width: min(560px, 100vw);
  }

  .kr-showcase__wide,
  .kr-showcase__grid,
  .kr-story-card--split,
  .kr-designed-block,
  .kr-home-testimonials .kr-testimonials__grid,
  .kr-home-footer .kr-footer__inner {
    grid-template-columns: 1fr;
  }

  .kr-showcase__wide {
    padding: 34px 28px 30px;
    text-align: center;
    align-items: center;
    overflow: visible;
  }

  .kr-showcase__wide img {
    width: min(260px, 76vw);
    max-width: 100%;
    max-height: none;
    align-self: center;
    justify-self: center;
  }

  .kr-story-card--split {
    text-align: center;
  }

  .kr-designed-block {
    margin-top: 70px;
    gap: 30px;
  }

  .kr-designed-features {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .kr-designed-block__visual {
    min-height: 440px;
  }

  .kr-designed-block__phone {
    left: 50%;
    right: auto;
    width: 260px;
    transform: translateX(-50%);
  }

  .kr-home-testimonials {
    padding: 80px 24px;
  }

  .kr-home-testimonials .kr-testimonials__grid {
    gap: 24px;
  }

  .kr-home-devices {
    padding-bottom: 460px;
  }

  .kr-home-download {
    margin-top: -430px;
    padding-top: 180px;
  }

  .kr-home-download__panel {
    top: 430px;
    left: 50%;
    margin: 0 auto;
  }

  .kr-shared-banner {
    min-height: 0;
  }

  .kr-shared-banner img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

}

@media (max-width: 640px) {
  .kr-home-download__panel {
    top: 390px;
    left: 50%;
    width: min(340px, calc(100vw - 36px));
  }

  .kr-home-download__form input {
    height: 56px;
    padding-left: 52px;
    font-size: 0.98rem;
  }
}

@media (max-width: 520px) {
  .kr-home {
    width: 100%;
  }

  .kr-home__nav {
    width: calc(100% - 24px);
    gap: 10px 12px;
  }

  .kr-home__nav .kr-nav__logo-text {
    font-size: 0.98rem;
    max-width: 90px;
  }

  .kr-home__nav .kr-nav__logo-img {
    width: 78px;
  }

  .kr-home__nav .kr-nav__links {
    gap: 14px;
  }

  .kr-home__nav .kr-nav__links a {
    font-size: 0.82rem;
  }

  .kr-home__nav .kr-nav__cta {
    max-width: 148px;
    padding: 10px 13px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .kr-store-badge {
    min-width: 148px;
    height: 50px;
    font-size: 1rem;
  }

  .kr-audio-pill {
    grid-template-columns: 50px 1fr;
    width: min(370px, calc(100vw - 32px));
    padding: 14px 16px;
  }

  .kr-audio-pill__title {
    font-size: 1rem;
  }

  .kr-showcase {
    margin-top: 24px;
    padding: 0 16px;
  }

  .kr-showcase__wide {
    gap: 22px;
    padding: 30px 20px 28px;
  }

  .kr-showcase__wide img {
    width: min(230px, 82vw);
  }

  .kr-showcase__wide h2,
  .kr-story-card h2,
  .kr-shared-banner h2,
  .kr-designed-block h2,
  .kr-home-download h2 {
    font-size: 2rem;
  }

  .kr-shared-banner > div {
    left: 28px;
    right: 24px;
    top: 30px;
  }

  .kr-designed-block {
    padding: 0 18px;
  }

  .kr-designed-features {
    gap: 30px 18px;
  }
}

/* ============================================================
   OUR TEAM DESIGN REFERENCE PAGE
   ============================================================ */
.kr-team-page {
  --kr-team-purple: #320164;
  --kr-team-panel: #5c2a91;
  --kr-team-orange: #e87938;
  --kr-team-yellow: #fff36a;
  --kr-team-max: 1352px;
  min-height: 100vh;
  padding-top: 46px;
  background:
    radial-gradient(circle at 62% 29%, rgba(125, 82, 189, 0.72) 0 15%, rgba(125, 82, 189, 0.24) 27%, transparent 42%),
    radial-gradient(circle at 41% 43%, rgba(244, 35, 107, 0.78) 0 10%, rgba(244, 35, 107, 0.38) 21%, transparent 37%),
    radial-gradient(circle at 57% 42%, rgba(219, 139, 113, 0.66) 0 13%, transparent 35%),
    linear-gradient(180deg, #330068 0%, #25065d 36%, #17105a 100%);
  color: #fff;
  overflow: hidden;
}

.kr-team-page__nav {
  position: relative;
  inset: auto;
  z-index: 20;
  width: min(calc(100% - 176px), 1320px);
  min-height: 122px;
  margin: 0 auto;
  padding: 24px 46px;
  border: 0;
  border-radius: 62px;
  background: rgba(91, 43, 139, 0.92);
  box-shadow: none;
}

.kr-team-page__nav .kr-nav__logo-img {
  width: 108px;
  height: auto;
}

.kr-team-page__nav .kr-nav__logo-img + .kr-nav__logo-text {
  display: none;
}

.kr-team-page__nav .kr-nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 78px;
}

.kr-team-page__nav .kr-nav__links a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.kr-team-page__nav .kr-nav__links a.active,
.kr-team-page__footer .kr-footer__links a.active {
  color: var(--kr-team-yellow) !important;
  text-decoration: underline wavy var(--kr-team-yellow) 1px;
  text-underline-offset: 8px;
}

.kr-team-page__nav .kr-nav__cta {
  padding: 16px 28px;
  background: var(--kr-team-orange);
  border-radius: 28px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.14);
  font-size: 1rem;
  font-weight: 800;
}

.kr-team-page__section {
  width: min(calc(100% - 176px), var(--kr-team-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  align-items: start;
}

.kr-team-page__section--founders {
  padding-top: 120px;
}

.kr-team-page__section--designer {
  padding-top: 104px;
}

.kr-team-page__section--storytellers {
  padding-top: 126px;
  padding-bottom: 144px;
}

.kr-team-page__copy h1,
.kr-team-page__copy h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.4rem, 3.7vw, 3.4rem);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: 0;
}

.kr-team-page__copy p {
  max-width: 350px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.18rem, 1.75vw, 1.55rem);
  font-weight: 500;
  line-height: 1.22;
}

.kr-team-page__members {
  display: grid;
  justify-items: center;
  align-items: start;
}

.kr-team-page__members--three {
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 42px;
}

.kr-team-page__members--one {
  grid-template-columns: 1fr;
  max-width: 390px;
  margin-left: 300px;
}

.kr-team-page__members--two {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  max-width: 620px;
  margin-left: 200px;
  gap: 82px;
}

.kr-team-person {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.kr-team-person > img,
.kr-team-person__photo {
  display: block;
  width: clamp(154px, 14vw, 204px);
  aspect-ratio: 1;
  margin: 0 auto 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  clip-path: polygon(50% 0%, 61% 8%, 74% 4%, 84% 15%, 96% 20%, 93% 35%, 100% 50%, 92% 62%, 96% 78%, 81% 83%, 73% 96%, 59% 92%, 50% 100%, 39% 92%, 24% 97%, 16% 84%, 4% 78%, 7% 63%, 0% 50%, 8% 38%, 4% 22%, 19% 17%, 27% 4%, 41% 8%);
}

.kr-team-person > img,
.kr-team-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0%, 61% 8%, 74% 4%, 84% 15%, 96% 20%, 93% 35%, 100% 50%, 92% 62%, 96% 78%, 81% 83%, 73% 96%, 59% 92%, 50% 100%, 39% 92%, 24% 97%, 16% 84%, 4% 78%, 7% 63%, 0% 50%, 8% 38%, 4% 22%, 19% 17%, 27% 4%, 41% 8%);
}

.kr-team-person__photo img {
  display: block;
}

.kr-team-person__photo--contain {
  background: radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08) 70%);
}

.kr-team-person__photo--contain img {
  object-fit: contain;
  object-position: center center;
  padding: 24px 18px 12px;
  clip-path: none;
}

.kr-team-person__photo--rajdeep img {
  transform: scale(1.12);
  transform-origin: center center;
}

.kr-team-person h2,
.kr-team-person h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
}

.kr-team-person p {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
}

.kr-team-page__footer {
  padding: 68px 0 36px;
  background: transparent;
  border-top: 0;
}

.kr-team-page__footer .kr-footer__inner {
  width: min(calc(100% - 176px), var(--kr-team-max));
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 46px;
}

.kr-team-page__footer .kr-footer__brand-logo {
  margin-bottom: 22px;
}

.kr-team-page__footer .kr-footer__brand-logo img {
  width: 110px;
  height: auto;
}

.kr-team-page__footer .kr-footer__brand-logo img + .kr-footer__brand-name {
  display: none;
}

.kr-team-page__footer .kr-footer__tagline {
  margin-bottom: 28px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
}

.kr-team-page__social {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kr-team-page__social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.kr-team-page__social img {
  display: block;
  max-width: 42px;
  max-height: 42px;
}

.kr-team-page__footer .kr-footer__links {
  gap: 24px;
  padding-top: 4px;
}

.kr-team-page__footer .kr-footer__links a {
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 900;
}

.kr-team-page__footer .kr-footer__copy {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .kr-team-page__nav,
  .kr-team-page__section,
  .kr-team-page__footer .kr-footer__inner {
    width: calc(100% - 56px);
  }

  .kr-team-page__nav .kr-nav__links {
    gap: 40px;
  }

  .kr-team-page__section {
    grid-template-columns: 300px 1fr;
    gap: 42px;
  }

  .kr-team-page__members--one,
  .kr-team-page__members--two {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .kr-team-page {
    padding-top: 18px;
  }

  .kr-team-page__nav {
    min-height: 76px;
    padding: 14px 16px;
    border-radius: 38px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .kr-team-page__nav .kr-nav__logo-img {
    width: 86px;
  }

  .kr-team-page__nav .kr-nav__links {
    position: static;
    order: 2;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 22px;
    transform: none;
  }

  .kr-team-page__nav .kr-nav__links a {
    font-size: 0.92rem;
  }

  .kr-team-page__nav .kr-nav__cta {
    padding: 11px 15px;
    font-size: 0.82rem;
  }

  .kr-team-page__section {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: left;
  }

  .kr-team-page__section--founders,
  .kr-team-page__section--designer,
  .kr-team-page__section--storytellers {
    padding-top: 72px;
  }

  .kr-team-page__copy p {
    max-width: 520px;
  }

  .kr-team-page__members--three,
  .kr-team-page__members--two {
    grid-template-columns: 1fr 1fr;
    gap: 46px 28px;
    max-width: none;
  }

  .kr-team-page__members--three .kr-team-person:last-child {
    grid-column: 1 / -1;
  }

  .kr-team-page__members--one {
    max-width: none;
  }

  .kr-team-person h2,
  .kr-team-person h3 {
    white-space: normal;
  }

  .kr-team-page__footer .kr-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .kr-team-page__nav,
  .kr-team-page__section,
  .kr-team-page__footer .kr-footer__inner {
    width: calc(100% - 28px);
  }

  .kr-team-page__members--three,
  .kr-team-page__members--two {
    grid-template-columns: 1fr;
  }

  .kr-team-page__members--three .kr-team-person:last-child {
    grid-column: auto;
  }

  .kr-team-page__copy h1,
  .kr-team-page__copy h2 {
    font-size: 2.25rem;
  }

  .kr-team-page__copy p,
  .kr-team-person p {
    font-size: 1.08rem;
  }

  .kr-team-person > img,
  .kr-team-person__photo {
    width: 166px;
    margin-bottom: 18px;
  }
}

/* ============================================================
   CONTACT DESIGN REFERENCE PAGE
   ============================================================ */
.kr-contact-page {
  --kr-contact-purple: #320164;
  --kr-contact-panel: #5c2a91;
  --kr-contact-orange: #e87938;
  --kr-contact-yellow: #fff36a;
  --kr-contact-max: 1352px;
  min-height: 100vh;
  padding-top: 46px;
  background:
    radial-gradient(circle at 63% 31%, rgba(125, 82, 189, 0.72) 0 15%, rgba(125, 82, 189, 0.24) 27%, transparent 42%),
    radial-gradient(circle at 39% 46%, rgba(244, 35, 107, 0.8) 0 10%, rgba(244, 35, 107, 0.38) 21%, transparent 38%),
    radial-gradient(circle at 51% 47%, rgba(219, 139, 113, 0.58) 0 12%, transparent 36%),
    linear-gradient(180deg, #330068 0%, #25065d 38%, #17105a 100%);
  color: #fff;
  overflow: hidden;
}

.kr-contact-page__nav {
  position: relative;
  inset: auto;
  z-index: 20;
  width: min(calc(100% - 176px), 1320px);
  min-height: 122px;
  margin: 0 auto;
  padding: 24px 46px;
  border: 0;
  border-radius: 62px;
  background: rgba(91, 43, 139, 0.92);
  box-shadow: none;
}

.kr-contact-page__nav .kr-nav__logo-img {
  width: 108px;
  height: auto;
}

.kr-contact-page__nav .kr-nav__logo-img + .kr-nav__logo-text {
  display: none;
}

.kr-contact-page__nav .kr-nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 78px;
}

.kr-contact-page__nav .kr-nav__links a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.kr-contact-page__nav .kr-nav__links a.active,
.kr-contact-page__footer .kr-footer__links a.active {
  color: var(--kr-contact-yellow) !important;
  text-decoration: underline wavy var(--kr-contact-yellow) 1px;
  text-underline-offset: 8px;
}

.kr-contact-page__nav .kr-nav__cta {
  padding: 16px 28px;
  background: var(--kr-contact-orange);
  border-radius: 28px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.14);
  font-size: 1rem;
  font-weight: 800;
}

.kr-contact-page__body {
  width: min(calc(100% - 176px), var(--kr-contact-max));
  margin: 0 auto;
  padding: 102px 0 142px;
  display: block;
}

.kr-contact-page__info {
  padding-top: 20px;
  width: min(705px, 100%);
}

.kr-contact-page__info h1 {
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(2.6rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.kr-contact-page__intro {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 1.85vw, 1.68rem);
  font-weight: 500;
  line-height: 1.18;
}

.kr-contact-page__details {
  display: grid;
  gap: 28px;
  margin-top: 66px;
}

.kr-contact-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  color: #fff !important;
}

.kr-contact-detail__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 20px;
  color: #fff;
}

.kr-contact-detail__icon svg {
  width: 38px;
  height: 38px;
}

.kr-contact-detail__label,
.kr-contact-detail__value {
  display: block;
}

.kr-contact-detail__label {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}

.kr-contact-detail__value {
  color: #fff;
  font-size: clamp(1.35rem, 1.95vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
}

.kr-contact-page__form {
  display: grid;
  gap: 18px;
  padding: 34px 40px 56px;
  border-radius: 24px;
  background: rgba(74, 28, 135, 0.72);
  box-shadow: none;
}

.kr-contact-page__form h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.kr-contact-page__form label {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1;
}

.kr-contact-page__notice {
  margin: 0 0 4px;
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.kr-contact-page__notice--success {
  background: rgba(72, 187, 120, 0.18);
  color: #d9ffe7;
  border: 1px solid rgba(72, 187, 120, 0.55);
}

.kr-contact-page__notice--error {
  background: rgba(248, 113, 113, 0.18);
  color: #ffe0e0;
  border: 1px solid rgba(248, 113, 113, 0.55);
}

.kr-contact-page__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.kr-contact-page__form input,
.kr-contact-page__form textarea {
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: #fff;
  color: #121212 !important;
  -webkit-text-fill-color: #121212;
  caret-color: #121212;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 800;
  outline: none;
}

.kr-contact-page__form input:focus,
.kr-contact-page__form textarea:focus {
  color: #121212 !important;
  -webkit-text-fill-color: #121212;
}

.kr-contact-page__form input {
  height: 43px;
  padding: 0 17px;
}

.kr-contact-page__form textarea {
  min-height: 141px;
  resize: vertical;
  padding: 16px 17px;
}

.kr-contact-page__form input::placeholder,
.kr-contact-page__form textarea::placeholder {
  color: #111;
  opacity: 1;
}

.kr-contact-page__form button {
  justify-self: end;
  min-width: 128px;
  height: 40px;
  margin-top: 12px;
  border: 0;
  border-radius: 22px;
  background: var(--kr-contact-orange);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.13);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.kr-contact-page__footer {
  padding: 0 0 36px;
  background: transparent;
  border-top: 0;
}

.kr-contact-page__footer .kr-footer__inner {
  width: min(calc(100% - 176px), var(--kr-contact-max));
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 46px;
}

.kr-contact-page__footer .kr-footer__brand-logo {
  margin-bottom: 22px;
}

.kr-contact-page__footer .kr-footer__brand-logo img {
  width: 110px;
  height: auto;
}

.kr-contact-page__footer .kr-footer__brand-logo img + .kr-footer__brand-name {
  display: none;
}

.kr-contact-page__footer .kr-footer__tagline {
  margin-bottom: 28px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
}

.kr-contact-page__social {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kr-contact-page__social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.kr-contact-page__social img {
  display: block;
  max-width: 42px;
  max-height: 42px;
}

.kr-contact-page__footer .kr-footer__links {
  gap: 24px;
  padding-top: 4px;
}

.kr-contact-page__footer .kr-footer__links a {
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 900;
}

.kr-contact-page__footer .kr-footer__copy {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .kr-contact-page__nav,
  .kr-contact-page__body,
  .kr-contact-page__footer .kr-footer__inner {
    width: calc(100% - 56px);
  }

  .kr-contact-page__nav .kr-nav__links {
    gap: 40px;
  }

  .kr-contact-page__info {
    width: min(705px, 100%);
  }
}

@media (max-width: 860px) {
  .kr-contact-page {
    padding-top: 18px;
  }

  .kr-contact-page__nav {
    min-height: 76px;
    padding: 14px 16px;
    border-radius: 38px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .kr-contact-page__nav .kr-nav__logo-img {
    width: 86px;
  }

  .kr-contact-page__nav .kr-nav__links {
    position: static;
    order: 2;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 22px;
    transform: none;
  }

  .kr-contact-page__nav .kr-nav__links a {
    font-size: 0.92rem;
  }

  .kr-contact-page__nav .kr-nav__cta {
    padding: 11px 15px;
    font-size: 0.82rem;
  }

  .kr-contact-page__body {
    padding: 70px 0 92px;
  }

  .kr-contact-page__info {
    padding-top: 0;
  }

  .kr-contact-page__details {
    margin-top: 42px;
  }

  .kr-contact-page__footer .kr-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .kr-contact-page__nav,
  .kr-contact-page__body,
  .kr-contact-page__footer .kr-footer__inner {
    width: calc(100% - 28px);
  }

  .kr-contact-page__form {
    padding: 28px 20px 34px;
  }

  .kr-contact-detail {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .kr-contact-detail__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .kr-contact-detail__icon svg {
    width: 31px;
    height: 31px;
  }

  .kr-contact-detail__value {
    font-size: 1.18rem;
    overflow-wrap: anywhere;
  }
}
