/* ============================================================
   SOMAWA — Landing Page
   Design system: Refined luxury minimalism.
   References: Apple, Dyson, Hermes.
   Author: Somawa Team
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Brand palette — locked */
  --c-ink:        #152a4c;     /* Deep navy, primary brand */
  --c-ink-deep:   #0a1729;     /* Almost-black navy for nav, footer */
  --c-blue:       #3570de;     /* Active/accent blue */
  --c-blue-soft:  #e6efff;     /* Whisper of blue for backgrounds */
  --c-blue-tint:  #f0f5ff;
  --c-black:      #212121;
  --c-black-deep: #000000;

  /* Neutrals */
  --c-bg:         #ffffff;
  --c-bg-soft:    #f5f5f7;
  --c-bg-cream:   #fafaf8;
  --c-line:       #e6e8ec;
  --c-line-soft:  #eef0f3;

  /* Text */
  --c-text:       #1a1d24;
  --c-text-mute:  #5b6477;
  --c-text-dim:   #8a93a3;

  /* States */
  --c-success:    #1b8e3d;
  --c-warn:       #c47d00;
  --c-danger:     #b00020;

  /* Type scale — fluid, modular */
  --fs-display:   clamp(2.4rem, 5.5vw, 4.2rem);
  --fs-h1:        clamp(2rem,   4.5vw, 3.4rem);
  --fs-h2:        clamp(1.7rem, 3.2vw, 2.4rem);
  --fs-h3:        clamp(1.25rem, 1.8vw, 1.5rem);
  --fs-lead:      clamp(1.05rem, 1.5vw, 1.18rem);
  --fs-body:      1rem;
  --fs-small:     0.875rem;
  --fs-micro:     0.78rem;

  /* Spacing scale (8pt base) */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(21,42,76,0.04), 0 1px 1px rgba(21,42,76,0.03);
  --sh-2: 0 4px 12px rgba(21,42,76,0.06), 0 2px 4px rgba(21,42,76,0.04);
  --sh-3: 0 16px 40px rgba(21,42,76,0.10), 0 4px 12px rgba(21,42,76,0.06);
  --sh-4: 0 24px 60px rgba(21,42,76,0.14), 0 8px 20px rgba(21,42,76,0.08);

  /* Motion */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Typography stacks */
  --ff-display: 'Manrope', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --ff-body:    'Inter Tight', 'Helvetica Neue', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============================================================
   ANNOUNCEMENT STRIP
   ============================================================ */
.strip {
  background: var(--c-ink-deep);
  color: #cfd9ec;
  font-size: var(--fs-micro);
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.strip strong { color: #fff; font-weight: 600; }
.strip__pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 0 0 rgba(53,112,222,0.5);
  animation: pulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(53,112,222,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(53,112,222,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,112,222,0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line-soft);
  transition: box-shadow 0.3s var(--e-out), background 0.3s var(--e-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--sh-1);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.nav__logo { flex-shrink: 0; }
.nav__logo-img { height: 32px; width: auto; }
.nav__links {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.nav__links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  transition: color 0.2s var(--e-out);
}
.nav__links a:hover { color: var(--c-blue); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1.5px;
  background: var(--c-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--e-out);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: var(--s-3); }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--c-text);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--e-out);
}
.nav__phone:hover { background: var(--c-bg-soft); color: var(--c-blue); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-small);
  font-weight: 600;
  color: #fff;
  background: var(--c-ink);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--e-out), transform 0.2s var(--e-out);
}
.nav__cta:hover { background: var(--c-blue); transform: translateY(-1px); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__phone span { display: none; }
  .nav__phone { padding: 8px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, #ffffff 0%, var(--c-bg-soft) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.hero__orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--c-blue), transparent 70%);
  top: -120px; right: -160px;
}
.hero__orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #6f9eff, transparent 70%);
  bottom: -100px; left: -120px;
  animation-delay: -6s;
}
@keyframes float {
  0%,100% { transform: translateY(0px) translateX(0px); }
  50%     { transform: translateY(-30px) translateX(20px); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,42,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,42,76,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero__copy { animation: fadeInUp 0.9s var(--e-out) both; animation-delay: 0.05s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: var(--s-5);
  backdrop-filter: blur(8px);
}
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-blue);
  animation: pulse 2.4s ease-out infinite;
}
.hero__h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin: 0 0 var(--s-5);
}
.hero__h1 em {
  font-style: normal;
  color: var(--c-text-mute);
  font-weight: 400;
}
.hero__h1-emph {
  background: linear-gradient(120deg, var(--c-ink) 0%, var(--c-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: var(--fs-lead);
  color: var(--c-text-mute);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 var(--s-6);
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--c-text);
}
.hero__pill svg { color: var(--c-success); flex-shrink: 0; }
.hero__proof {
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  letter-spacing: 0.01em;
}
.hero__proof strong { color: var(--c-ink); font-weight: 700; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__h1 br { display: none; }
  .hero__h1 { line-height: 1.1; }
}

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--sh-3);
  animation: fadeInUp 0.9s var(--e-out) both;
  animation-delay: 0.15s;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--c-blue) 0%, transparent 50%, var(--c-ink) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}
