/* ===================================================================
   SAHAYII — fully responsive rebuild
   Mobile-first. Container caps at 1280px. Hero & sections scale gracefully.
   =================================================================== */

:root {
  --purple: #715ADF;
  --purple-deep: #5A47C4;
  --purple-light: #E5C9F2;
  --purple-soft:  #D9D0FF;
  --purple-accent-soft: #9B89E8; /* lavender for italic accent words */
  --purple-bg:    #FBF4FF;
  --purple-bg-2:  #FDF9FF;
  --purple-bg-3:  #FEFDFB;
  --purple-bg-4:  #F7E7FF;
  --purple-bg-5:  #F6E4FF;

  --ink:       #06063C;
  --ink-warm:  #21201E;
  --ink-mid:   #1A1A1A;
  --ink-muted: #4A4A6A;

  --white: #ffffff;

  --font-serif: "Fraunces", ui-serif, "New York", "Times New Roman", serif;
  --font-sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
                system-ui, sans-serif;

  /* Fluid type ramp — clamps min to max across viewport */
  --fs-h1:   clamp(2rem,   2.2vw + 1.4rem, 3.125rem);   /* 32 → 50 */
  --fs-h2:   clamp(1.75rem, 1.8vw + 1.2rem, 3.125rem);  /* 28 → 50 */
  --fs-h3:   clamp(1.25rem, 0.6vw + 1rem,   1.875rem);  /* 20 → 30 */
  --fs-h4:   clamp(1.125rem, 0.4vw + 1rem,  1.5rem);    /* 18 → 24 */
  --fs-body: clamp(1rem, 0.25vw + 0.9rem,   1.25rem);   /* 16 → 20 */
  --fs-sub:  clamp(0.95rem, 0.2vw + 0.85rem, 1.125rem); /* 15 → 18 */

  --radius-lg: 20px;
  --radius-md: 15px;
  --radius-sm: 10px;
  --radius-pill: 100px;

  --shadow-md: 0 12px 30px rgba(113, 90, 223, .12);
  --shadow-lg: 0 24px 60px rgba(113, 90, 223, .22);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ───────── Reset ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
section[id],
footer[id] {
  scroll-margin-top: 96px;
}
body {
  margin: 0;
  background: var(--purple-bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
/* Hide alt text / broken icon if an image fails to load before onerror fires */
img:not([alt]),
img[alt=""] { color: transparent; font-size: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, p { margin: 0; }

/* ───────── Layout helpers ───────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--purple);
}
.serif-accent-soft {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--purple-accent-soft);
}
.serif-accent-light {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--purple-light);
}
/* White italic accent — for use inside purple band headings */
.serif-accent-on-purple {
  font-family: var(--font-serif);
  font-style: italic;
  color: #fff;
  opacity: 0.92;
}
.section-head h2.on-purple,
.section-head h2 .on-purple,
h2.on-purple { color: #fff; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  color: var(--ink-warm);
}
.section-head .sub {
  margin-top: 16px;
  font-size: var(--fs-body);
  color: var(--ink);
  max-width: 760px;
}
.section-head.center .sub { margin-left: auto; margin-right: auto; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 0.2vw + 0.9rem, 1.125rem);
  line-height: 1.15;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
  transition: transform .18s var(--ease), filter .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  user-select: none;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 22px rgba(113, 90, 223, .35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(113, 90, 223, .45); }
.btn-secondary {
  background: var(--purple-bg-4);
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline-w {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-w:hover { background: rgba(255,255,255,.12); }
.btn-sm { min-height: 44px; padding: 10px 20px; font-size: 0.95rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===================================================================
   NAV
   =================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 255, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(113, 90, 223, .08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
}
.brand .brand-text {
  display: none;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--purple);
  letter-spacing: 0.04em;
}
/* If logo image fails, show the text fallback in its place */
.brand.brand-fallback {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  align-items: center;
  justify-content: center;
}
.brand.brand-fallback .brand-text {
  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.site-nav .links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}
.site-nav .links a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: var(--purple);
  padding: 6px 2px;
  transition: color .15s var(--ease);
}
.site-nav .links a:hover { color: var(--purple-deep); }
.site-nav .links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: var(--purple);
}
.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav .links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--purple-bg);
    border-bottom: 1px solid rgba(113, 90, 223, .12);
    padding: 16px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .site-nav .links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(113, 90, 223, .08);
    font-size: 1.05rem;
  }
  .site-nav .links a.active::after { display: none; }
  body.nav-open .site-nav .links {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-cta { display: none; }
}

/* ===================================================================
   HERO — two columns: copy + CTAs left, couple right, waves under CTAs
   =================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px) 0 clamp(120px, 16vw, 200px);
  background:
    radial-gradient(ellipse 70% 55% at 18% 12%,
      rgba(229, 201, 242, .55) 0%,
      rgba(113, 90, 223, .08) 42%,
      transparent 72%),
    var(--purple-bg);
  text-align: left;
}

/* Waves — overlays the couple; sits under headline & CTAs */
.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(220px, 28vw, 380px);
  z-index: 4;
  pointer-events: none;
}
.hero-waves img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% 125%;
  mix-blend-mode: screen;
  opacity: 0.92;
}
.hero-waves::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    var(--purple-bg) 0%,
    rgba(251, 244, 255, 0) 14%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  display: block;
  min-height: clamp(420px, 48vw, 620px);
}

