/* ═══════════════════════════════════════════════════════════════════════════
   NitiGrow Landing — Warm Indian Premium
   Cream paper, viridian + terracotta + turmeric, Fraunces + Geist
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --brand:        #0F7F5E;
  --brand-2:      #16A37A;
  --brand-dark:   #063527;
  --brand-soft:   #E6F4EE;
  --brand-ring:   rgba(15, 127, 94, 0.16);

  /* Accents */
  --accent:       #C55A2B;
  --accent-soft:  #FBEADF;
  --accent-2:     #E8A94A;
  --accent-2-soft:#FCF1D9;
  --accent-deep:  #7A2E10;

  /* Surfaces */
  --paper:        #FBF8F3;
  --paper-2:      #F5F0E6;
  --paper-3:      #EEE7D8;
  --card:         #FFFDF8;
  --espresso:     #1F1A14;
  --espresso-2:   #2A241C;

  /* Ink */
  --ink:          #1A1714;
  --ink-2:        #2E2A25;
  --ink-3:        #5A534B;
  --mute:         #85796D;
  --mute-2:       #B8AE9F;
  --cream:        #F5EFDF;

  /* Borders */
  --hair:         #E8DFCC;
  --hair-2:       #F0E9D9;

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(26, 23, 20, 0.04);
  --shadow-sm:    0 1px 2px rgba(26, 23, 20, 0.05), 0 1px 1px rgba(26, 23, 20, 0.03);
  --shadow:       0 4px 12px rgba(26, 23, 20, 0.06), 0 2px 6px rgba(26, 23, 20, 0.04);
  --shadow-md:    0 10px 28px rgba(26, 23, 20, 0.08), 0 4px 12px rgba(26, 23, 20, 0.05);
  --shadow-lg:    0 24px 56px rgba(26, 23, 20, 0.12), 0 8px 20px rgba(26, 23, 20, 0.06);
  --shadow-brand: 0 8px 22px rgba(15, 127, 94, 0.22);
  --shadow-accent:0 8px 22px rgba(197, 90, 43, 0.20);

  /* Radius */
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  18px;
  --r-xl:  26px;

  /* Type */
  --f-sans:    'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --f-display: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --f-mono:    'Geist Mono', ui-monospace, monospace;
  --f-serif:   'Instrument Serif', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.display { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.serif   { font-family: var(--f-serif);   font-style: italic; }
.mono    { font-family: var(--f-mono); }
.caps    { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 600; color: var(--mute); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--accent-2-soft); color: var(--ink); }

/* ═══ BUTTONS ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  font-weight: 600; font-size: 14.5px;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand); color: var(--paper);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(15, 127, 94, 0.28); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--hair);
}
.btn-outline:hover { border-color: var(--ink-3); background: var(--paper-2); }

.btn-accent {
  background: var(--accent); color: var(--paper);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }

.btn-ghost { color: var(--mute); padding: 8px 12px; }
.btn-ghost:hover { color: var(--ink); }

/* ═══ NAV ════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
  transition: background 0.25s, border-color 0.25s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--f-display); font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-eyebrow {
  font-family: var(--f-sans); font-weight: 600;
  font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--mute); margin-top: 3px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a:not(.btn) {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--brand); }
.nav-sep { width: 1px; height: 22px; background: var(--hair); margin: 0 4px; }
.nav-mobile-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; padding: 8px; border-radius: 8px; }
}

/* ═══ HERO ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(232, 169, 74, 0.10) 0%, transparent 60%),
    radial-gradient(50% 40% at 10% 30%, rgba(15, 127, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 24px;
}
.hero h1 em     { font-style: italic; color: var(--brand); font-weight: 400; }
.hero h1 .accent{ color: var(--accent); font-style: italic; }
.hero-lede {
  font-family: var(--f-serif); font-size: 20px; line-height: 1.5;
  color: var(--ink-2); margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: var(--mute);
}
.hero-trust .stars { color: var(--accent-2); letter-spacing: 1px; }
.hero-trust .pipe  { width: 1px; height: 16px; background: var(--hair); }

/* Phone mock */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  width: 320px; height: 640px;
  background: var(--espresso); border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}
