/* =====================================================
   ARNASOFT — Premium SaaS landing page (LIGHT theme)
   Logo identity preserved · airy cream palette · gold accents
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand — logo identity (UNCHANGED) */
  --gold-1:        #B8884B;
  --gold-2:        #E8C77A;
  --gold-3:        #8a6533;
  --gold-soft:     #d6a558;
  --gold-light:    #f6dd9c;
  --gold-deep:     #6b4d22;
  --gold-grad:     linear-gradient(160deg,#d6a558 0%,#f6dd9c 28%,#b07e3a 52%,#ecc977 72%,#8c5f2a 100%);
  --gold-grad-soft: linear-gradient(135deg,#E8C77A 0%, #B8884B 100%);
  --gold-tint:     rgba(184,136,75,.08);
  --gold-tint-2:   rgba(184,136,75,.16);

  --brown:         #2b1d12;
  --brown-2:       #1a1108;

  /* Dark surfaces (header / footer — match logo background) */
  --surface-dark:        #2b1d12;
  --surface-dark-2:      #1a1108;
  --on-dark:             #f8f3ea;
  --on-dark-muted:       rgba(248,243,234,.62);
  --on-dark-soft:        rgba(248,243,234,.78);
  --on-dark-faint:       rgba(248,243,234,.4);
  --line-on-dark:        rgba(248,243,234,.08);
  --line-on-dark-strong: rgba(248,243,234,.14);

  /* Light surfaces */
  --bg:            #fdfaf3;          /* page bg */
  --bg-2:          #f8f3ea;          /* paper / cream */
  --bg-3:          #f1e9d9;          /* paper-2 / soft cream */
  --surface:       #ffffff;          /* cards, accents */

  --ink:           #1a1410;          /* primary text */
  --ink-2:         #3a2d22;          /* secondary text */
  --muted:         #6b5a45;          /* tertiary text */
  --muted-2:       #8a7458;          /* eyebrow / caption */

  --line:          rgba(26,17,8,.08);
  --line-strong:   rgba(26,17,8,.14);

  /* Tonal — same family as cream bg, just a touch deeper */
  --sand:          #e8dcc1;          /* primary button bg (warm sandstone) */
  --sand-2:        #d8c8a4;          /* primary hover */
  --sand-line:     #d4c4a0;          /* hairline that blends in */

  /* Dusk navy (header) */
  --dusk-1:        #0c1624;
  --dusk-2:        #142238;
  --dusk-3:        #1a2c47;
  --dusk-ink:      #f0e6d2;
  --dusk-muted:    #8a98ad;
  --dusk-rule:     rgba(232,199,122,.18);
  --dusk-rule-soft:rgba(232,199,122,.08);

  /* Type */
  --f-sans:   'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --f-serif:  'Cormorant Garamond', Georgia, serif;
  --f-script: 'Yellowtail', cursive;

  /* Spacing */
  --container: 1240px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Motion */
  --ease:   cubic-bezier(.2,.8,.2,1);
  --ease-2: cubic-bezier(.65,.05,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Brand lockup ---------- */
.brand {
  display: inline-flex; align-items: flex-end; gap: 0; white-space: nowrap;
  line-height: 0.9;
}
.brand__arna {
  font-family: var(--f-script);
  font-size: 52px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(107,77,34,.12));
  letter-spacing: 0;
}
.brand__soft {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--gold-deep);
  margin-left: -.05em;
  margin-bottom: .18em;
}
.brand--lg .brand__arna { font-size: 64px; }
.brand--lg .brand__soft { font-size: 32px; }

/* ---------- Buttons ----------
   Refined, tonal hierarchy. Primary stays in the cream family.
   Outlines wear a fine gold thread on hover. Ghost is purely text.
*/
.btn {
  --btn-bg:        transparent;
  --btn-fg:        var(--ink);
  --btn-bd:        transparent;
  --btn-bg-hover:  transparent;
  --btn-fg-hover:  var(--ink);

  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.005em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .22s var(--ease),
              box-shadow .35s var(--ease);
  isolation: isolate;
}
.btn:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-fg-hover);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184,136,75,.35);
}
.btn--lg { padding: 16px 30px; font-size: 15px; gap: 12px; }