.hero-text {
  position: relative;
  z-index: 5;
  max-width: 640px;
  padding-bottom: clamp(72px, 12vw, 140px);
}
.hero h1 {
  font-size: clamp(2.25rem, 3.2vw + 1.4rem, 3rem);
  line-height: 1.12;
  color: var(--ink-warm);
  letter-spacing: -0.015em;
}
.hero .lede {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-muted);
}
.hero .cta-row {
  margin-top: 34px;
  justify-content: flex-start;
}

/* Couple image — large, top-right; waves layer above this */
.hero-visual {
  position: absolute;
  right: 0px;
  top: -40px;
  z-index: 2;
  width: clamp(420px, 62vw, 780px);
  max-width: 72%;
  height: clamp(460px, 54vw, 700px);
  margin: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  top: 42%;
  right: 4%;
  transform: translateY(-50%);
  width: 95%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 42%,
    rgba(113, 90, 223, .52) 0%,
    rgba(155, 137, 232, .34) 36%,
    rgba(229, 201, 242, .18) 56%,
    transparent 72%);
  filter: blur(24px);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.hero-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right top;
  mix-blend-mode: screen;
}

/* Tablet & mobile — copy, then image, then CTAs */
@media (max-width: 900px) {
  .hero {
    padding-bottom: clamp(48px, 8vw, 72px);
    text-align: center;
  }
  .hero-waves {
    display: none;
  }
  .hero-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vw, 32px);
  }
  .hero-text {
    display: contents;
  }
  .hero h1 {
    order: 1;
    width: 100%;
  }
  .hero .lede {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    order: 3;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0 auto;
    pointer-events: auto;
  }
  .hero-blob {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
    height: 85%;
  }
  .hero-image {
    position: relative;
    inset: auto;
    justify-content: center;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    max-height: clamp(420px, 78vw, 560px);
    object-position: center top;
  }
  .hero .cta-row {
    order: 4;
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }
  .hero h1 br { display: none; }
}

/* Mobile */
@media (max-width: 540px) {
  .hero-visual {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .hero-image img {
    max-height: clamp(440px, 92vw, 600px);
  }
  .hero .cta-row { width: 100%; }
  .hero .cta-row .btn { flex: 1 1 100%; }
}

/* ===================================================================
   LONELINESS
   =================================================================== */
.loneliness {
  padding: clamp(50px, 6vw, 90px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden; /* keep extended pills from causing horizontal scroll */
}
.lone-grid {
  position: relative;
  margin-top: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 1.05fr);
  column-gap: 0;
  align-items: center;
}

.lone-pills {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 28px);
  margin-right: clamp(-180px, -14vw, -80px);
  position: relative;
  z-index: 1;
}
.lone-pill {
  height: 78px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(229, 201, 242, .55) 0%, rgba(229, 201, 242, .15) 100%);
  display: flex;
  align-items: center;
  padding: 0 36px;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--ink);
  transition: background .2s var(--ease), transform .2s var(--ease);
  width: 100%;
}
.lone-pill:hover {
  background: linear-gradient(90deg, rgba(229, 201, 242, .75) 0%, rgba(229, 201, 242, .3) 100%);
}
.lone-pill.highlighted {
  background: linear-gradient(90deg, rgba(217, 208, 255, .85) 0%, rgba(229, 201, 242, .35) 100%);
  width: 115%;
  z-index: 1;
}