.phone::before {
  content: ''; position: absolute;
  top: 24px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px; border-radius: 13px;
  background: #0a0807; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: var(--card);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-header {
  background: var(--brand); color: var(--paper);
  padding: 50px 16px 14px;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.phone-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #E8A94A, #C55A2B);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.phone-name   { font-weight: 600; font-size: 14px; line-height: 1.2; }
.phone-status { font-size: 11px; opacity: 0.85; margin-top: 2px; }
.phone-body {
  flex: 1; padding: 18px 14px;
  display: flex; flex-direction: column; gap: 10px;
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 169, 74, 0.08) 0%, transparent 30%),
    var(--paper-2);
  overflow-y: auto;
}
.bubble {
  max-width: 78%; padding: 9px 13px;
  font-size: 13px; line-height: 1.45;
  border-radius: 14px; box-shadow: var(--shadow-xs);
}
.bubble-in {
  background: var(--card); color: var(--ink);
  align-self: flex-start; border-bottom-left-radius: 4px;
  border: 1px solid var(--hair-2);
}
.bubble-out {
  background: var(--brand); color: var(--paper);
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.bubble-meta { font-size: 9.5px; opacity: 0.7; margin-top: 3px; text-align: right; }
.bubble-out .bubble-meta { color: var(--cream); }
.bubble-in  .bubble-meta { color: var(--mute); }
.phone-composer {
  padding: 10px 12px 16px;
  background: var(--card);
  border-top: 1px solid var(--hair-2);
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.phone-composer .input {
  flex: 1; background: var(--paper-2);
  border-radius: 22px; padding: 9px 14px;
  font-size: 13px; color: var(--mute);
}
.phone-composer .send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
}

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  font-size: 12.5px;
  display: flex; align-items: center; gap: 10px;
}
.float-card-1 { top: 90px;    left: -10px; }
.float-card-2 { bottom: 110px; right: -20px; }
.float-card .icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card .icon-1 { background: var(--brand-soft);    color: var(--brand); }
.float-card .icon-2 { background: var(--accent-2-soft); color: var(--accent); }
.float-card .label  { font-weight: 600; color: var(--ink); font-size: 12.5px; }
.float-card .sub    { color: var(--mute); font-size: 11px; margin-top: 1px; }

@media (max-width: 860px) {
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .phone-wrap { transform: scale(0.85); }
}

/* ═══ TRUST BAR ═══════════════════════════════════════════════════════ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--paper-2);
}
.trust-label {
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute);
  margin-bottom: 18px;
}
.trust-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 36px 56px;
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--mute-2);
}
.trust-logos span { transition: color 0.2s; }
.trust-logos span:hover { color: var(--ink-3); }

/* ═══ STATS ═══════════════════════════════════════════════════════════ */
.stats { padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--accent-2);
}
.stat-num {
  font-family: var(--f-display); font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 6px;
}
.stat-num .unit {
  font-family: var(--f-serif); font-style: italic;
  font-size: 32px; color: var(--accent); margin-left: 2px;
}
.stat-label {
  font-size: 13px; color: var(--mute); line-height: 1.4;
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 42px; }
  .stat-num .unit { font-size: 24px; }
}

/* ═══ SECTION HEAD ═══════════════════════════════════════════════════ */
.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(32px, 4vw, 46px); line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 720px; margin: 0 auto 16px;
}
.section-title em { font-style: italic; color: var(--brand); font-weight: 400; }
.section-lede {
  font-family: var(--f-serif); font-size: 19px; line-height: 1.5;
  color: var(--ink-2);
  max-width: 620px; margin: 0 auto;
}

/* ═══ JOBS — Sell / Serve / Scale ═══════════════════════════════════ */
#jobs { background: var(--paper); }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.job {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  display: flex; flex-direction: column;
}
.job-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.job-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.job-tag-sell  { color: var(--accent); }
.job-tag-sell  .dot { background: var(--accent); }
.job-tag-serve { color: var(--brand); }
.job-tag-serve .dot { background: var(--brand); }
.job-tag-scale { color: var(--accent-deep); }
.job-tag-scale .dot { background: var(--accent-2); }
.job h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 12px;
}
.job h3 em { font-style: italic; color: var(--brand); font-weight: 400; }
.job > p {
  font-family: var(--f-serif); font-size: 16px; line-height: 1.5;
  color: var(--ink-2); margin-bottom: 22px;
}
.job-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
  margin-top: auto;
}
.job-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; line-height: 1.5; color: var(--ink-2);
}
.job-list li::before {
  content: '→'; flex-shrink: 0; margin-top: 1px;
  color: var(--accent); font-weight: 700;
  font-family: var(--f-mono); font-size: 13px;
}
@media (max-width: 860px) { .jobs-grid { grid-template-columns: 1fr; } }