/* Trailing arrow — animates on hover */
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg:last-of-type { transform: translateX(3px); }

/* PRIMARY — tonal sandstone with a whispered gold thread on hover */
.btn--primary {
  --btn-bg:        var(--sand);
  --btn-fg:        var(--ink);
  --btn-bd:        var(--sand-line);
  --btn-bg-hover:  var(--sand-2);
  --btn-fg-hover:  var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 4px 10px -8px rgba(107,77,34,.28);
}
.btn--primary:hover {
  border-color: rgba(184,136,75,.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 0 0 1px rgba(184,136,75,.18),
    0 14px 26px -12px rgba(184,136,75,.35);
}

/* OUTLINE — hairline that swaps in a fine gold thread on hover */
.btn--outline,
.btn--outline-dark {
  --btn-bg:        transparent;
  --btn-fg:        var(--ink);
  --btn-bd:        rgba(26,17,8,.16);
  --btn-bg-hover:  rgba(232,199,122,.05);
  --btn-fg-hover:  var(--ink);
}
.btn--outline:hover,
.btn--outline-dark:hover {
  border-color: rgba(184,136,75,.55);
  box-shadow:
    inset 0 0 0 1px rgba(184,136,75,.1),
    0 8px 18px -10px rgba(184,136,75,.2);
}

/* GHOST — text only with a hairline underline that draws in */
.btn--ghost {
  --btn-bg:        transparent;
  --btn-fg:        var(--ink-2);
  --btn-bg-hover:  transparent;
  --btn-fg-hover:  var(--ink);
  padding: 10px 8px;
  border-radius: 0;
}
.btn--ghost:hover { transform: none; box-shadow: none; }
.btn--ghost::after {
  content: '';
  position: absolute;
  left: 8px; right: 8px; bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  opacity: .6;
}
.btn--ghost:hover::after { transform: scaleX(1); }

/* Featured plan button — primary with a stronger gold ring */
.plan--featured .btn--primary {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 0 0 1px rgba(184,136,75,.22),
    0 12px 28px -10px rgba(184,136,75,.35);
}
.plan--featured .btn--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 0 0 1px rgba(184,136,75,.4),
    0 18px 36px -12px rgba(184,136,75,.45);
}

/* ---------- Eyebrow ---------- */
.eyebrow,
.eyebrow--dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--gold-1);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(184,136,75,.18);
}

/* ---------- Section helpers ---------- */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section--cream {
  background: var(--bg-2);
  color: var(--ink);
}
.section--dark {
  /* Reused class — now an "off-white" surface for light theme */
  background: var(--surface);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section__head .eyebrow,
.section__head .eyebrow--dark { justify-content: center; }
.section__title {
  font-family: var(--f-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__title--light { color: var(--ink); }
.section__sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.section__sub--light { color: var(--muted); }

/* =====================================================
   NAVIGATION
   ===================================================== */
/* =====================================================
   DUSK NAVY HEADER
   - utility strip + 3-column main row + ornament under logo
   - sticky across scroll, compacts gracefully
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  overflow: visible;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(232,199,122,.08), transparent 60%),
    radial-gradient(ellipse 60% 100% at 50% -20%, rgba(232,199,122,.06), transparent 70%),
    linear-gradient(180deg, var(--dusk-2) 0%, var(--dusk-1) 100%);
  color: var(--dusk-ink);
  transition: background .35s var(--ease);
}
/* faint constellation dots */
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 30%, rgba(232,199,122,.4), transparent 50%),
    radial-gradient(1px 1px at 88% 65%, rgba(232,199,122,.35), transparent 50%),
    radial-gradient(1px 1px at 76% 22%, rgba(232,199,122,.3), transparent 50%),
    radial-gradient(1px 1px at 22% 75%, rgba(232,199,122,.3), transparent 50%);
  pointer-events: none;
  opacity: .7;
}
/* gold hairline under the header */
.nav::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%; bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent,
    rgba(232,199,122,.5) 30%,
    rgba(232,199,122,.5) 70%,
    transparent);
}