.lone-image {
  aspect-ratio: 1/1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  background: radial-gradient(circle at 50% 50%, rgba(229,201,242,.45) 0%, transparent 70%);
}
.lone-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 100%);
          mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 100%);
}
.lone-image.img-fallback {
  background:
    radial-gradient(circle at 30% 30%, rgba(229,201,242,.7) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(113,90,223,.4) 0%, transparent 60%),
    var(--purple-bg);
}

.lone-notes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 80px);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--ink);
  min-height: 380px;
  padding: 20px 0;
  margin-left: clamp(-60px, -4vw, -20px);
  position: relative;
  z-index: 2;
}
.note { line-height: 1.45; }
.note-accent {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(1.75rem, 1.8vw + 1rem, 2.625rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.lone-connector {
  position: absolute;
  left: 58%;
  right: 0;
  top: 50%;
  height: 1px;
  border-top: 1px dashed rgba(113, 90, 223, .35);
  z-index: 0;
  pointer-events: none;
}
.lone-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(113, 90, 223, .45);
}

@media (max-width: 1100px) {
  .lone-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
  .lone-pills { margin-right: clamp(-100px, -8vw, -40px); }
  .lone-pill.highlighted { width: 110%; }
  .lone-notes { margin-left: clamp(-40px, -3vw, -10px); }
  .lone-connector { left: 60%; }
}

@media (max-width: 900px) {
  .lone-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lone-pills {
    margin-right: 0;
  }
  .lone-pill,
  .lone-pill.highlighted { width: 100%; }
  .lone-notes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
    text-align: center;
    min-height: 0;
    margin-left: 0;
  }
  .lone-notes .note { flex: 1 1 240px; }
  .lone-image { max-width: 360px; }
  .lone-connector { display: none; }
}
@media (max-width: 540px) {
  .lone-pill { height: 68px; padding: 0 24px; font-size: 0.95rem; }
}

/* ===================================================================
   PRESENCE
   =================================================================== */
.presence {
  position: relative;
  padding: clamp(70px, 8vw, 120px) 0 clamp(70px, 8vw, 120px);
  background: #EFE4F8;
}
.feature-row {
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  justify-content: center;
}
.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--ink);
}
.feat-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #DBC9F5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  box-shadow: 0 4px 14px rgba(113, 90, 223, .18);
}
.feat-icon svg { width: 28px; height: 28px; }

.product-card {
  margin: clamp(56px, 7vw, 90px) auto 0;
  max-width: 1100px;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
}
.product-card-inner {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-inner img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.product-card-inner.img-fallback {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(229,201,242,.45), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(113,90,223,.15), transparent 60%),
    rgba(255, 255, 255, .35);
  border-radius: var(--radius-md);
}
.product-card-inner.img-fallback::after {
  content: "Product preview";
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(113, 90, 223, .55);
}

.over-time {
  margin: clamp(56px, 7vw, 90px) auto 0;
  max-width: 800px;
  text-align: center;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
}

/* ===================================================================
   SMALL MOMENTS
   =================================================================== */