/* ═══ COMMERCE BAND ═══════════════════════════════════════════════════ */
#commerce { background: var(--paper-2); }
.commerce-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.commerce h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 20px;
}
.commerce h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.commerce-lede {
  font-family: var(--f-serif); font-size: 18px; line-height: 1.55;
  color: var(--ink-2); margin-bottom: 28px;
  max-width: 480px;
}
.commerce-chips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.commerce-chip {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: transform 0.18s, border-color 0.18s;
}
.commerce-chip:hover { transform: translateY(-2px); border-color: var(--hair-2); }
.commerce-chip .icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.commerce-chip .label {
  font-family: var(--f-sans); font-weight: 600;
  font-size: 13.5px; color: var(--ink); line-height: 1.3;
}
.commerce-chip .sub {
  font-size: 12px; color: var(--mute);
  margin-top: 3px; line-height: 1.45;
}

.product-mock {
  background: var(--card);
  border-radius: var(--r-xl);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 340px; margin: 0 auto;
}
.product-mock .gallery {
  height: 200px;
  background: linear-gradient(135deg, #FBEADF 0%, #FCF1D9 60%, #E6F4EE 120%);
  display: flex; align-items: center; justify-content: center;
}
.product-mock .gallery::before { content: '🛍'; font-size: 56px; opacity: 0.65; }
.product-mock .body { padding: 18px 20px 14px; }
.product-mock .product-name {
  font-family: var(--f-display); font-weight: 500;
  font-size: 18px; color: var(--ink); margin-bottom: 6px;
}
.product-mock .sku {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); letter-spacing: 0.04em;
}
.product-mock .price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin: 14px 0 12px;
}
.product-mock .price {
  font-family: var(--f-display); font-weight: 500;
  font-size: 26px; color: var(--ink);
}
.product-mock .strike { font-size: 14px; color: var(--mute); text-decoration: line-through; }
.product-mock .stock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--brand); font-weight: 600;
  background: var(--brand-soft); padding: 3px 9px; border-radius: 99px;
}
.product-mock .actions {
  display: flex; gap: 8px; padding: 0 18px 18px;
}
.product-mock .actions .btn { flex: 1; padding: 10px; font-size: 13px; }
@media (max-width: 860px) {
  .commerce-inner { grid-template-columns: 1fr; gap: 48px; }
  .commerce-chips { grid-template-columns: 1fr; }
}