/* ── Utility strip ── */
.util {
  position: relative;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid var(--dusk-rule-soft);
  font-size: 12px;
  color: var(--dusk-muted);
  overflow: hidden;
  max-height: 80px;
  transition: max-height .35s var(--ease),
              opacity .25s var(--ease),
              border-color .25s var(--ease);
}
.util__inner {
  padding: 9px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.util__left, .util__right {
  display: flex; align-items: center; gap: 22px;
}
.util a {
  color: var(--dusk-muted);
  transition: color .2s var(--ease);
}
.util a:hover { color: var(--gold-1); }
.util__sep {
  width: 1px; height: 12px;
  background: var(--dusk-rule-soft);
  display: inline-block;
}
.util__badge {
  display: inline-flex; align-items: center; gap: 8px;
}
.util__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 8px rgba(134,239,172,.6);
}
.util__lang {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--dusk-ink);
}
.util__lang strong {
  color: var(--gold-1);
  font-weight: 500;
  font-style: normal;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ── Main row: logo · menu · cluster ── */
.nav__inner {
  position: relative;
  z-index: 1;
  padding: 30px 28px 28px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: padding .35s var(--ease);
}

/* ── Logo (now left-aligned) ── */
.nav__logo {
  flex: 0 0 auto;
  display: flex; align-items: center;
}
.nav .brand {
  display: inline-flex; align-items: flex-end; gap: 0;
  white-space: nowrap;
  line-height: 0.9;
  cursor: pointer;
  transition: transform .25s var(--ease);
}
.nav .brand:hover { transform: translateY(-1px); }
.nav .brand__arna {
  font-family: var(--f-script);
  font-size: 62px;
  line-height: 0.9;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,.5))
    drop-shadow(0 0 24px rgba(232,199,122,.15));
  transition: filter .35s var(--ease), font-size .35s var(--ease);
}
.nav .brand:hover .brand__arna {
  filter:
    drop-shadow(0 2px 6px rgba(0,0,0,.5))
    drop-shadow(0 0 32px rgba(232,199,122,.4));
}
.nav .brand__soft {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--gold-3);
  margin-bottom: .2em;
  margin-left: -.05em;
  transition: color .3s var(--ease), font-size .35s var(--ease);
}
.nav .brand:hover .brand__soft { color: var(--gold-2); }

/* legacy ornament — hidden when logo is left-aligned */
.brand__ornament { display: none; }

/* ── Center menu ── */
.nav__menu {
  flex: 1 1 auto;
  display: flex; align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__menu a {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--dusk-ink);
  letter-spacing: 0.02em;
  opacity: .78;
  position: relative;
  padding: 4px 0;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.nav__menu a:hover,
.nav__menu a.is-active {
  opacity: 1;
  color: var(--gold-1);
}
.nav__menu a.is-active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 10px rgba(232,199,122,.6);
}
.nav__menu a.has-caret {
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__menu a.has-caret svg {
  width: 9px; height: 9px; opacity: .55;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__menu a.has-caret:hover svg { opacity: 1; transform: translateY(1px); }

/* ── Right cluster ── */
.nav__cluster {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 12px;
}

/* Icon button (search) — refined hairline circle */
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232,199,122,.22);
  background: rgba(255,255,255,.02);
  color: var(--dusk-ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color .25s var(--ease),
              border-color .25s var(--ease),
              background .25s var(--ease),
              transform .25s var(--ease);
}
.icon-btn:hover {
  color: var(--gold-1);
  border-color: rgba(232,199,122,.55);
  background: rgba(232,199,122,.08);
  transform: rotate(-6deg);
}
.icon-btn svg { width: 15px; height: 15px; }

/* ── Refined CTA — sleek pill, gradient sweep, animated arrow ── */
.btn-cta {
  --cta-fg:        var(--gold-1);
  --cta-bg:        rgba(232,199,122,.04);
  --cta-bd:        rgba(232,199,122,.45);
  --cta-fg-hover:  var(--dusk-1);

  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: var(--cta-bg);
  color: var(--cta-fg);
  border: 1px solid var(--cta-bd);
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--ease),
              border-color .35s var(--ease),
              transform .25s var(--ease);
}
.btn-cta::before {
  /* gradient that wipes across on hover */
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-grad);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.65,.05,.36,1);
  z-index: -1;
}
.btn-cta::after {
  /* soft golden glow on hover */
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 8px 24px -8px rgba(232,199,122,0);
  transition: box-shadow .35s var(--ease);
  z-index: -2;
  pointer-events: none;
}
.btn-cta:hover {
  color: var(--cta-fg-hover);
  border-color: transparent;
  transform: translateY(-1px);
}
.btn-cta:hover::before { transform: translateX(0); }
.btn-cta:hover::after  { box-shadow: 0 14px 28px -10px rgba(232,199,122,.45); }
.btn-cta__arrow {
  transition: transform .35s var(--ease);
}
.btn-cta:hover .btn-cta__arrow { transform: translateX(3px); }