.small-moments {
  position: relative;
  padding: clamp(50px, 6vw, 90px) 0;
  overflow: hidden;
}
.small-moments::before {
  content: "";
  position: absolute;
  left: -10%; right: -10%;
  top: 55%;
  height: 90px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-light) 100%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  z-index: 0;
  transform: rotate(-1.5deg);
}
.chat-grid {
  position: relative;
  z-index: 1;
  margin: clamp(40px, 5vw, 60px) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.chat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 22px 64px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 8px 24px rgba(113, 90, 223, .12);
  border: 1px solid rgba(113, 90, 223, .12);
  min-height: 230px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.chat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.chat-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  flex-shrink: 0;
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.chat-msg {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}
.chat-tag {
  position: absolute;
  left: 22px; bottom: 20px;
  font-size: 0.85rem;
  color: var(--purple);
  font-style: italic;
}
.tail-line {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
  font-size: var(--fs-body);
  color: var(--purple-deep);
}

/* ===================================================================
   DESIGNED WITH CARE
   =================================================================== */
.designed {
  padding: clamp(60px, 7vw, 110px) 0;
  background:
    radial-gradient(ellipse 70% 90% at 0% 50%, rgba(229,201,242,.45) 0%, transparent 55%),
    var(--purple-bg);
}

.designed > .container > .section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.designed > .container > .section-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  color: var(--ink-warm);
}

.designed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.designed-phones {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  margin: 0 auto;
}
.phone {
  position: absolute;
  width: 44%;
  height: calc(44% * (754 / 340));
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: block;
}
.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(113, 90, 223, .25));
}
.phone-back  { left: 2%;  top: 0;    transform: rotate(-6deg); z-index: 1; }
.phone-front { right: 2%; bottom: 0; transform: rotate(4deg);  z-index: 2; }

.designed-content {
  text-align: left;
}

.feature-list {
  display: flex;
  flex-direction: column;
}
.feature-list li {
  padding: clamp(18px, 2vw, 26px) 0;
  border-bottom: 1px solid rgba(113, 90, 223, .2);
}
.feature-list li:first-child { padding-top: 0; }
.feature-list li:last-child  { border-bottom: 0; padding-bottom: 0; }
.feature-list h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-h3);
  color: var(--purple);
  margin-bottom: 6px;
}
.feature-list p {
  font-size: var(--fs-body);
  color: var(--ink);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .designed-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .designed-content { text-align: left; }
}

/* ===================================================================
   DIFFERENCE (purple band)
   =================================================================== */
.difference {
  margin: clamp(20px, 3vw, 40px) clamp(0px, 2vw, 24px);
  padding: clamp(70px, 8vw, 120px) 0 clamp(80px, 9vw, 140px);
  border-radius: clamp(20px, 2vw, 32px);
  background: linear-gradient(180deg, var(--purple) 0%, #9080E8 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.difference .section-head h2 {
  color: #fff;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.difference .section-head h2 .serif-accent-light,
.difference .section-head h2 .serif-accent-soft,
.difference .section-head h2 .serif-accent {
  color: #fff;
  font-style: italic;
  font-family: var(--font-serif);
  opacity: 0.92;
}

.diff-grid {
  margin: clamp(56px, 7vw, 90px) auto 0;
  display: grid;
  grid-template-columns: 1fr clamp(200px, 22vw, 280px) 1fr;
  gap: 0;
  max-width: 1100px;
  padding: 0 clamp(20px, 4vw, 60px);
  align-items: center;
}

.diff-phone {
  width: 100%;
  aspect-ratio: 340 / 754;
  z-index: 3;
  position: relative;
  margin: -60px 0;
}
.diff-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .45));
}

.diff-card {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 28px);
  display: flex;
  align-items: center;
  align-self: stretch;
  position: relative;
  z-index: 1;
}
.diff-card > .diff-list { width: 100%; }

.diff-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 18px);
}
.diff-list li {
  height: 54px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 0.4vw + 0.8rem, 1.05rem);
  text-align: center;
  padding: 0 12px;
}
.diff-list-left li {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}
.diff-list-right li {
  background: var(--purple);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 4px 14px rgba(90, 71, 196, .35);
}

@media (max-width: 700px) {
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .diff-phone { width: 160px; margin: 0 auto; }
  .diff-list li { height: 52px; }
}

/* ===================================================================
   WHY SAHAYII WAS CREATED
   =================================================================== */
.why-created {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 0;
  overflow: hidden;
}