/* ═══ INDIA STRIP ═════════════════════════════════════════════════════ */
.india-strip {
  background: linear-gradient(165deg, var(--espresso) 0%, var(--brand-dark) 100%);
  color: var(--cream);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.india-strip::before {
  content: ''; position: absolute;
  top: -100px; left: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 169, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.india-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
.india-strip .eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.india-strip .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent-2); }
.india-strip h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--cream);
}
.india-strip h3 em { font-style: italic; color: var(--accent-2); }
.india-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.india-pill {
  background: rgba(245, 239, 223, 0.06);
  border: 1px solid rgba(245, 239, 223, 0.12);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.india-pill .label {
  font-weight: 600; font-size: 13.5px; color: var(--cream);
  display: flex; align-items: center; gap: 8px;
}
.india-pill .label .badge-ic {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(232, 169, 74, 0.18); color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.india-pill .sub {
  font-size: 12px; color: rgba(245, 239, 223, 0.65); line-height: 1.45;
}
@media (max-width: 860px) {
  .india-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .india-pills { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) { .india-pills { grid-template-columns: 1fr; } }

/* ═══ INTEGRATIONS ═════════════════════════════════════════════════ */
.integrations {
  background: var(--paper);
  padding: 56px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.integrations h4 {
  text-align: center;
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; color: var(--ink); margin-bottom: 6px;
}
.integrations .sub {
  text-align: center;
  font-family: var(--f-serif); font-size: 15px;
  color: var(--ink-3); margin-bottom: 28px;
}
.integration-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px;
}
.integration-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.integration-chip:hover {
  border-color: var(--brand); color: var(--brand); background: var(--brand-soft);
}
.integration-chip .ic {
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--accent-2-soft); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

/* ═══ DEVELOPER / MOBILE BAND ═══════════════════════════════════════ */
#developer { background: var(--paper-2); }
.dev-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.dev-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex; flex-direction: column;
}
.dev-card-dark {
  background: linear-gradient(165deg, var(--espresso) 0%, var(--espresso-2) 100%);
  color: var(--cream);
  border: 1px solid rgba(245, 239, 223, 0.08);
  position: relative;
  overflow: hidden;
}
.dev-card-dark::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 127, 94, 0.2) 0%, transparent 70%);
}
.dev-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.dev-card-dark .dev-eyebrow { color: var(--accent-2); }
.dev-card h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.015em;
  margin-bottom: 14px; color: var(--ink);
  position: relative; z-index: 1;
}
.dev-card h3 em { font-style: italic; color: var(--brand); font-weight: 400; }
.dev-card-dark h3 { color: var(--cream); }
.dev-card-dark h3 em { color: var(--accent-2); }
.dev-card p {
  font-family: var(--f-serif); font-size: 16px;
  line-height: 1.55; color: var(--ink-2);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.dev-card-dark p { color: rgba(245, 239, 223, 0.78); }
.dev-card .meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
  position: relative; z-index: 1;
}
.dev-meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
}
.dev-card-dark .dev-meta-chip {
  background: rgba(245, 239, 223, 0.06);
  border-color: rgba(245, 239, 223, 0.12);
  color: rgba(245, 239, 223, 0.85);
}
.dev-meta-chip .mono { font-family: var(--f-mono); font-size: 11px; color: var(--accent); }
.dev-card-dark .dev-meta-chip .mono { color: var(--accent-2); }
@media (max-width: 860px) { .dev-grid { grid-template-columns: 1fr; } }

/* ═══ FEATURES (kept for backwards compat) ═══════════════════════════ */
#features { background: var(--paper); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--hair-2);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-brand   { background: var(--brand-soft);    color: var(--brand); }
.feature-icon-accent  { background: var(--accent-soft);   color: var(--accent); }
.feature-icon-turmeric{ background: var(--accent-2-soft); color: var(--accent-deep); }
.feature h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 10px;
}
.feature p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr; } }

/* ═══ HOW IT WORKS ═══════════════════════════════════════════════════ */
#how { background: var(--paper-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-mono); font-weight: 500;
  font-size: 12px; color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 14px; display: block;
}
.step h4 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 18px; color: var(--ink); margin-bottom: 8px;
}
.step p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ═══ TESTIMONIALS ═══════════════════════════════════════════════════ */
#proof { background: var(--paper); }
.testimonials {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial-featured {
  background: linear-gradient(165deg, var(--espresso) 0%, var(--brand-dark) 100%);
  color: var(--cream);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.testimonial-featured::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 169, 74, 0.12) 0%, transparent 70%);
}
.testimonial-quote {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; line-height: 1.5;
  color: var(--ink);
  position: relative; z-index: 1;
}
.testimonial-featured .testimonial-quote { color: var(--cream); font-size: 22px; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  position: relative; z-index: 1;
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; color: var(--ink); line-height: 1.2; }
.author-biz  { font-size: 12px; color: var(--mute); margin-top: 2px; }
.testimonial-featured .author-name { color: var(--cream); }
.testimonial-featured .author-biz  { color: rgba(245, 239, 223, 0.7); }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