.form-card__badge {
  display: inline-block;
  background: var(--c-blue-soft);
  color: var(--c-blue);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.form-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin: 0 0 8px;
}
.form-card__sub {
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  line-height: 1.55;
  margin: 0 0 var(--s-5);
}

/* form internals */
.form { display: flex; flex-direction: column; gap: var(--s-4); }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.form__label {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.req { color: var(--c-danger); margin-left: 2px; }
.form__input, .form__select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  font-size: 1rem;
  color: var(--c-text);
  transition: border-color 0.2s var(--e-out), box-shadow 0.2s var(--e-out);
}
.form__input::placeholder { color: var(--c-text-dim); }
.form__input:focus, .form__select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(53,112,222,0.12);
}
.form__phone { position: relative; display: flex; align-items: stretch; }
.form__cc {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-right: 0;
  border-radius: var(--r-md) 0 0 var(--r-md);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-text-mute);
}
.form__input--phone { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.form__select-wrap { position: relative; }
.form__select { appearance: none; padding-right: 36px; cursor: pointer; }
.form__chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-mute);
  pointer-events: none;
}
.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 4px;
  background: var(--c-ink);
  color: #fff;
  border: 0;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s var(--e-out), transform 0.15s var(--e-out), box-shadow 0.25s var(--e-out);
  box-shadow: 0 4px 14px rgba(21,42,76,0.18);
}
.form__submit:hover {
  background: var(--c-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(53,112,222,0.32);
}
.form__submit:active { transform: translateY(0); }
.form__submit:disabled {
  background: var(--c-text-dim);
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.form__submit.is-loading .form__submit-text::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -2px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form__legal {
  font-size: var(--fs-micro);
  color: var(--c-text-dim);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Form success */
.form-success {
  text-align: center;
  padding: var(--s-6) 0;
  animation: fadeInUp 0.5s var(--e-out) both;
}
.form-success__icon {
  display: inline-flex;
  width: 72px; height: 72px;
  align-items: center;
  justify-content: center;
  background: rgba(27,142,61,0.1);
  color: var(--c-success);
  border-radius: 50%;
  margin-bottom: var(--s-4);
}
.form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--c-ink);
  margin: 0 0 var(--s-3);
}
.form-success p {
  color: var(--c-text-mute);
  margin: 0 0 var(--s-5);
}
.form-success__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: var(--fs-small);
  transition: transform 0.2s var(--e-out);
}
.form-success__wa:hover { transform: translateY(-2px); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  background: #fff;
  padding: clamp(28px, 4vw, 48px) 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--s-5);
}
.trust__item { text-align: center; }
.trust__num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: 6px;
}
.trust__num span {
  color: var(--c-blue);
  font-size: 0.7em;
  font-weight: 600;
}
.trust__label {
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  letter-spacing: 0.02em;
}
.trust__sep {
  width: 1px;
  height: 32px;
  background: var(--c-line);
}
@media (max-width: 720px) {
  .trust__grid { grid-template-columns: 1fr 1fr; row-gap: var(--s-6); }
  .trust__sep { display: none; }
}

/* ============================================================
   INSIGHT SECTION
   ============================================================ */
