/* ============================================================
   Flow Reception — Agency sales site
   Warm-professional · mobile-first
   Deep teal-green + warm gold + cream
   ============================================================ */

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

:root {
  --primary:      #1F6F5C;   /* Deep teal-green — brand, flow/calm */
  --primary-dark: #123F34;   /* Forest — headings, footer */
  --primary-light:#2C8C74;   /* Hover */
  --gold:         #E2A82E;   /* Warm gold — CTAs, accents */
  --gold-dark:    #B5821A;
  --cream:        #FBF8F3;   /* Main bg */
  --bg-soft:      #F2EDE3;   /* Alt section bg */
  --bg-warm:      #EAE2D3;
  --text:         #20211E;   /* Body text */
  --text-light:   #5C6159;   /* Secondary */
  --white:        #ffffff;
  --line:         #E3DDD0;

  --shadow-sm: 0 2px 12px rgba(18,63,52,0.06);
  --shadow:    0 6px 28px rgba(18,63,52,0.10);
  --shadow-lg: 0 16px 50px rgba(18,63,52,0.16);
  --radius:    16px;
  --radius-sm: 10px;
  --trans:     0.25s ease;
  --navbar-h:  68px;
  --maxw:      1120px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }

body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.18;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { color: var(--primary); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; font-size: .74rem; color: var(--gold-dark);
  margin-bottom: 14px;
}
.section h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-bottom: 14px; }
.lead { font-size: 1.12rem; color: var(--text-light); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: inherit; font-weight: 800; font-size: 1.02rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--primary-dark); box-shadow: var(--shadow); }
.btn--gold:hover { background: var(--gold-dark); color: var(--white); }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-light); color: var(--white); }
.btn--ghost { background: transparent; color: var(--primary-dark); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: var(--white); }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; height: var(--navbar-h); z-index: 1000;
  background: rgba(251,248,243,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 1.25rem; color: var(--primary-dark); }
.brand .logo {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1rem;
  font-family: 'Mulish', sans-serif;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--text); font-weight: 700; font-size: .96rem; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 10px 20px; font-size: .92rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: calc(var(--navbar-h) + 64px) 0 70px; background:
  radial-gradient(1100px 460px at 78% -8%, rgba(44,140,116,.16), transparent 60%),
  radial-gradient(800px 420px at 5% 8%, rgba(226,168,46,.13), transparent 55%), var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.5rem); margin-bottom: 20px; }
.hero h1 .accent { color: var(--primary); }
.hero p.lead { font-size: 1.2rem; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 18px; font-size: .95rem; color: var(--text-light); font-weight: 700; }
.hero-note b { color: var(--primary-dark); }