/* ═══ PRICING ═══════════════════════════════════════════════════════ */
#pricing { background: var(--paper-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-popular {
  background: linear-gradient(165deg, var(--espresso) 0%, var(--brand-dark) 100%);
  color: var(--cream);
  border-color: transparent;
  transform: scale(1.04);
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.plan-popular::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-2); color: var(--ink);
  padding: 5px 16px; border-radius: 99px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.plan-name {
  font-family: var(--f-display); font-weight: 500;
  font-size: 24px; color: var(--ink); margin-bottom: 6px;
}
.plan-popular .plan-name { color: var(--cream); }
.plan-tagline { font-size: 13px; color: var(--mute); margin-bottom: 26px; }
.plan-popular .plan-tagline { color: rgba(245, 239, 223, 0.7); }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.plan-currency {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; color: var(--ink);
}
.plan-popular .plan-currency { color: var(--accent-2); }
.plan-amount {
  font-family: var(--f-display); font-weight: 500;
  font-size: 52px; line-height: 1; letter-spacing: -0.025em;
  color: var(--ink);
}
.plan-popular .plan-amount { color: var(--cream); }
.plan-period { font-size: 14px; color: var(--mute); }
.plan-popular .plan-period { color: rgba(245, 239, 223, 0.7); }
.plan-divider { height: 1px; background: var(--hair); margin: 22px 0; }
.plan-popular .plan-divider { background: rgba(245, 239, 223, 0.12); }
.plan-features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; flex: 1;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5; color: var(--ink-2);
}
.plan-popular .plan-features li { color: var(--cream); }
.plan-features li::before {
  content: ''; flex-shrink: 0; margin-top: 5px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' stroke='%230F7F5E' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.plan-popular .plan-features li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' stroke='%23E8A94A' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.plan .btn { width: 100%; }
.plan-popular .btn-primary {
  background: var(--accent-2); color: var(--ink);
  box-shadow: 0 8px 22px rgba(232, 169, 74, 0.32);
}
.plan-popular .btn-primary:hover { background: #F5BB6A; }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-popular { transform: none; }
}

/* ═══ CTA ═══════════════════════════════════════════════════════════ */
.cta {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand-dark) 0%, var(--brand) 60%, var(--espresso) 120%);
  color: var(--cream);
}
.cta::before {
  content: ''; position: absolute;
  right: -140px; bottom: -140px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 169, 74, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.cta h2 em { font-style: italic; color: var(--accent-2); }
.cta p {
  font-family: var(--f-serif); font-size: 19px;
  color: rgba(245, 239, 223, 0.85);
  max-width: 540px; margin: 0 auto 32px;
}
.cta .btn-primary {
  background: var(--accent-2); color: var(--ink);
  box-shadow: 0 8px 22px rgba(232, 169, 74, 0.4);
}
.cta .btn-primary:hover { background: #F5BB6A; }
.cta .btn-outline {
  background: transparent; color: var(--cream);
  border-color: rgba(245, 239, 223, 0.3);
}
.cta .btn-outline:hover { background: rgba(245, 239, 223, 0.08); border-color: var(--cream); }
.cta-trust {
  margin-top: 32px;
  font-size: 13px; color: rgba(245, 239, 223, 0.65);
  display: flex; align-items: center; justify-content: center; gap: 22px;
  flex-wrap: wrap;
}
.cta-trust .pipe { width: 1px; height: 16px; background: rgba(245, 239, 223, 0.2); }

/* ═══ FOOTER ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--espresso); color: rgba(245, 239, 223, 0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand p {
  margin-top: 14px;
  font-family: var(--f-serif); font-size: 16px;
  color: rgba(245, 239, 223, 0.7); line-height: 1.5;
  max-width: 320px;
}
.footer h5 {
  font-family: var(--f-sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-2);
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: 14px; color: rgba(245, 239, 223, 0.75);
  transition: color 0.15s;
}
.footer ul a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 223, 0.1);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(245, 239, 223, 0.55);
}
.footer-bottom .made {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-serif); font-style: italic;
}
.footer-bottom .made .heart { color: var(--accent); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══ STATIC PAGES (terms, privacy) ════════════════════════════════ */
.doc {
  max-width: 760px; margin: 0 auto;
  padding: 64px 28px;
}
.doc h1 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 44px; letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 8px;
}
.doc .doc-meta {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--mute); margin-bottom: 36px;
  padding-bottom: 28px; border-bottom: 1px solid var(--hair);
}
.doc h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 26px; letter-spacing: -0.01em;
  margin-top: 36px; margin-bottom: 14px;
  color: var(--ink);
}
.doc p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-2); margin-bottom: 14px;
}
.doc a { color: var(--brand); border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.doc a:hover { border-bottom-color: var(--brand); }
.doc ul { padding-left: 20px; margin-bottom: 14px; }
.doc ul li { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); margin-bottom: 6px; }
.doc-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--mute);
  margin-bottom: 24px;
  transition: color 0.15s;
}
.doc-back:hover { color: var(--brand); }