.insight {
  padding: clamp(72px, 11vw, 144px) 0;
  background: #fff;
}
.insight__inner {
  max-width: 880px;
  text-align: left;
}
.insight__eyebrow {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--s-5);
  padding-left: 22px;
  position: relative;
}
.insight__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--c-blue);
}
.insight__h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--c-ink);
  margin: 0 0 var(--s-6);
}
.insight__h2 em {
  font-style: italic;
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--c-blue);
}
.insight__h2 .strike {
  position: relative;
  color: var(--c-text-mute);
  font-weight: 500;
}
.insight__h2 .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 56%;
  height: 2px;
  background: var(--c-ink);
  transform: rotate(-2deg);
  transform-origin: center;
}
.insight__lede {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--c-text-mute);
  margin: 0 0 var(--s-5);
}
.insight__lede--strong {
  color: var(--c-ink);
  font-weight: 500;
  padding-left: var(--s-5);
  border-left: 2px solid var(--c-blue);
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-8);
}
.section-head__eyebrow {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--s-3);
}
.section-head__h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--c-ink);
  margin: 0 0 var(--s-4);
}
.section-head__sub {
  font-size: var(--fs-lead);
  color: var(--c-text-mute);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   DIFFERENCE / COMPARISON
   ============================================================ */
.difference {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--c-bg-soft);
}
.compare {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-2);
  border: 1px solid var(--c-line);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body);
}
.compare__table thead {
  background: var(--c-ink);
  color: #fff;
}
.compare__table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
}
.compare__col-label { width: 32%; color: rgba(255,255,255,0.7) !important; font-weight: 500 !important; }
.compare__col-ro { width: 28%; }
.compare__col-somawa {
  width: 40%;
  position: relative;
  background: var(--c-blue);
}
.compare__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: #fff;
  color: var(--c-blue);
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}
.compare__table tbody th {
  background: var(--c-bg-cream);
  color: var(--c-text-mute);
  font-weight: 500;
  border-top: 1px solid var(--c-line);
}
.compare__table tbody td {
  padding: 16px 20px;
  border-top: 1px solid var(--c-line);
  color: var(--c-text);
  font-size: var(--fs-small);
}
.compare__table tbody td:nth-child(3) {
  background: rgba(53,112,222,0.04);
  font-weight: 500;
  color: var(--c-ink);
}
.compare__note {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  font-style: italic;
  margin: var(--s-5) auto 0;
  max-width: 600px;
}
@media (max-width: 700px) {
  .compare__table th, .compare__table td { padding: 12px 14px; font-size: 0.85rem; }
  .compare__tag { display: block; margin: 4px 0 0 0; width: fit-content; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.4s var(--e-out), box-shadow 0.4s var(--e-out), border-color 0.3s var(--e-out);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: var(--c-blue);
}
.product--featured {
  border-color: var(--c-ink);
  position: relative;
}
.product--featured::before {
  content: 'Most chosen';
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 5px 12px;
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f5f7fa 0%, var(--c-bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product__media-placeholder {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  font-weight: 300;
  color: rgba(21,42,76,0.18);
  letter-spacing: -0.04em;
  user-select: none;
}
.product__media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(21,42,76,0.05), transparent);
  pointer-events: none;
}
.product__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 5px 11px;
  background: rgba(255,255,255,0.95);
  color: var(--c-ink);
  border-radius: var(--r-pill);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.product__tag--accent { background: var(--c-blue); color: #fff; }
.product__body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__name {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 8px;
}
.product__role {
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  line-height: 1.55;
  margin: 0 0 var(--s-5);
  min-height: 3.5em;
}
.product__specs {
  margin: 0 0 var(--s-5);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product__specs li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: var(--fs-small);
}
.product__specs li span:first-child {
  color: var(--c-text-mute);
}
.product__specs li span:last-child {
  color: var(--c-text);
  font-weight: 500;
  text-align: right;
}
.product__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.product__price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.product__price span {
  font-size: 0.75em;
  margin-right: 2px;
  color: var(--c-text-mute);
}
.product__cta {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-blue);
  transition: color 0.2s var(--e-out), transform 0.2s var(--e-out);
}
.product__cta:hover { color: var(--c-ink); transform: translateX(3px); }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product__role { min-height: auto; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* TOYA companion */
.toya {
  margin-top: var(--s-8);
  background: linear-gradient(135deg, var(--c-ink-deep) 0%, var(--c-ink) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.toya::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(53,112,222,0.3), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.toya__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
}
.toya__eyebrow {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6f9eff;
  margin-bottom: 8px;
}
.toya__name {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.toya__desc {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}
.toya__price-block {
  text-align: right;
  flex-shrink: 0;
}
.toya__price {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.toya__price span { font-size: 0.7em; color: rgba(255,255,255,0.6); }
.toya__cta {
  font-size: var(--fs-small);
  font-weight: 600;
  color: #6f9eff;
  transition: transform 0.2s var(--e-out), color 0.2s var(--e-out);
  display: inline-block;
}
.toya__cta:hover { color: #fff; transform: translateX(3px); }
@media (max-width: 720px) {
  .toya__inner { flex-direction: column; align-items: flex-start; }
  .toya__price-block { text-align: left; }
}

.emi-note {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--c-text-dim);
  margin: var(--s-6) 0 0;
  font-style: italic;
}

/* ============================================================
   STORIES
   ============================================================ */
.stories {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--c-bg-soft);
}
.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.story {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: transform 0.4s var(--e-out), box-shadow 0.4s var(--e-out);
}
.story:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.story__quote { display: flex; flex-direction: column; gap: var(--s-3); }
.story__quote svg { color: var(--c-blue); opacity: 0.4; flex-shrink: 0; }
.story__quote p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--c-text);
  margin: 0;
  font-weight: 400;
  font-style: italic;
}
.story__person {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line-soft);
}
.story__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-blue) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-small);
  flex-shrink: 0;
}
.story__name {
  font-weight: 600;
  color: var(--c-ink);
  font-size: var(--fs-small);
}
.story__meta {
  font-size: var(--fs-micro);
  color: var(--c-text-mute);
  margin-top: 2px;
}
.stories__legal {
  text-align: center;
  font-size: var(--fs-micro);
  color: var(--c-text-dim);
  margin: var(--s-6) auto 0;
  max-width: 720px;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .stories__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #fff;
}
.founder__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.founder__photo {
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-bg-soft) 0%, #e2e6ed 100%);
}
.founder__photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--c-ink);
  letter-spacing: -0.04em;
}
.founder__eyebrow {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--s-3);
}
.founder__quote {
  margin: 0 0 var(--s-5);
  border: 0;
  padding: 0;
}
.founder__quote p {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0 0 var(--s-4);
}
.founder__quote p:first-child::before {
  content: '"';
  font-size: 3rem;
  color: var(--c-blue);
  line-height: 0;
  position: relative;
  top: 14px;
  margin-right: 4px;
}
.founder__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-ink);
}
.founder__title {
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .founder__inner { grid-template-columns: 1fr; text-align: center; }
  .founder__photo { max-width: 200px; margin: 0 auto; }
}