/* phone mockup */
.mock {
  background: var(--primary-dark); border-radius: 34px; padding: 12px;
  box-shadow: var(--shadow-lg); max-width: 320px; margin: 0 auto; position: relative;
}
.mock-screen { background: var(--cream); border-radius: 24px; overflow: hidden; }
.mock-top { background: var(--primary); color: #fff; padding: 16px 18px; }
.mock-top .m-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; }
.mock-top .m-sub { font-size: .8rem; opacity: .85; }
.mock-body { padding: 16px 16px 20px; }
.bubble { padding: 11px 14px; border-radius: 14px; margin-bottom: 10px; font-size: .9rem; max-width: 85%; }
.bubble.them { background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.bubble.me { background: var(--primary); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble.book { background: #E7F3EE; border: 1px solid #BFE0D3; color: var(--primary-dark); font-weight: 700; }

/* ---------- Trust strip ---------- */
.trust { background: var(--primary-dark); color: #fff; padding: 22px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 44px; justify-content: center; align-items: center;
  font-weight: 700; font-size: .98rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 9px; opacity: .95; }
.trust-row .tick { color: var(--gold); font-weight: 900; }

/* ---------- Problem (money math) ---------- */
.money { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.money-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.money-card .big { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--primary); font-weight: 700; }
.money-card .lbl { color: var(--text-light); font-weight: 700; margin-top: 6px; }
.money-callout { margin-top: 34px; text-align: center; font-size: 1.25rem; font-weight: 800; color: var(--primary-dark); }
.money-callout b { color: var(--gold-dark); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow-sm); }
.step .ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: #E7F3EE; font-size: 1.7rem; margin-bottom: 16px; }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 1rem; }

/* ---------- Pricing ---------- */
.price-banner { text-align: center; margin: 0 auto 40px; max-width: 720px;
  background: #E7F3EE; border: 1px solid #BFE0D3; color: var(--primary-dark);
  border-radius: 999px; padding: 12px 22px; font-weight: 800; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative; transition: transform var(--trans), box-shadow var(--trans); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier--featured { border: 2px solid var(--primary); box-shadow: var(--shadow); }
.tier .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--primary-dark); font-weight: 800; font-size: .76rem;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.tier .t-name { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--primary-dark); font-weight: 700; }
.tier .t-for { color: var(--text-light); font-size: .95rem; margin: 4px 0 18px; min-height: 2.6em; }
.tier .t-price { font-family: 'Fraunces', serif; font-size: 2.7rem; color: var(--primary); font-weight: 700; }
.tier .t-price small { font-size: .95rem; color: var(--text-light); font-weight: 700; font-family: 'Mulish', sans-serif; }
.tier .t-build { color: var(--gold-dark); font-weight: 800; font-size: .92rem; margin-top: 6px; }
.tier ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 11px; }
.tier li { display: flex; gap: 10px; font-size: .98rem; color: var(--text); }
.tier li::before { content: "✓"; color: var(--primary); font-weight: 900; flex: none; }
.tier li.muted { color: var(--text-light); }
.tier li.muted::before { content: "–"; color: var(--text-light); }
.tier .t-note { color: var(--text-light); font-size: .85rem; margin-bottom: 14px; }
.tier .t-note a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; }
.tier .btn { margin-top: auto; }
.price-foot { text-align: center; color: var(--text-light); margin-top: 28px; font-size: .98rem; }

/* ---------- Demo ---------- */
.demo-card { background: var(--primary-dark); color: #fff; border-radius: var(--radius);
  padding: 46px 40px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 38px; align-items: center; }
.demo-card h2 { color: #fff; }
.demo-card p { color: rgba(255,255,255,.85); }
.demo-actions { display: grid; gap: 12px; }
.demo-actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.demo-actions .btn--ghost:hover { background: #fff; color: var(--primary-dark); }
.demo-mini { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: 18px 20px; font-size: .92rem; color: rgba(255,255,255,.9); }

/* ---------- Proof ---------- */
.proof { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.proof-quote { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--primary-dark); line-height: 1.4; }
.proof-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); }
.proof-card .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.proof-card .who { font-weight: 800; color: var(--primary-dark); margin-top: 14px; }
.proof-card .who span { display: block; color: var(--text-light); font-weight: 600; font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--primary-dark); padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 18px; color: var(--text-light); }

/* ---------- Final CTA ---------- */
.cta-final { background:
  radial-gradient(700px 300px at 80% 0%, rgba(44,140,116,.18), transparent 60%), var(--primary-dark);
  color: #fff; text-align: center; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,.85); margin: 0 auto 28px; max-width: 560px; }

/* ---------- Footer ---------- */
.footer { background: #0E2B23; color: rgba(255,255,255,.7); padding: 44px 0 30px; font-size: .92rem; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.footer .brand { color: #fff; }
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: rgba(251,248,243,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
  padding: 10px 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .demo-card, .proof { grid-template-columns: 1fr; }
  .hero-mock { order: -1; }
  .money, .steps, .tiers { grid-template-columns: 1fr; }
  .nav-links { position: fixed; inset: var(--navbar-h) 0 auto 0; flex-direction: column;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 18px 22px; gap: 16px;
    transform: translateY(-130%); transition: transform var(--trans); }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; font-size: 1.6rem; color: var(--primary-dark); }
  .nav-cta { display: none; }
  .demo-card { padding: 34px 24px; }
  body { padding-bottom: 72px; }
  .sticky-cta { display: block; }
}