/* ═══ INDUSTRIES ═══════════════════════════════════════════════════ */
#industries { background: var(--paper); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  cursor: default;
}
.industry:hover {
  transform: translateY(-3px);
  border-color: var(--hair-2);
  box-shadow: var(--shadow);
}
.industry .ico {
  font-size: 28px; line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}
.industry h4 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 18px; color: var(--ink);
  margin-bottom: 6px;
}
.industry .roi {
  font-family: var(--f-display); font-style: italic;
  font-size: 14px; color: var(--accent);
  margin-bottom: 10px;
}
.industry .roi .num {
  font-style: normal; font-weight: 500;
  font-size: 22px; color: var(--brand);
  letter-spacing: -0.01em;
}
.industry p {
  font-size: 12.5px; color: var(--ink-3); line-height: 1.5;
}
@media (max-width: 860px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .industries-grid { grid-template-columns: 1fr; } }

/* ═══ PRICING TOGGLE ═══════════════════════════════════════════════ */
.billing-toggle {
  display: inline-flex; align-items: center;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-xs);
}
.billing-toggle button {
  padding: 9px 22px;
  font-size: 13.5px; font-weight: 600;
  color: var(--mute);
  border-radius: 999px;
  transition: all 0.18s;
  display: inline-flex; align-items: center; gap: 8px;
}
.billing-toggle button.active {
  background: var(--ink); color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.billing-toggle .save-badge {
  font-size: 10.5px; font-weight: 700;
  background: var(--accent-2-soft); color: var(--accent-deep);
  padding: 2px 8px; border-radius: 99px;
  letter-spacing: 0.04em;
}
.billing-toggle button.active .save-badge {
  background: var(--accent-2); color: var(--ink);
}
.plan-amount[data-monthly][data-annual] { transition: opacity 0.15s; }
.plan-period.annual-note {
  display: none; font-size: 12px; color: var(--mute);
  margin-top: 4px;
}
[data-billing="annual"] .plan-period.annual-note { display: block; }

/* ═══ FAQ ═══════════════════════════════════════════════════════════ */
#faq { background: var(--paper-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  max-width: 1000px; margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: border-color 0.15s, box-shadow 0.18s;
}
.faq-item:hover { border-color: var(--hair-2); box-shadow: var(--shadow-xs); }
.faq-item summary {
  font-family: var(--f-display); font-weight: 500;
  font-size: 16.5px; color: var(--ink);
  line-height: 1.4;
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-family: var(--f-sans); font-weight: 400; font-size: 22px;
  color: var(--accent); line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(0deg); }
.faq-item .answer {
  font-size: 14.5px; line-height: 1.65;
  color: var(--ink-3);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hair-2);
}
.faq-item .answer a { color: var(--brand); border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.faq-item .answer a:hover { border-bottom-color: var(--brand); }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }

/* ═══ TRUST BADGES ROW ═══════════════════════════════════════════════ */
.trust-badges {
  padding: 56px 0;
  background: var(--paper);
  border-top: 1px solid var(--hair);
}
.trust-badges .label {
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute);
  margin-bottom: 22px;
}
.badge-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 12px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.trust-badge:hover { border-color: var(--brand); box-shadow: var(--shadow-xs); }
.trust-badge .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.trust-badge .sub {
  font-size: 11px; color: var(--mute);
  font-weight: 500; margin-top: 1px;
}
.trust-badge .stack { display: flex; flex-direction: column; }