/* ── Burger (mobile) ── */
.nav__burger {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 10px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--dusk-ink);
  transition: all .3s var(--ease);
}

/* ── Scroll: compact form ── */
.nav.is-scrolled .util {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}
.nav.is-scrolled .nav__inner { padding: 16px 28px 14px; }
.nav.is-scrolled .brand__arna { font-size: 48px; }
.nav.is-scrolled .brand__soft { font-size: 22px; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 240px 0 100px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,199,122,.18), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .35;
}
.hero__glow--1 {
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(232,199,122,.55), transparent 70%);
}
.hero__glow--2 {
  bottom: -200px; right: -150px;
  background: radial-gradient(circle, rgba(214,165,88,.35), transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107,77,34,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,77,34,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__bullets {
  display: flex; flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
}
.hero__bullets li {
  display: flex; align-items: center; gap: 8px;
}
.hero__bullets svg { color: var(--gold-1); }

/* Hero visual / mockup — now LIGHT */
.hero__visual {
  position: relative;
  perspective: 1200px;
}
.mock {
  background: linear-gradient(160deg, #ffffff 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow:
    0 50px 100px -25px rgba(107,77,34,.18),
    0 30px 60px -30px rgba(107,77,34,.1),
    inset 0 1px 0 rgba(255,255,255,.6);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform .6s var(--ease);
}
.hero__visual:hover .mock { transform: rotateY(-4deg) rotateX(2deg); }

.mock__top {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.mock__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(26,17,8,.1); }
.mock__dot:first-child { background: rgba(232,140,140,.55); }
.mock__dot:nth-child(2) { background: rgba(232,199,122,.7); }
.mock__dot:nth-child(3) { background: rgba(140,200,160,.6); }
.mock__url {
  margin-left: 10px;
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.04em;
  background: var(--bg-2);
  padding: 4px 12px;
  border-radius: 999px;
  flex: 1;
}
.mock__body {
  display: grid; grid-template-columns: 60px 1fr; gap: 14px;
  min-height: 320px;
}
.mock__sidebar {
  background: var(--bg-2);
  border-radius: 8px;
  padding: 12px 8px;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.mock__logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gold-grad);
  color: #fff;
  font-family: var(--f-script);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(107,77,34,.25);
}
.mock__navitem {
  width: 36px; height: 6px;
  background: rgba(26,17,8,.1);
  border-radius: 3px;
}
.mock__navitem--active { background: var(--gold-1); }

.mock__main { padding: 6px 6px 6px 0; }
.mock__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.mock__title-bar { width: 130px; height: 10px; background: rgba(26,17,8,.18); border-radius: 4px; }
.mock__chip { width: 60px; height: 22px; background: var(--gold-tint-2); border-radius: 999px; border: 1px solid rgba(184,136,75,.3); }

.mock__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mock__stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}
.mock__stat-num {
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}
.mock__stat-label { font-size: 9px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.1em; }

.mock__cal { display: flex; flex-direction: column; gap: 6px; }
.mock__cal-row {
  display: grid; grid-template-columns: 40px 1fr; gap: 8px; align-items: center;
}
.mock__time { font-size: 10px; color: var(--muted-2); font-family: ui-monospace, monospace; }
.mock__slot {
  height: 26px; border-radius: 6px;
  border-left: 2px solid var(--gold-1);
  background: linear-gradient(90deg, rgba(184,136,75,.18), rgba(184,136,75,.05));
}
.mock__slot--2 { border-left-color: var(--gold-soft); background: linear-gradient(90deg, rgba(214,165,88,.22), rgba(214,165,88,.05)); }
.mock__slot--3 { border-left-color: var(--gold-2); background: linear-gradient(90deg, rgba(232,199,122,.28), rgba(232,199,122,.05)); }
.mock__slot--4 { border-left-color: var(--gold-deep); background: linear-gradient(90deg, rgba(107,77,34,.18), rgba(107,77,34,.04)); }
.mock__slot--empty {
  border-left-color: transparent;
  background: var(--bg-2);
  border: 1px dashed var(--line-strong);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 30px 60px -20px rgba(107,77,34,.22);
  animation: float 4s var(--ease) infinite;
}
.float-card--1 {
  bottom: -24px; left: -36px;
  animation-delay: -1.5s;
}
.float-card--2 {
  top: -24px; right: -28px;
}
.float-card__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gold-tint);
  border: 1px solid rgba(184,136,75,.25);
  color: var(--gold-3);
  display: flex; align-items: center; justify-content: center;
}
.float-card__title { font-size: 13px; font-weight: 500; color: var(--ink); }
.float-card__sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.float-card__spark { width: 64px; height: 32px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Brand strip */
.hero__strip {
  margin-top: 100px;
  text-align: center;
}
.strip-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.strip-logos {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 48px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  opacity: .9;
}
.strip-logos span { transition: color .25s var(--ease); }
.strip-logos span:hover { color: var(--gold-3); }

/* =====================================================
   STATS — ribbon between hero & content
   ===================================================== */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--f-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__plus, .stat__small {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__small { font-size: 0.5em; font-style: italic; font-weight: 400; }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 8px;
}

/* =====================================================
   FEATURES MAIN (3 column showcase)
   ===================================================== */
.features-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fmain {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.fmain:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(107,77,34,.2);
  border-color: rgba(184,136,75,.3);
}
.fmain__num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-3);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.fmain__visual {
  border-radius: 12px;
  height: 220px;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.fmain__title {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.fmain__desc {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Booking card visual */
.bk-card {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px -12px rgba(107,77,34,.18);
  padding: 14px 16px;
  border: 1px solid var(--line);
}
.bk-card__top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.bk-card__title { font-family: var(--f-serif); font-size: 16px; font-style: italic; color: var(--ink); }
.bk-card__live {
  font-size: 10px;
  color: #2a8c5d;
  letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 4px;
}
.bk-card__live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2a8c5d;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(42,140,93,.2);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(42,140,93,0); } }

.bk-card__list { display: flex; flex-direction: column; gap: 8px; }
.bk-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-2);
  padding: 6px 8px;
  background: var(--bg-2);
  border-radius: 6px;
}
.bk-time { font-family: ui-monospace, monospace; color: var(--gold-3); font-weight: 600; }
.bk-name { flex: 1; }
.bk-tag {
  background: var(--gold-grad);
  color: #fff;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(107,77,34,.3);
}