.why-created::before,
.why-created::after {
  content: "";
  position: absolute;
  width: clamp(200px, 25vw, 380px);
  height: clamp(300px, 40vw, 560px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  opacity: .18;
  filter: blur(1px);
  z-index: 0;
  pointer-events: none;
}
.why-created::before {
  left: -clamp(100px, 12vw, 180px);
  top: 50%;
  transform: translateY(-50%);
}
.why-created::after {
  right: -clamp(100px, 12vw, 180px);
  top: 50%;
  transform: translateY(-50%);
}
.why-created .container { position: relative; z-index: 1; }

.why-card {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(113, 90, 223, .12);
  border-radius: var(--radius-md);
  padding: 0;
  align-items: stretch;
  box-shadow: 0 8px 32px rgba(113, 90, 223, .10);
  overflow: hidden;
}

.why-photo {
  border-radius: 0;
  overflow: hidden;
  height: clamp(340px, 38vw, 500px);
  min-height: unset;
  background: linear-gradient(135deg, rgba(90, 71, 196, .8) 0%, rgba(229, 201, 242, .6) 100%);
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.why-photo.img-fallback {
  display: flex; align-items: center; justify-content: center;
}
.why-photo.img-fallback::after {
  content: "";
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  box-shadow: 0 0 40px rgba(255,255,255,.4);
}

.why-text {
  background: #fff;
  border-radius: 0;
  padding: clamp(28px, 3.5vw, 48px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-text p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}
.why-text p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .why-card { grid-template-columns: 1fr; }
  .why-photo { height: 260px; }
}

/* ===================================================================
   CARE TRUST FEEL SAFE
   =================================================================== */
.care-safe { padding: clamp(50px, 6vw, 90px) 0; }
.care-safe-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.care-safe-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  color: var(--ink);
}
.care-safe-head .sub {
  margin-top: 16px;
  font-size: var(--fs-body);
  color: var(--ink);
  max-width: 420px;
}
.care-safe-cta { align-self: flex-start; margin-top: 8px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--purple-soft), var(--purple-soft)) 25% 0 / 1px 100% no-repeat,
    linear-gradient(var(--purple-soft), var(--purple-soft)) 50% 0 / 1px 100% no-repeat,
    linear-gradient(var(--purple-soft), var(--purple-soft)) 75% 0 / 1px 100% no-repeat;
  opacity: .5;
  pointer-events: none;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 clamp(20px, 2.5vw, 40px);
  padding-top: 0;
}
.pillar:nth-child(2),
.pillar:nth-child(4) {
  padding-top: clamp(80px, 10vw, 140px);
}

.pillar-num {
  font-size: clamp(2.5rem, 2.5vw + 1.5rem, 3.5rem);
  line-height: 1;
  color: var(--purple);
  letter-spacing: -0.02em;
  margin-bottom: clamp(24px, 3vw, 40px);
  font-family: var(--font-serif);
}

.pillar-icon {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pillar-icon svg { width: auto; height: 100%; max-width: 100%; }

.pillar-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-h4);
  line-height: 1.3;
  color: var(--ink);
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars::before {
    background:
      linear-gradient(var(--purple-soft), var(--purple-soft)) 50% 0 / 1px 100% no-repeat;
  }
  .pillar:nth-child(2),
  .pillar:nth-child(4) { padding-top: 0; }
  .pillar:nth-child(3),
  .pillar:nth-child(4) { padding-top: clamp(32px, 4vw, 48px); }
  .care-safe-cta { width: 100%; max-width: 320px; }
}
@media (max-width: 500px) {
  .pillars { grid-template-columns: 1fr; }
  .pillars::before { display: none; }
  .pillar:nth-child(n) { padding-top: 0; padding-bottom: 32px; border-bottom: 1px solid rgba(113,90,223,.15); }
}

/* ===================================================================
   FOR THOSE WHO CARE
   =================================================================== */
.for-care {
  position: relative;
  padding: clamp(60px, 7vw, 100px) 0;
  overflow: hidden;
}