/* ═══ WHATSAPP FLOAT ═══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 90;
  background: #25D366; color: #fff;
  border-radius: 999px;
  padding: 12px 18px 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.18s, box-shadow 0.18s;
  font-family: var(--f-sans);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0, 0, 0, 0.12);
}
.wa-float .ic {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
}
.wa-float .dot {
  position: absolute; top: 6px; right: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(232, 169, 74, 0.3);
  animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 169, 74, 0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(232, 169, 74, 0); }
}
@media (max-width: 540px) {
  .wa-float .label-text { display: none; }
  .wa-float { padding: 14px; }
}

/* ═══ START PATHS (3 ways to begin) ═══════════════════════════════════ */
#start { background: var(--paper-2); }
.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.start-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.start-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--hair-2);
}
.start-card.featured {
  background: linear-gradient(165deg, var(--espresso) 0%, var(--brand-dark) 100%);
  color: var(--cream);
  border-color: transparent;
}
.start-card.featured::before {
  content: 'Most popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-2); color: var(--ink);
  padding: 5px 16px; border-radius: 99px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.start-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
}
.start-icon-brand   { background: var(--brand-soft);    color: var(--brand); }
.start-icon-accent  { background: var(--accent-soft);   color: var(--accent); }
.start-icon-wa      { background: rgba(37, 211, 102, 0.14); color: #128C7E; }
.start-card.featured .start-icon { background: rgba(232, 169, 74, 0.18); color: var(--accent-2); }
.start-card h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 10px;
}
.start-card.featured h3 { color: var(--cream); }
.start-card .desc {
  font-family: var(--f-serif); font-size: 16px; line-height: 1.55;
  color: var(--ink-2); margin-bottom: 22px;
}
.start-card.featured .desc { color: rgba(245, 239, 223, 0.78); }
.start-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.start-meta span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 500;
  background: var(--paper-2); color: var(--ink-3);
  padding: 4px 10px; border-radius: 99px;
}
.start-card.featured .start-meta span {
  background: rgba(245, 239, 223, 0.08); color: rgba(245, 239, 223, 0.78);
}
.start-card .btn { width: 100%; margin-top: auto; }
.start-card.featured .btn-primary {
  background: var(--accent-2); color: var(--ink);
  box-shadow: 0 8px 22px rgba(232, 169, 74, 0.32);
}
.start-card.featured .btn-primary:hover { background: #F5BB6A; }
@media (max-width: 860px) { .start-grid { grid-template-columns: 1fr; } }

/* ═══ CONTACT ═══════════════════════════════════════════════════════ */
#contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 26px; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 8px;
}
.contact-form .sub {
  font-family: var(--f-serif); font-size: 15px;
  color: var(--ink-3); margin-bottom: 26px;
}
.contact-form .field { margin-bottom: 16px; }
.contact-form .field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 16px;
}
.contact-form .field-row .field { margin-bottom: 0; }
.contact-form label {
  display: block;
  font-size: 11.5px; font-weight: 600;
  color: var(--mute); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  font: inherit; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-ring);
  background: var(--card);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}
.contact-form .submit-row {
  display: flex; gap: 12px; align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
.contact-form .submit-row .btn { flex: 0 0 auto; }
.contact-form .legal {
  font-size: 12px; color: var(--mute);
  line-height: 1.5;
}
.contact-form .form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 13.5px; line-height: 1.5;
  display: none;
}
.contact-form .form-msg.ok {
  display: block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1px solid var(--brand);
}
.contact-form .form-msg.err {
  display: block;
  background: rgba(192, 59, 59, 0.08);
  color: #8a2f2f;
  border: 1px solid #C03B3B;
}

/* Contact methods column */
.contact-methods {
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-decoration: none; color: inherit;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--hair-2);
  box-shadow: var(--shadow-sm);
}
.contact-card.featured {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.10), rgba(15, 127, 94, 0.06));
  border-color: var(--brand);
}
.contact-card .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-card .ico-wa     { background: #25D366; color: #fff; }
.contact-card .ico-phone  { background: var(--brand-soft); color: var(--brand); }
.contact-card .ico-email  { background: var(--accent-soft); color: var(--accent); }
.contact-card .ico-office { background: var(--accent-2-soft); color: var(--accent-deep); }
.contact-card .label {
  font-family: var(--f-sans); font-weight: 600;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mute);
  margin-bottom: 4px;
}
.contact-card .value {
  font-family: var(--f-display); font-weight: 500;
  font-size: 18px; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.3;
  margin-bottom: 4px;
}
.contact-card .hint {
  font-size: 12.5px; color: var(--ink-3); line-height: 1.45;
}
.contact-card .hint .pulse {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); margin-right: 5px;
  animation: live-pulse 1.8s ease-in-out infinite;
  vertical-align: 1px;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 127, 94, 0); }
  50%      { box-shadow: 0 0 0 5px rgba(15, 127, 94, 0.2); }
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form .field-row { grid-template-columns: 1fr; }
}