/* ============================================================
   MOAT (NRDC + INDIA + LIFESPAN)
   ============================================================ */
.moat {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--c-ink-deep);
  color: #fff;
}
.moat__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
}
.moat__col {
  text-align: left;
}
.moat__icon {
  display: inline-flex;
  width: 60px; height: 60px;
  align-items: center;
  justify-content: center;
  background: rgba(53,112,222,0.12);
  color: #6f9eff;
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
}
.moat__col h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--s-3);
  color: #fff;
}
.moat__col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
}
@media (max-width: 880px) {
  .moat__inner { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #fff;
}
.faq__container { max-width: 820px; margin: 0 auto; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq__item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s var(--e-out), box-shadow 0.25s var(--e-out);
}
.faq__item[open] {
  border-color: var(--c-blue);
  box-shadow: var(--sh-1);
}
.faq__item summary {
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  user-select: none;
  transition: background 0.2s var(--e-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--c-bg-cream); }
.faq__chev {
  color: var(--c-text-mute);
  transition: transform 0.25s var(--e-out), color 0.25s var(--e-out);
  flex-shrink: 0;
}
.faq__item[open] .faq__chev {
  transform: rotate(180deg);
  color: var(--c-blue);
}
.faq__item p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--c-text-mute);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: clamp(80px, 12vw, 144px) 0;
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(53,112,222,0.18), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(53,112,222,0.10), transparent 50%);
  pointer-events: none;
}
.final-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta__h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-5);
  color: #fff;
}
.final-cta__sub {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto var(--s-7);
  line-height: 1.6;
}
.final-cta__actions {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s var(--e-out), background 0.25s var(--e-out), box-shadow 0.25s var(--e-out);
}
.btn--primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(53,112,222,0.36);
}
.btn--primary:hover {
  background: #2a5fc4;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(53,112,222,0.48);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: clamp(56px, 8vw, 88px) 0 var(--s-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
.footer__logo { height: 32px; width: auto; margin-bottom: var(--s-4); }
.footer__tag {
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
}
.footer__col h4 {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin: 0 0 var(--s-3);
}
.footer__col p {
  font-size: var(--fs-small);
  color: var(--c-text-mute);
  line-height: 1.65;
  margin: 0;
}
.footer__col a {
  color: var(--c-text-mute);
  transition: color 0.2s var(--e-out);
}
.footer__col a:hover { color: var(--c-blue); }
.footer__hours {
  font-size: var(--fs-micro);
  color: var(--c-text-dim);
  margin-top: var(--s-3) !important;
  font-style: italic;
}
.footer__legal-strip {
  padding: var(--s-5);
  background: var(--c-bg-cream);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
}
.footer__disclaimer {
  font-size: var(--fs-micro);
  color: var(--c-text-mute);
  line-height: 1.65;
}
.footer__disclaimer strong { color: var(--c-ink); font-weight: 600; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-soft);
}
.footer__company {
  font-size: var(--fs-micro);
  color: var(--c-text-dim);
}
.footer__links {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.footer__links a {
  font-size: var(--fs-micro);
  color: var(--c-text-mute);
  transition: color 0.2s var(--e-out);
}
.footer__links a:hover { color: var(--c-blue); }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--e-out), box-shadow 0.25s var(--e-out);
  animation: bounce-in 0.6s var(--e-out) 1.5s both;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
@keyframes bounce-in {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__orb { animation: none; }
}

/* Focus visible */
*:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}
.form__input:focus-visible, .form__select:focus-visible {
  outline: 0;
}

/* Selection */
::selection { background: var(--c-blue); color: #fff; }