.for-care-blob {
  position: absolute;
  width: clamp(120px, 14vw, 200px);
  height: clamp(240px, 28vw, 400px);
  background: var(--purple);
  opacity: .85;
  z-index: 0;
}
.for-care-blob.blob-left {
  left: 0;
  bottom: 8%;
  border-radius: 0 300px 300px 0;
}
.for-care-blob.blob-right {
  right: 0;
  top: 10%;
  border-radius: 300px 0 0 300px;
}

.for-care .container { position: relative; z-index: 1; }

.for-care .section-head h2 {
  color: var(--ink-warm);
}
.for-care .section-head h2 .serif-accent {
  color: var(--ink-warm);
  font-style: normal;
  font-family: var(--font-serif);
}

.for-care-grid {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(20px, 2.5vw, 32px);
}

.care-photo-elder {
  grid-column: 1;
  grid-row: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(90,71,196,.3) 0%, rgba(229,201,242,.5) 100%);
}
.care-card-elder {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.care-card-families {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}
.care-photo-families {
  grid-column: 2;
  grid-row: 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(90,71,196,.3) 0%, rgba(229,201,242,.5) 100%);
}

.care-photo-elder img,
.care-photo-families img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.care-info-card {
  background: #fff;
  border: 1.5px solid rgba(113, 90, 223, .18);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 48px);
  box-shadow: 0 4px 24px rgba(113, 90, 223, .08);
}
.care-info-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-h3);
  color: var(--purple);
  margin-bottom: 14px;
}
.care-info-card p {
  font-size: var(--fs-body);
  color: var(--ink);
  line-height: 1.7;
}

.care-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(90, 71, 196, .35) 0%, rgba(229, 201, 242, .55) 100%);
}
.care-photo img { width: 100%; height: 100%; object-fit: cover; }
.care-info-inner {
  background: #fff;
  border: 1.5px solid rgba(113, 90, 223, .18);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 48px);
  box-shadow: 0 4px 24px rgba(113, 90, 223, .08);
}
.care-info h3, .care-info-inner h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-h3);
  color: var(--purple);
  margin-bottom: 14px;
}
.care-info p, .care-info-inner p {
  font-size: var(--fs-body);
  color: var(--ink);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .for-care-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .care-photo-elder  { grid-column: 1; grid-row: 1; }
  .care-card-elder   { grid-column: 1; grid-row: 2; }
  .care-card-families{ grid-column: 1; grid-row: 3; }
  .care-photo-families { grid-column: 1; grid-row: 4; }
  .for-care-blob { display: none; }
}

/* ===================================================================
   EARLY VOICES
   =================================================================== */
.early {
  padding: clamp(50px, 6vw, 90px) 0;
  overflow: hidden;
}
.early-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 50px);
}
.early-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  color: var(--ink);
}
.early-head .sub {
  margin-top: 10px;
  font-size: var(--fs-body);
  color: var(--ink);
}
.early-ctas { flex-shrink: 0; }

.testimonials {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 20px;
  margin: 0 -6px;
  scrollbar-width: thin;
  scrollbar-color: var(--purple-soft) transparent;
}
.testimonials::-webkit-scrollbar { height: 6px; }
.testimonials::-webkit-scrollbar-thumb { background: var(--purple-soft); border-radius: 3px; }

.testimonial-card {
  flex: 0 0 clamp(280px, 28vw, 360px);
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(229, 201, 242, .35) 0%, rgba(113, 90, 223, .15) 100%);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 10px;
  transition: transform .25s var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-inner {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  position: relative;
  height: 100%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}
.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-head .goog { width: 28px; height: 28px; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; }
.testimonial-body {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.testimonial-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.testimonial-name {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-mid);
}
.testimonial-ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.testimonial-ava img { width: 100%; height: 100%; object-fit: cover; }

.arrows {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}
.arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--purple-soft);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.arrow:hover { background: rgb(195, 184, 255); transform: translateY(-1px); }
.arrow svg { width: 9px; height: 14px; }

/* ===================================================================
   DIFFERENT (purple band 2)
   =================================================================== */
.different {
  position: relative;
  margin: clamp(20px, 3vw, 40px) clamp(0px, 2vw, 24px);
  padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 8vw, 120px);
  border-radius: clamp(20px, 2vw, 32px);
  background: linear-gradient(180deg, var(--purple) 0%, #9080E8 100%);
  overflow: hidden;
}