/* Reminder visual */
.reminder { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.reminder__bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 85%;
  box-shadow: 0 4px 12px rgba(107,77,34,.08);
}
.reminder__bubble--in {
  background: #fff;
  color: var(--ink-2);
  align-self: flex-start;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.reminder__bubble--out {
  background: var(--gold-grad);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(107,77,34,.3);
}
.reminder__head {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--muted-2);
  margin-bottom: 4px;
}
.reminder__head span { font-family: ui-monospace, monospace; }

/* Money card */
.moneycard {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px -12px rgba(107,77,34,.18);
  padding: 14px;
  border: 1px solid var(--line);
}
.moneycard__row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.moneycard__row span:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.moneycard__amount {
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 600;
}
.moneycard__chart { width: 100%; height: 60px; }
.moneycard__legend {
  display: flex; gap: 16px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}
.moneycard__legend i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

/* =====================================================
   GRID FEATURES (12 cards) — light theme
   ===================================================== */
.grid-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.gcard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s var(--ease);
}
.gcard:hover {
  transform: translateY(-3px);
  border-color: rgba(184,136,75,.35);
  box-shadow: 0 22px 44px -22px rgba(107,77,34,.18);
}
.gcard:hover::before { transform: scaleX(1); }
.gcard__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-tint);
  border: 1px solid rgba(184,136,75,.25);
  color: var(--gold-3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.gcard h4 {
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.gcard p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* =====================================================
   SHOWCASE
   ===================================================== */
.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.showcase__copy .section__title { text-align: left; }
.showcase__copy .section__head { text-align: left; }
.showcase__list {
  margin: 28px 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.showcase__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  text-shadow: 0 1px 1px rgba(107,77,34,.4);
}

/* Devices — light frames */
.showcase__visual {
  position: relative;
  perspective: 1400px;
}
.device--laptop {
  width: 100%;
  background: #fff;
  border-radius: 12px 12px 6px 6px;
  padding: 12px;
  box-shadow:
    0 50px 100px -25px rgba(107,77,34,.25),
    0 30px 60px -30px rgba(107,77,34,.15);
  border: 1px solid var(--line-strong);
  position: relative;
}
.device--laptop .device__screen {
  background: var(--bg-2);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.device--laptop .device__base {
  position: absolute;
  bottom: -10px; left: -8%; right: -8%;
  height: 12px;
  background: linear-gradient(180deg, #e9e0cd, #d6c9ad);
  border-radius: 0 0 12px 12px;
}

.dash {
  display: grid;
  grid-template-columns: 140px 1fr;
  height: 100%;
  font-size: 11px;
}
.dash__sb {
  background: linear-gradient(180deg, #fff, var(--bg-2));
  color: var(--ink);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--line);
}
.dash__brand {
  font-size: 13px;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold-3);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.dash__brand span {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--gold-grad);
  color: #fff;
  font-family: var(--f-script);
  font-size: 16px;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal;
  text-shadow: 0 1px 1px rgba(107,77,34,.3);
}
.dash__nav-item {
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 11px;
}
.dash__nav-item.active {
  background: var(--gold-tint);
  color: var(--gold-3);
  border-left: 2px solid var(--gold-1);
  padding-left: 8px;
  font-weight: 500;
}

.dash__main { padding: 14px 16px; color: var(--ink); background: #fff; }
.dash__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.dash__top h5 {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 500;
}
.dash__date { font-size: 10px; color: var(--muted); }

.dash__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 14px;
}
.dash__kpi {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
}
.dash__kpi span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.dash__kpi b {
  display: block;
  font-family: var(--f-serif);
  font-size: 16px;
  margin-top: 2px;
  color: var(--ink);
}

.dash__list { display: flex; flex-direction: column; gap: 4px; }
.dash__item {
  display: grid;
  grid-template-columns: 44px 1fr 60px 60px;
  gap: 8px;
  padding: 7px 8px;
  background: var(--bg-2);
  border-radius: 6px;
  border: 1px solid var(--line);
  font-size: 11px;
  align-items: center;
}
.dash__t { color: var(--gold-3); font-family: ui-monospace, monospace; font-weight: 600; }
.dash__n { color: var(--ink-2); }
.dash__p { color: var(--muted); font-size: 10px; }
.dash__price { text-align: right; color: var(--gold-3); font-weight: 600; }

/* Phone device — light frame */
.device--phone {
  position: absolute;
  bottom: -50px; right: -50px;
  width: 220px;
  height: 440px;
  background: #fff;
  border-radius: 30px;
  padding: 8px;
  box-shadow:
    0 40px 80px -25px rgba(107,77,34,.3),
    0 20px 40px -20px rgba(107,77,34,.15);
  border: 1px solid var(--line-strong);
}
.device--phone .device__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 2;
}
.device--phone .device__screen {
  background: var(--bg-2);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
}
.phone {
  padding: 40px 16px 16px;
  height: 100%;
  display: flex; flex-direction: column; gap: 10px;
}
.phone__top { padding: 8px 4px; }
.phone__hi {
  font-family: var(--f-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 2px;
}
.phone__sub { font-size: 11px; color: var(--muted); }

.phone__next {
  display: flex; align-items: center; gap: 12px;
  background: var(--gold-grad);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  margin-top: 6px;
  text-shadow: 0 1px 1px rgba(107,77,34,.25);
  box-shadow: 0 8px 20px -8px rgba(184,136,75,.5);
}
.phone__next b { display: block; font-size: 13px; }
.phone__next span { display: block; font-size: 10px; opacity: .85; }
.phone__time {
  font-family: var(--f-serif);
  font-size: 22px;
  color: #fff;
  font-style: italic;
}

.phone__row {
  display: flex; justify-content: space-between;
  font-size: 12px;
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.phone__row span:first-child { color: var(--gold-3); font-family: ui-monospace, monospace; font-weight: 600; }

/* =====================================================
   TESTIMONIALS — light cards
   ===================================================== */
.testimonials { background: var(--bg-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  margin: 0;
  transition: all .3s var(--ease);
}
.testi:hover {
  border-color: rgba(184,136,75,.3);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -22px rgba(107,77,34,.18);
}
.quote-mark {
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--f-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--gold-1);
  opacity: .3;
  pointer-events: none;
}
.testi blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.testi figcaption {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 1px rgba(107,77,34,.4);
}
.testi figcaption b { display: block; font-size: 14px; color: var(--ink); font-weight: 500; }
.testi figcaption span { font-size: 12px; color: var(--muted); }

/* =====================================================
   PRICING
   ===================================================== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all .3s var(--ease);
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -25px rgba(107,77,34,.18);
}
.plan h3 {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.plan__price {
  font-family: var(--f-serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin: 6px 0 12px;
  letter-spacing: -0.02em;
}
.plan__price span {
  font-size: 0.5em;
  vertical-align: top;
  margin-right: 4px;
  color: var(--gold-3);
}
.plan__price small {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--f-sans);
  font-weight: 400;
  margin-left: 4px;
}
.plan__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
  min-height: 42px;
}
.plan ul {
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.plan li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--gold-1);
  border-bottom: 1.5px solid var(--gold-1);
  transform: rotate(-45deg);
}
.plan .btn { width: 100%; justify-content: center; }

/* Featured plan — gold-tinted instead of dark brown */
.plan--featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.95)),
    var(--gold-grad);
  background-blend-mode: normal;
  border: 1px solid rgba(184,136,75,.4);
  transform: translateY(-12px);
  box-shadow:
    0 40px 80px -25px rgba(184,136,75,.35),
    0 0 0 4px rgba(232,199,122,.18);
}
.plan--featured::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  opacity: .4;
}
.plan--featured:hover { transform: translateY(-15px); }
.plan__badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(107,77,34,.3);
  box-shadow: 0 8px 16px -6px rgba(184,136,75,.45);
}