.chips {
  margin: clamp(28px, 3vw, 40px) auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.chip {
  border-radius: var(--radius-pill);
  text-align: center;
  padding: 18px 24px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.15rem);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.chip:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); }

.different-stage {
  margin: clamp(40px, 5vw, 60px) auto 0;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mini-phone {
  width: clamp(140px, 16vw, 200px);
  aspect-ratio: 340 / 754;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 38px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
}

.not-list {
  margin-top: -56px;
  width: min(100%, 920px);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}
.not-pill {
  background: var(--white);
  border-radius: var(--radius-pill);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.95rem, 0.3vw + 0.85rem, 1.1rem);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* ===================================================================
   SIMPLE GENTLE EFFORTLESS
   =================================================================== */
.simple {
  padding: clamp(60px, 7vw, 100px) 0 clamp(50px, 6vw, 90px);
  text-align: center;
}
.steps {
  margin: clamp(50px, 6vw, 80px) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(40px, 5vw, 80px);
  max-width: 1100px;
  justify-items: center;
}
.step {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--purple-bg-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-badge {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  box-shadow: 0 10px 22px rgba(113, 90, 223, .4);
}
.step-label {
  font-size: var(--fs-h4);
  line-height: 1.3;
  text-align: center;
  color: var(--ink);
}
.simple-tag {
  margin-top: clamp(40px, 5vw, 60px);
  font-size: var(--fs-body);
  color: var(--purple);
  font-style: italic;
}

/* ===================================================================
   CARE SHOULD NOT WAIT
   =================================================================== */
.care-wait {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.care-wait-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, #2a1810 0%, #4a3020 50%, #2a1810 100%);
}
.care-wait-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.care-wait-bg.bg-fallback {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(180, 140, 100, .6), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(90, 60, 40, .8), transparent 60%),
    linear-gradient(135deg, #2a1810 0%, #4a3020 100%);
}
.care-wait-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 100%);
}
.care-wait-inner {
  position: relative;
  z-index: 2;
}
.care-wait h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  color: #fff;
}
.care-wait p {
  margin: 20px auto 32px;
  max-width: 620px;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: #fff;
  opacity: .95;
}
.care-wait .cta-row {
  justify-content: center;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--purple-bg);
  padding-top: clamp(40px, 5vw, 70px);
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(113, 90, 223, .25);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 80px; height: 80px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
}
.footer-brand.brand-fallback {
  width: 80px; height: 80px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  align-items: center;
  justify-content: center;
}
.footer-brand.brand-fallback .brand-text {
  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.footer-brand .brand-text { display: none; }

.footer-social {
  display: flex;
  gap: 18px;
  justify-self: start;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--purple);
  transition: color .15s var(--ease), transform .15s var(--ease);
}
.footer-social a:hover { color: var(--purple-deep); transform: translateY(-2px); }
.footer-social svg { width: 24px; height: 24px; }

.footer-contact {
  text-align: right;
  justify-self: end;
}
.footer-contact-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.footer-contact-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}
.footer-contact-row + .footer-contact-row { margin-left: 0; }
.footer-contact-row { display: flex; justify-content: flex-end; }
.contact-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 12px; height: 12px; }

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0 36px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 1rem;
  color: var(--purple);
  position: relative;
  padding: 4px 0;
  transition: color .15s var(--ease);
}
.footer-links a:hover { color: var(--purple-deep); }
.footer-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--purple);
}

.footer-billboard {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0;
}
.footer-billboard-word {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(4rem, 18vw, 17rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--purple);
  opacity: .92;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .footer-brand { grid-column: 1 / 2; grid-row: 1; }
  .footer-social { grid-column: 2 / 3; grid-row: 1; justify-self: end; }
  .footer-contact { grid-column: 1 / -1; grid-row: 2; text-align: left; justify-self: start; }
  .footer-contact-row { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .footer-links-row { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 14px; }
}

/* ===================================================================
   UTILITIES — focus / a11y
   =================================================================== */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}