/* =====================================================
   CTA BANNER — gold-tinted, premium accent
   ===================================================== */
.cta-banner {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(232,199,122,.35), transparent 60%),
    linear-gradient(135deg, #fff 0%, var(--bg-2) 100%);
  border: 1px solid rgba(184,136,75,.25);
  border-radius: var(--radius-lg);
  padding: 60px 72px;
  box-shadow:
    0 40px 80px -30px rgba(184,136,75,.3),
    0 0 0 6px rgba(232,199,122,.1);
}
.cta-banner__deco {
  font-family: var(--f-script);
  line-height: 0.8;
  position: relative;
  color: transparent;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(184,136,75,.4));
}
.cta-banner__deco::after {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(184,136,75,.2), transparent 60%);
  border-radius: 50%;
  z-index: -1;
}
.cta-banner__title {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 12px 0 14px;
  color: var(--ink);
}
.cta-banner__title em {
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-banner__sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 540px;
  line-height: 1.6;
}
.cta-banner__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   FAQ
   ===================================================== */
.faq__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq__list {
  display: flex; flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.faq__item:hover { border-color: rgba(184,136,75,.3); }
.faq__item[open] {
  border-color: rgba(184,136,75,.4);
  box-shadow: 0 12px 30px -15px rgba(107,77,34,.15);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--f-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-3);
  width: 28px; height: 28px;
  border: 1px solid rgba(184,136,75,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  content: '−';
  background: var(--gold-grad);
  color: #fff;
  border-color: transparent;
  transform: rotate(180deg);
}
.faq__body {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: -2px;
}

/* =====================================================
   FOOTER — dark brown (matches logo background)
   ===================================================== */
.footer {
  background: var(--surface-dark);
  color: var(--on-dark-muted);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-on-dark);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,136,75,.35), transparent);
}
.footer .brand__soft { color: var(--gold-3); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer__brand .brand { margin-bottom: 16px; }
.footer__tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--on-dark-soft);
  margin: 0 0 22px;
  max-width: 280px;
  line-height: 1.6;
}
.footer__tag em {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.footer__social {
  display: flex; gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-on-dark-strong);
  background: rgba(248,243,234,.04);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--on-dark-muted);
  transition: all .25s var(--ease);
}
.footer__social a:hover {
  color: var(--gold-2);
  border-color: rgba(184,136,75,.5);
  background: rgba(184,136,75,.12);
}

.footer__col h6 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 14px;
  color: var(--on-dark-muted);
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--gold-2); }
.footer__addr {
  padding-top: 6px !important;
  opacity: .9;
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--on-dark-soft) !important;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: var(--on-dark-faint);
  flex-wrap: wrap; gap: 12px;
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal a { transition: color .2s var(--ease); }
.footer__legal a:hover { color: var(--gold-2); }

/* =====================================================
   REVEAL (scroll animations)
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 80px; }
  .hero__visual { max-width: 540px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(3,1fr); row-gap: 36px; }
  .features-main { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .grid-features { grid-template-columns: repeat(3,1fr); }
  .showcase__inner { grid-template-columns: 1fr; gap: 60px; }
  .device--phone { right: 20px; bottom: -40px; transform: scale(.85); }
  .testi-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-2px); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { grid-template-columns: 1fr; padding: 48px 36px; gap: 24px; }
  .cta-banner__deco { display: none; }
}

@media (max-width: 1100px) {
  .util__hide-md { display: none !important; }
  .util__inner { gap: 12px; }
  .nav__inner { gap: 24px; padding: 24px 20px 20px; }
  .nav__menu { gap: 22px; }
  .nav__menu a { font-size: 16px; }
  .nav__cluster .icon-btn { display: none; }
  .nav .brand__arna { font-size: 54px; }
  .nav .brand__soft { font-size: 24px; }
}

@media (max-width: 880px) {
  .nav__inner {
    flex-wrap: wrap;
    row-gap: 0;
    align-items: center;
  }
  .nav__logo { order: 1; }
  .nav__cluster {
    order: 2;
    margin-left: auto;
  }
  .nav__burger {
    display: flex;
    margin-left: 0;
    order: 3;
  }
  .nav.menu-open .nav__burger {
    margin-left: auto;
  }

  /* Restore search on small screens (hidden at 1100px) */
  .nav__cluster .icon-btn {
    display: inline-flex;
  }

  .nav__menu {
    order: 4;
    display: none;
    flex-basis: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .nav.menu-open .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 20px 20px max(20px, env(safe-area-inset-bottom));
    background: var(--dusk-1);
    border-top: 1px solid var(--dusk-rule-soft);
    box-shadow: 0 16px 40px -15px rgba(0, 0, 0, 0.6);
    max-height: min(85vh, 560px);
    overflow-x: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.menu-open .nav__menu a {
    white-space: normal;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 10px 8px;
    box-sizing: border-box;
  }

  .nav.menu-open .nav__menu a.has-caret {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .nav.menu-open .nav__cluster {
    order: 5;
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    padding: 14px 24px 18px;
    box-sizing: border-box;
    background: var(--dusk-1);
    border-top: 1px solid var(--dusk-rule-soft);
    border-bottom: 1px solid var(--dusk-rule-soft);
    box-shadow: 0 16px 40px -15px rgba(0, 0, 0, 0.6);
  }
  .nav.menu-open .nav__cluster .btn-cta {
    display: inline-flex;
  }

  .nav__cluster .btn-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 220px 0 80px; }
  .hero__title { font-size: 44px; }
  .hero__sub { font-size: 16px; }

  .nav__inner {
    padding: 16px 20px 14px;
    gap: 12px;
  }
  .nav .brand__arna { font-size: 48px; }
  .nav .brand__soft { font-size: 22px; }

  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .grid-features { grid-template-columns: repeat(2,1fr); }
  .strip-logos { gap: 28px; font-size: 16px; }
  .device--phone { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .float-card--1 { left: -16px; bottom: -16px; }
  .float-card--2 { right: -8px; top: -16px; }
}

@media (max-width: 480px) {
  .grid-features { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 36px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .testi blockquote { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
