﻿/* ============================================================
   BOOKFLOW â€” FOR SALONS  Â·  Premium software redesign
   Warm editorial SaaS Â· charcoal + gold Â· ivory body
   ============================================================ */

:root {
    /* Surfaces */
    --paper:    #FAF6F1;
    --paper-2:  #F2EBE0;
    --cream:    #FCFAF6;
    --white:    #FFFFFF;

    /* Ink */
    --ink:   #17120E;
    --ink-2: #3B332B;
    --ink-3: #6E6459;
    --ink-4: #9A9087;
    --ink-5: #C4BCB0;

    /* Lines */
    --line:      #EAE0D3;
    --line-soft: #F1EADF;
    --hair:      rgba(23,18,14,0.08);

    /* Brand â€” deep warm charcoal with plum undertone (premium, Aesop/Aman-tier) */
    --brand:      #2B1A1C;
    --brand-2:    #3B332B;
    --brand-deep: #0E0809;
    --brand-soft: #F3EDE0;
    --brand-tint: #FAF6F1;

    /* Secondary accents */
    --gold:      #B6864C;
    --gold-soft: #F0E2CB;
    --green:     #2F6B4F;
    --green-soft:#DCEEE4;

    /* Night (hero / dark sections) */
    --night:   #1B1013;
    --night-2: #2A161C;
    --night-3: #38202A;

    /* Type */
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-mono:  'JetBrains Mono', ui-monospace, monospace;

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-pill: 999px;

    /* Shadows â€” soft, layered */
    --sh-sm: 0 1px 2px rgba(23,18,14,.05), 0 2px 8px -2px rgba(23,18,14,.06);
    --sh-md: 0 4px 12px -2px rgba(23,18,14,.07), 0 12px 28px -8px rgba(23,18,14,.10);
    --sh-lg: 0 10px 24px -6px rgba(23,18,14,.10), 0 30px 60px -18px rgba(23,18,14,.18);
    --sh-brand: 0 14px 34px -10px rgba(23,18,14,.25);
    --sh-soft: 0 2px 10px rgba(23,18,14,.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--brand); color: #fff; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    background: var(--paper);
    color: var(--ink-2);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "cv11","ss01";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 680;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.08;
    text-wrap: balance;
}
p { color: var(--ink-3); }

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

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.accent { color: var(--brand); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-outline, .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-sans); font-weight: 600; font-size: 14.5px;
    letter-spacing: -0.01em; padding: 13px 22px; border-radius: var(--r-pill);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, box-shadow .35s, border-color .25s;
    white-space: nowrap; cursor: pointer; will-change: transform;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(23,18,14,.55); }
.btn-outline { background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-outline.light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); box-shadow: none; }
.btn-outline.light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.45); }
.btn-ghost { background: transparent; color: var(--ink-2); border: 1px solid transparent; padding: 11px 16px; }
.btn-ghost:hover { color: var(--brand); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-primary i, .btn-outline i { font-size: 13px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0; transition: padding .4s, background .4s, box-shadow .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
/* Default (top of page): white text on transparent header over dark hero */
.site-header .brand-name { color: #fff; }
.site-header .brand-divider { color: rgba(255,255,255,.4); }
.site-header .brand-tag { color: var(--gold); }
.site-header .header-nav a { color: rgba(255,255,255,.75); }
.site-header .header-nav a:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-header .header-cta .btn-ghost { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.2); }
.site-header .header-cta .btn-ghost:hover { color: #fff; background: rgba(255,255,255,.1); }
/* Scrolled: dark text on light glass background */
.site-header.scrolled {
    padding: 11px 0; background: rgba(250,246,241,.82);
    backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-color: var(--hair); box-shadow: var(--sh-soft);
}
.site-header.scrolled .brand-name { color: var(--ink); }
.site-header.scrolled .brand-divider { color: var(--ink-5); }
.site-header.scrolled .header-nav a { color: var(--ink-2); }
.site-header.scrolled .header-nav a:hover { color: var(--ink); background: rgba(23,18,14,.05); }
.site-header.scrolled .header-cta .btn-ghost { color: var(--ink-2); border-color: transparent; }
.site-header.scrolled .header-cta .btn-ghost:hover { color: var(--brand); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand-mark {
    position: relative; width: 34px; height: 34px; border-radius: 10px;
    background: var(--brand); color: #fff; font-weight: 800; font-size: 18px;
    display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--sh-brand);
    letter-spacing: -0.04em;
}
.brand-mark-dot { position: absolute; right: 6px; bottom: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.brand-name { font-weight: 750; font-size: 18px; color: var(--ink); letter-spacing: -0.03em; }
.brand-divider { color: var(--ink-5); font-weight: 300; }
.brand-tag { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: var(--brand); }
.header-nav { display: flex; gap: 6px; }
.header-nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 8px 14px; border-radius: var(--r-pill); transition: color .2s, background .2s; }
.header-nav a:hover { color: var(--ink); background: rgba(23,18,14,.05); }
.header-cta { display: flex; align-items: center; gap: 8px; }

/* hamburger / mobile */
.nav-toggle { display: none; position: fixed; top: 6px; right: 20px; z-index: 120; width: 44px; height: 44px; border-radius: 12px; background: var(--white); box-shadow: var(--sh-md); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle-bar { width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 110; background: rgba(250,246,241,.98); backdrop-filter: blur(16px); opacity: 0; pointer-events: none; transition: opacity .35s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 6px; padding: 96px 28px 28px; }
.mobile-link { font-size: 24px; font-weight: 650; letter-spacing: -0.03em; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mobile-menu-cta a { width: 100%; }

/* ============================================================
   HERO  â€” deep plum, light product card
   ============================================================ */
.hero {
    position: relative; padding: 168px 0 96px; overflow: hidden;
    background: radial-gradient(120% 100% at 80% -10%, var(--night-3) 0%, var(--night-2) 38%, var(--night) 72%);
    color: #fff;
    --mx: 75%; --my: 20%;
}
.hero-aurora { position: absolute; inset: 0; z-index: 0; }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.blob-1 { width: 460px; height: 460px; background: #6a1530; top: -120px; left: -80px; }
.blob-2 { width: 420px; height: 420px; background: #3a1f2c; bottom: -160px; right: 4%; opacity: .7; }
.blob-3 { width: 320px; height: 320px; background: #7a5326; top: 40%; left: 36%; opacity: .25; }
.hero-glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(420px circle at var(--mx) var(--my), rgba(201,151,90,.16), transparent 60%); transition: background .2s; }
.hero-grain { position: absolute; inset: 0; z-index: 0; opacity: .5; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 4px 4px; mix-blend-mode: overlay; }
.hero .container { position: relative; z-index: 2; }

.hero-rise { opacity: 0; transform: translateY(22px); animation: heroRise .9s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--i) * .085s); }
@keyframes heroRise { to { opacity: 1; transform: none; } }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 7px 8px 7px 14px;
    border-radius: var(--r-pill); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 26px; transition: background .25s, border-color .25s;
}
.hero-badge:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.hb-dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,.22); }
.hb-label { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .14em; color: var(--gold); }
.hb-copy { font-weight: 500; }
.hb-arrow { font-size: 11px; opacity: .7; }

.hero-title { font-size: clamp(2.8rem, 5.4vw, 4.6rem); font-weight: 700; letter-spacing: -0.045em; line-height: .98; color: #fff; margin-bottom: 24px; }
.ht-row { display: block; }
.hero-title .serif-italic { font-weight: 500; letter-spacing: -0.01em; }
.hero-title .accent { color: var(--gold); }
.hero-sub { font-size: clamp(1.05rem, 1.3vw, 1.22rem); line-height: 1.7; color: rgba(247,240,230,.66); max-width: 34rem; font-weight: 350; margin-bottom: 34px; }

.hero-ctas { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-ctas .btn-outline { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.2); box-shadow: none; }
.hero-ctas .btn-outline:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }

.hero-social { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hs-avatars { display: flex; }
.hs-av { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--night-2); margin-left: -10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; }
.hs-av:first-child { margin-left: 0; }
.hs-av.more { background: rgba(255,255,255,.12); color: #fff; }
.hs-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-bottom: 2px; }
.hs-text { font-size: 13.5px; color: rgba(255,255,255,.78); }
.hs-text strong { color: #fff; font-weight: 600; }

.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item { font-size: 13.5px; color: rgba(255,255,255,.6); display: flex; gap: 7px; min-width: 0; flex: 1 1 0; white-space: normal; }
.trust-item i { color: var(--green); }

/* Hero scroll cue */
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hs-mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.3); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.hs-wheel { width: 3px; height: 7px; border-radius: 2px; background: var(--gold); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:0;transform:translateY(-3px)} 40%{opacity:1} 100%{opacity:0;transform:translateY(7px)} }
.hs-scroll-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* ============================================================
   SECTION HEADINGS / EYEBROW
   ============================================================ */
.demo-section, .problem-section, .features-section, .how-section, .dashboard-section,
.selfservice-section, .integrations-section, .pricing-section, .faq-section, .testimonials-section,
.compare-section, .trust-section { padding: 100px 0; }

.section-head { margin-bottom: 56px; max-width: 740px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.left { text-align: left; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .2em; color: var(--brand); margin-bottom: 20px; text-transform: uppercase; }
.eyebrow.center { justify-content: center; }
.he-line { width: 30px; height: 1px; background: var(--brand); opacity: .5; }
.section-title { font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.06; color: var(--ink); }
.section-sub { font-size: 1.12rem; line-height: 1.7; color: var(--ink-3); margin-top: 18px; font-weight: 350; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; max-width: 560px; }

/* ============================================================
   STATS BAR
   ============================================================ */

/* ============================================================
   DEMO SHOWCASE
   ============================================================ */
.demo-section { background: var(--paper); }
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.demo-card { display: block; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.demo-card:hover { transform: translateY(-6px); }
.demo-frame { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-md); transition: box-shadow .4s, border-color .4s; }
.demo-card:hover .demo-frame { box-shadow: var(--sh-lg); border-color: var(--brand-soft); }
.demo-browser { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--cream); border-bottom: 1px solid var(--line-soft); }
.demo-dots { display: flex; gap: 5px; }
.demo-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.demo-dots span:first-child { background: #E5897D; } .demo-dots span:nth-child(2){ background:#E8C16A;} .demo-dots span:nth-child(3){ background:#9CC79A;}
.demo-url { flex: 1; font-size: 12px; color: var(--ink-4); display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); }
.demo-open { font-size: 11px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; opacity: 0; transition: opacity .3s; }
.demo-card:hover .demo-open { opacity: 1; }
.demo-window { height: 280px; overflow: hidden; background: var(--paper-2); }
.demo-window img { width: 100%; height: auto; display: block; transition: transform 6s cubic-bezier(.3,0,.3,1); }
.demo-card:hover .demo-window img { transform: translateY(calc(-100% + 280px)); }
.demo-card-info { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px 0; }
.demo-card-tag { font-weight: 650; font-size: 15px; color: var(--ink); letter-spacing: -0.02em; }
.demo-card-desc { font-size: 12.5px; color: var(--ink-4); }
.demo-below { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.db-item { display: flex; gap: 14px; align-items: flex-start; }
.db-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.db-title { font-weight: 650; font-size: 15.5px; color: var(--ink); }
.db-sub { font-size: 13.5px; color: var(--ink-3); margin-top: 3px; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-section { background: var(--cream); }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.problem-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--sh-sm); transition: transform .4s, box-shadow .4s; }
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.problem-num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--brand); background: var(--brand-tint); display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; opacity: 1; line-height: 1; margin-bottom: 18px; letter-spacing: .12em; }
.problem-card h3 { font-size: 20px; font-weight: 680; margin-bottom: 12px; letter-spacing: -0.03em; }
.problem-card p { font-size: 14.5px; line-height: 1.7; }
.problem-tag { margin-top: 18px; font-family: var(--font-mono); font-size: 11.5px; color: var(--brand); font-weight: 500; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section { background: var(--paper); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); transition: transform .4s, box-shadow .4s, border-color .4s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--brand-soft); }
.feature-card.span-2 { grid-column: span 2; }
.feature-card.dark { background: var(--ink); border-color: transparent; }
.feature-card.dark h3 { color: #fff; }
.feature-card.dark p { color: rgba(255,255,255,.66); }
.fc-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--brand); background: var(--brand-tint); margin-bottom: 18px; }
.fc-icon.wine { background: var(--brand); color: #fff; }
.fc-icon.green { background: #25D366; color: #fff; }
.fc-icon.amber { background: var(--gold); color: #fff; }
.feature-card h3 { font-size: 18.5px; font-weight: 680; margin-bottom: 10px; letter-spacing: -0.03em; }
.feature-card p { font-size: 14px; line-height: 1.68; }

.fc-visual.stylist-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.sl-row { display: flex; align-items: center; gap: 12px; background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 11px 13px; transition: border-color .25s, transform .25s; }
.sl-row:hover { border-color: var(--brand-soft); transform: translateX(3px); }
.sl-avatar { width: 38px; height: 38px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sl-info { flex: 1; }
.sl-name { font-weight: 650; font-size: 14px; color: var(--ink); }
.sl-spec { font-size: 12px; color: var(--ink-4); }
.sl-cta { font-size: 12.5px; font-weight: 600; color: var(--brand); }
.fc-pay { margin-top: 20px; background: var(--green-soft); border-radius: var(--r-md); padding: 18px; text-align: center; }
.fcp-amount { font-size: 30px; font-weight: 780; color: var(--green); letter-spacing: -0.03em; }
.fcp-label { font-size: 12.5px; color: var(--green); font-weight: 600; margin-top: 4px; }
.fc-chat { margin-top: 20px; }
.fc-chat-bubble { background: #DCF8C6; border-radius: 14px 14px 14px 4px; padding: 13px 15px; font-size: 13px; line-height: 1.55; color: #14310f; position: relative; }
.fc-cats { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.fc-cats span { font-size: 12.5px; font-weight: 550; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); padding: 6px 13px; border-radius: var(--r-pill); }
.fc-domain { margin-top: 20px; background: var(--ink); border-radius: var(--r-md); padding: 14px 16px; font-family: var(--font-mono); font-size: 13.5px; }
.fd-proto { color: rgba(255,255,255,.4); } .fd-name { color: var(--gold); font-weight: 500; }
.fc-memb { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fm-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 18px; position: relative; }
.fm-card.featured { background: rgba(182,134,76,.12); border-color: var(--gold); }
.fm-ribbon { position: absolute; top: -9px; right: 14px; background: var(--gold); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .1em; padding: 3px 9px; border-radius: var(--r-pill); }
.fm-name { font-size: 14px; font-weight: 650; color: #fff; }
.fm-price { font-size: 26px; font-weight: 780; color: #fff; letter-spacing: -0.03em; margin: 4px 0 12px; }
.fm-price span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.45); margin-left: 4px; text-decoration: line-through; }
.fm-card ul { display: flex; flex-direction: column; gap: 7px; }
.fm-card li { font-size: 12.5px; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 8px; }
.fm-card li i { color: var(--gold); font-size: 10px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.how-step { position: relative; padding: 32px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.how-num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--brand); background: var(--brand-tint); width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.how-step h4 { font-size: 18px; font-weight: 680; margin-bottom: 10px; letter-spacing: -0.03em; }
.how-step p { font-size: 14px; line-height: 1.68; }
.how-time { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--green); font-weight: 600; }

/* ============================================================
   DASHBOARD PREVIEW
   ============================================================ */
.dashboard-section { background: var(--paper); }
.dash-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
.df-item { text-align: left; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.df-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.df-item h4 { font-size: 16px; font-weight: 680; margin-bottom: 6px; letter-spacing: -0.03em; }
.df-item p { font-size: 13.5px; line-height: 1.6; }

/* ============================================================
   SELF SERVICE
   ============================================================ */
.selfservice-section { background: var(--cream); }
.ss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ss-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.ss-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-2); }
.ss-list li i { color: var(--green); background: var(--green-soft); width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.ss-visual { display: flex; justify-content: center; }
.ss-phone { width: 320px; background: var(--white); border-radius: 34px; border: 8px solid var(--ink); box-shadow: var(--sh-lg); overflow: hidden; }
.ss-phone-header { background: var(--ink); padding: 14px 18px 16px; }
.ss-phone-dots { display: flex; gap: 5px; margin-bottom: 10px; }
.ss-phone-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); }
.ss-phone-title { color: #fff; font-weight: 650; font-size: 15px; }
.ss-phone-content { padding: 20px; }
.ss-booking-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; }
.ss-bc-service { font-weight: 700; font-size: 16px; color: var(--ink); letter-spacing: -0.02em; }
.ss-bc-stylist { font-size: 13px; color: var(--ink-4); margin-bottom: 14px; }
.ss-bc-detail { font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; padding: 4px 0; }
.ss-bc-detail i { color: var(--brand); width: 14px; }
.ss-bc-status { margin-top: 12px; font-size: 12px; font-weight: 650; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.ss-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.ss-btn { padding: 12px; border-radius: var(--r-md); font-weight: 600; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.ss-btn.reschedule { background: var(--brand); color: #fff; }
.ss-btn.cancel { background: var(--paper-2); color: var(--ink-3); }
.ss-note { margin-top: 14px; font-size: 12px; color: var(--ink-4); line-height: 1.5; display: flex; gap: 8px; }
.ss-note i { color: var(--gold); margin-top: 2px; }

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations-section { background: var(--paper); }
.int-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.int-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--sh-sm); transition: transform .4s, box-shadow .4s; }
.int-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.int-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; margin-bottom: 18px; }
.int-icon.stripe { background: #635BFF; } .int-icon.google { background: #fff; color: #4285F4; border: 1px solid var(--line); } .int-icon.whatsapp { background: #25D366; } .int-icon.email { background: var(--gold); }
.int-card h4 { font-size: 16.5px; font-weight: 680; margin-bottom: 9px; letter-spacing: -0.03em; }
.int-card p { font-size: 13.5px; line-height: 1.62; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--cream); }
.pricing-toggle-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 36px; }
.pricing-toggle { display: inline-flex; align-items: center; gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 14px; box-shadow: var(--sh-sm); }
.toggle-option { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: var(--r-pill); opacity: .55; transition: opacity .25s; cursor: pointer; }
.toggle-option.active { opacity: 1; }
.toggle-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.toggle-title { font-weight: 650; font-size: 14px; color: var(--ink); display: block; letter-spacing: -0.02em; }
.toggle-desc { font-size: 11.5px; color: var(--ink-4); }
.toggle-switch { width: 50px; height: 28px; border-radius: var(--r-pill); background: var(--line); position: relative; cursor: pointer; transition: background .3s; flex-shrink: 0; }
.toggle-switch.active { background: var(--brand); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--sh-sm); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.toggle-switch.active .toggle-thumb { transform: translateX(22px); }
.toggle-recommended { font-size: 12.5px; color: var(--green); font-weight: 600; opacity: 0; transition: opacity .3s; }
.toggle-recommended.show { opacity: 1; }

.managed-details { margin-bottom: 30px; }
.managed-card { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 36px; }
.managed-head { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 24px; }
.managed-badge { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--gold); margin-bottom: 12px; }
.managed-head h3 { color: #fff; font-size: 24px; letter-spacing: -0.03em; margin-bottom: 8px; }
.managed-accent { color: var(--gold); font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.managed-head p { color: rgba(255,255,255,.6); font-size: 14.5px; max-width: 400px; }
.managed-head-stats { display: flex; flex-direction: column; gap: 10px; }
.managed-head-stats span { font-size: 13px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 9px; }
.managed-head-stats i { color: var(--gold); }
.managed-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.managed-features-grid li { font-size: 13.5px; color: rgba(255,255,255,.78); display: flex; align-items: center; gap: 10px; }
.managed-features-grid li i { color: var(--green); width: 16px; }
.managed-features-grid li.highlight { color: var(--gold); font-weight: 600; }
.managed-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.managed-trust span { font-size: 12.5px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; }
.managed-trust i { color: var(--gold); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.price-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: var(--sh-sm); transition: transform .4s, box-shadow .4s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.price-card.featured { border-color: var(--brand); box-shadow: 0 24px 50px -16px rgba(23,18,14,.28); transform: scale(1.025); }
.price-card.featured:hover { transform: scale(1.025) translateY(-5px); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 6px 16px; border-radius: var(--r-pill); box-shadow: var(--sh-brand); }
.price-name { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; color: var(--brand); text-transform: uppercase; }
.price-card h3 { font-size: 26px; font-weight: 720; margin: 6px 0 4px; letter-spacing: -0.04em; }
.price-tag { font-size: 13.5px; color: var(--ink-4); min-height: 38px; }
.price-amount { display: flex; align-items: baseline; gap: 2px; flex-wrap: wrap; margin: 14px 0 4px; }
.price-amount .curr { font-size: 22px; font-weight: 600; color: var(--ink); }
.price-amount .num { font-size: 46px; font-weight: 800; color: var(--ink); letter-spacing: -0.05em; line-height: 1; }
.price-amount .per { font-size: 15px; font-weight: 600; color: var(--ink-3); margin-left: 6px; align-self: flex-end; margin-bottom: 4px; }
.price-save {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}
.price-card.featured .price-save {
    background: var(--brand-tint);
    color: var(--brand);
}
.price-billed { font-size: 13px; color: var(--ink-4); margin-bottom: 20px; }
.price-billed:empty { display: none; }
.managed-line { display: flex; align-items: center; gap: 8px; }
.managed-pill { background: var(--brand-tint); color: var(--brand); font-weight: 700; font-size: 14px; padding: 4px 11px; border-radius: var(--r-pill); }
.managed-pill small { font-size: 10px; font-weight: 500; }
.managed-label { font-size: 13px; color: var(--ink-3); }
.managed-free { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 4px; }
.price-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.price-features li { font-size: 13.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-features li i { color: var(--green); font-size: 11px; margin-top: 4px; flex-shrink: 0; }
.price-features li.highlight { color: var(--gold); font-weight: 600; }
.price-features li.highlight i { color: var(--gold); }
.price-card .btn-primary, .price-card .btn-outline { width: 100%; }

/* ============================================================
   TESTIMONIALS (new)
   ============================================================ */
.testimonials-section { background: var(--paper); }
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tst-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: transform .4s, box-shadow .4s; }
.tst-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.tst-card.feature { grid-column: span 2; background: var(--ink); }
.tst-card.feature .tst-quote, .tst-card.feature .tst-name { color: #fff; }
.tst-card.feature .tst-role { color: rgba(255,255,255,.5); }
.tst-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 16px; }
.tst-quote { font-family: var(--font-serif); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--ink); flex: 1; letter-spacing: -0.01em; }
.tst-card.feature .tst-quote { font-size: 26px; }
.tst-foot { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.tst-card.feature .tst-foot { border-color: rgba(255,255,255,.12); }
.tst-av { width: 44px; height: 44px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.tst-name { font-weight: 650; font-size: 14.5px; color: var(--ink); }
.tst-role { font-size: 12.5px; color: var(--ink-4); }

/* ============================================================
   COMPARE (new)
   ============================================================ */
.compare-section { background: var(--cream); }
.compare-table { max-width: 920px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.cmp-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; padding: 18px 26px; border-top: 1px solid var(--line-soft); }
.cmp-row:first-child { border-top: 0; }
.cmp-row.head { background: var(--cream); padding: 20px 26px; }
.cmp-row.head > div { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.cmp-feature { font-size: 14.5px; font-weight: 550; color: var(--ink); }
.cmp-them { text-align: center; color: var(--ink-4); font-size: 14px; }
.cmp-us { text-align: center; color: var(--green); font-weight: 600; font-size: 14px; }
.cmp-head-us { color: var(--brand); }
.cmp-us i { color: var(--green); }
.cmp-them i { color: var(--ink-5); }

/* ============================================================
   TRUST / SECURITY (new)
   ============================================================ */
.trust-section { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.trust-card { text-align: center; padding: 28px 20px; }
.trust-ic { width: 54px; height: 54px; border-radius: 16px; background: var(--brand-tint); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.trust-card h4 { font-size: 16px; font-weight: 680; margin-bottom: 8px; letter-spacing: -0.03em; }
.trust-card p { font-size: 13.5px; line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream); }
.faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.faq-item.is-open { border-color: var(--brand-soft); box-shadow: var(--sh-sm); }
.faq-item .acc-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    letter-spacing: -0.02em;
}
.faq-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; transition: transform .3s, background .3s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-body {
    max-height: 0;
    overflow: hidden;
}
.faq-body-inner {
    padding: 0 24px 22px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink-3);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 110px 0; background: radial-gradient(120% 120% at 50% 0%, var(--night-3), var(--night-2) 45%, var(--night)); color: #fff; }
.cta-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-title { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 720; letter-spacing: -0.045em; line-height: 1.05; color: #fff; }
.cta-title .serif-italic { color: var(--gold); }
.cta-sub { font-size: 1.15rem; color: rgba(255,255,255,.65); margin: 20px auto 32px; max-width: 460px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-fine { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.cta-fine span { font-size: 13.5px; color: rgba(255,255,255,.55); display: inline-flex; align-items: center; gap: 7px; }
.cta-fine i { color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name { color: #fff; } .footer-brand .brand-divider { color: rgba(255,255,255,.3); }
.footer-tagline { font-size: 14.5px; color: rgba(255,255,255,.5); margin-top: 16px; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.fl-group h6 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.fl-group a { display: block; font-size: 14px; color: rgba(255,255,255,.7); padding: 5px 0; transition: color .2s; }
.fl-group a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.45); }

/* ============================================================
   REVEAL â€” premium scroll animations
   Variants: .reveal (default up), .reveal-left, .reveal-right,
             .reveal-scale, .reveal-blur
   Stagger via --reveal-i (set by JS) â€” capped at 8 steps
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(0);
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s cubic-bezier(.2,.7,.2,1);
    transition-delay: calc(min(var(--reveal-i, 0), 8) * 70ms); will-change: opacity, transform; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); transition-delay: calc(min(var(--reveal-i, 0), 8) * 70ms); will-change: opacity, transform; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); transition-delay: calc(min(var(--reveal-i, 0), 8) * 70ms); will-change: opacity, transform; }
.reveal-scale { opacity: 0; transform: scale(.94);       transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); transition-delay: calc(min(var(--reveal-i, 0), 8) * 70ms); will-change: opacity, transform; }
.reveal-blur  { opacity: 0; transform: translateY(20px); filter: blur(10px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s cubic-bezier(.2,.7,.2,1); transition-delay: calc(min(var(--reveal-i, 0), 8) * 70ms); will-change: opacity, transform, filter; }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible,
.reveal-scale.is-visible, .reveal-blur.is-visible { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur { opacity: 1; transform: none; filter: none; transition: none; }
    .hero-rise { animation: none; opacity: 1; transform: none; }
}
/* Disable reveal transforms on mobile to avoid jank + remember scroll position weirdly */
@media (max-width: 560px) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur { transition-duration: .55s; transform: translateY(18px); }
    .reveal-left, .reveal-right { transform: translateY(18px); }
    .reveal-scale { transform: scale(.98); }
    .reveal-blur { filter: none; transform: translateY(14px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .feature-card.span-2 { grid-column: span 3; }
    .dash-features, .trust-grid, .int-grid { grid-template-columns: repeat(2,1fr); }
    .tst-card.feature { grid-column: span 3; }
}
@media (max-width: 860px) {
    .header-nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: block; }
    .demo-grid, .problem-grid, .features-grid, .how-grid, .tst-grid { grid-template-columns: 1fr; }
    .feature-card.span-2 { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; } .price-card.featured:hover { transform: translateY(-5px); }
    .ss-grid { grid-template-columns: 1fr; gap: 40px; }
    .demo-below { grid-template-columns: 1fr; }
    .managed-features-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .cmp-row { grid-template-columns: 1.4fr .8fr .8fr; padding: 16px; }
    .tst-card.feature { grid-column: span 1; } .tst-card.feature .tst-quote { font-size: 21px; }
    /* Pricing toggle â€” phone layout (the new clean version, applied for all phone widths) */
    .pricing-toggle-wrap { gap: 10px; margin-bottom: 28px; }
    .pricing-toggle { display: flex; flex-direction: column; gap: 8px; width: 100%;
                      max-width: 380px; margin: 0 auto; padding: 0;
                      background: transparent; border: 0; border-radius: 0; box-shadow: none; }
    .pricing-toggle .toggle-option { width: 100%; padding: 14px 16px;
                      background: var(--white); border: 1px solid var(--line);
                      border-radius: 14px; opacity: 1; transition: all .2s;
                      display: flex; align-items: center; gap: 12px; cursor: pointer; }
    .pricing-toggle .toggle-option.active { background: var(--brand-tint); border-color: var(--brand); }
    .pricing-toggle .toggle-icon { width: 38px; height: 38px; border-radius: 11px; }
    .pricing-toggle .toggle-label { flex: 1; min-width: 0; }
    .pricing-toggle .toggle-title { font-size: 14.5px; font-weight: 650; display: block; }
    .pricing-toggle .toggle-desc { display: block; font-size: 11.5px; color: var(--ink-4); margin-top: 1px; }
    .pricing-toggle .toggle-switch { display: none; }
    .pricing-toggle .toggle-option.active::after {
        content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
        font-size: 13px; color: var(--brand);
        width: 28px; height: 28px; border-radius: 50%;
        background: #fff; border: 1px solid var(--brand-soft);
        display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .toggle-recommended { text-align: center; margin-top: 4px; }
}
@media (max-width: 560px) {
    .hero { padding: 130px 0 70px; }
    .dash-features, .int-grid, .trust-grid { grid-template-columns: 1fr; }
    .demo-section, .problem-section, .features-section, .how-section, .dashboard-section, .selfservice-section, .integrations-section, .pricing-section, .faq-section, .testimonials-section, .compare-section, .trust-section { padding: 50px 0; }
    .container { padding: 0 20px; }
}

/* ============================================================
   HERO â€” REFERENCE REDESIGN (dual mockups + feature row + trust bar)
   ============================================================ */

/* Warm "lit salon" ambiance on the right side of the hero */
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(540px 440px at 90% 16%, rgba(216,164,96,.20), transparent 60%),
        radial-gradient(720px 540px at 102% 64%, rgba(122,42,56,.20), transparent 66%);
}
.hero { padding-bottom: 76px; }
.hero .container { z-index: 3; }

/* Eyebrow: sparkle + uppercase gold tagline pill */
.hero-badge { gap: 9px; padding: 8px 16px; background: rgba(255,255,255,.04); border-color: rgba(216,170,110,.30); }
.hero-badge:hover { background: rgba(255,255,255,.07); border-color: rgba(216,170,110,.46); }

/* Headline: sans for roman lines, serif italic for gold accent */
.hero-title .ht-roman { font-family: var(--font-sans); font-style: normal; font-weight: 700; letter-spacing: -0.035em; color: #FBF4EA; }
.hero-title .serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: #F3E9DA; }
.ht-gold {
    background: linear-gradient(96deg, #F0D49A 0%, #D8AC63 44%, #B8863F 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   HERO â€” REFERENCE REDESIGN (dual mockups + feature row + trust bar)
   ============================================================ */
.hero { padding: 132px 0 56px; }
.hero .container { position: relative; z-index: 2; }
.hb-spark { display: inline-flex; align-items: center; color: var(--gold); }
.hb-spark svg { width: 13px; height: 13px; display: block; }

.hero-title { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; font-size: clamp(2.9rem, 5vw, 4.5rem); margin-bottom: 26px; }

.hx-trustbar { margin-top: 50px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
    padding: 20px 28px; border-radius: 18px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); }
.hx-tb-left { display: flex; align-items: center; gap: 14px; }
.hx-tb-seal { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 17px;
    color: var(--gold); background: rgba(201,162,75,.10); border: 1px solid rgba(201,162,75,.25); }
.hx-tb-left-txt strong { display: block; font-size: 14.5px; color: #F4ECDD; }
.hx-tb-left-txt span { font-size: 12.5px; color: rgba(255,255,255,.5); }
.hx-tb-badges { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hx-tb-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78); }
.hx-tb-item i { color: var(--gold); font-size: 14px; }


/* ============================================================
   HERO â€” LIGHT PREMIUM (warm, not pure white) â€” overrides the dark hero
   ============================================================ */
.hero { background: radial-gradient(135% 108% at 82% -8%, #FFFDF8 0%, var(--paper) 46%, var(--paper-2) 100%); color: var(--ink-2); }
.hero::after { background: radial-gradient(540px 440px at 84% 8%, rgba(182,134,76,.14), transparent 60%); }
.hero-aurora, .hero-glow, .hero-grain { display: none; }

/* eyebrow â†’ light pill */
.hero-badge { background: rgba(255,255,255,.78); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.hero-badge:hover { background: #fff; border-color: var(--gold-soft); }
.hb-copy { color: var(--ink-2); }
.hb-label { color: var(--gold); }

/* headline + sub â†’ dark text (gold accent line keeps its gradient) */
.hero-title, .hero-title .ht-roman, .hero-title .serif-italic { color: var(--ink); }
.hero-sub { color: var(--ink-3); }

/* outline CTA â†’ light */
.hero-ctas .btn-outline { background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.hero-ctas .btn-outline:hover { background: var(--white); border-color: var(--ink); }

/* trust bar â†’ light */
.hx-trustbar { background: rgba(255,255,255,.66); border-color: var(--line); box-shadow: var(--sh-sm); }
.hx-tb-left-txt strong { color: var(--ink); }
.hx-tb-left-txt span { color: var(--ink-4); }
.hx-tb-item { color: var(--ink-2); }


/* header â†’ dark text over the light hero (top state) */
.site-header:not(.scrolled) .brand-name { color: var(--ink); }
.site-header:not(.scrolled) .brand-divider { color: var(--ink-5); }
.site-header:not(.scrolled) .brand-tag { color: var(--brand); }
.site-header:not(.scrolled) .header-nav a { color: var(--ink-2); }
.site-header:not(.scrolled) .header-nav a:hover { color: var(--ink); background: rgba(23,18,14,.05); }
.site-header:not(.scrolled) .header-cta .btn-ghost { color: var(--ink-2); border-color: var(--line); }
.site-header:not(.scrolled) .header-cta .btn-ghost:hover { color: var(--brand); background: rgba(23,18,14,.04); }

/* gold accent text â†’ richer/darker so it reads on the light hero */
.ht-gold {
    background: linear-gradient(95deg, #BE9148 0%, #9C7330 50%, #7A5722 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   MOBILE REDESIGN â€” premium, spacious, thumb-first
   Breakpoints: 1024 (tablet), 768 (phone), 560 (small phone), 400 (tiny)
   ============================================================ */

/* â€”â€” Tablet (â‰¤1024px) â€”â€” */
@media (max-width: 1024px) {
    .hero { padding: 124px 0 56px; }
    .hero-badge { margin-bottom: 18px; }
    .hero-title { font-size: clamp(2.4rem, 7vw, 3.6rem); margin-bottom: 20px; }
    .hero-sub { font-size: clamp(1.02rem, 2.4vw, 1.18rem); max-width: 100%; margin-bottom: 26px; }
    .hx-trustbar { padding: 18px 20px; gap: 16px; justify-content: center; text-align: center; }
    .hx-tb-left { justify-content: center; }
    .hx-tb-badges { justify-content: center; gap: 14px 22px; }
    .section-head { margin-bottom: 36px; }
    .section-title { font-size: clamp(1.75rem, 4.6vw, 2.6rem); }
    .demo-window { height: 220px; }
    .demo-window img { height: 100%; object-fit: cover; object-position: top; }
    .demo-card:hover .demo-window img { transform: none; }
    .dash-features { gap: 14px; }
    .df-item { padding: 20px; }
}

/* â€”â€” Phone (â‰¤768px) â€”â€” */
@media (max-width: 768px) {
    /* Compact sticky header */
    .site-header { padding: 12px 0; }
    .site-header.scrolled { padding: 9px 0; }
    .brand-name { font-size: 16px; }
    .brand-tag { font-size: 15px; }
    .brand-divider { display: none; }
    .brand-tag { display: none; }
    /* Sized + centered against the 49px compact header bar (was 42px at top:10 — poked out below) */
    .nav-toggle { top: 7px; right: 14px; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(23,18,14,.08); gap: 4px; }
    .nav-toggle-bar { width: 15px; }
    .nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .nav-toggle.open ~ .mobile-menu .mobile-link { font-size: 22px; }
    .mobile-menu-inner { padding: 84px 22px 28px; }
    .mobile-link { font-size: 22px; padding: 16px 0; }
    .mobile-menu-cta { gap: 10px; margin-top: 18px; }
    .mobile-menu-cta a { width: 100%; padding: 14px 18px; font-size: 14.5px; }

    /* Hero */
    .hero { padding: 116px 0 60px; }
    .hero-title { font-size: clamp(2.25rem, 8vw, 3.2rem); line-height: 1.04; margin-bottom: 22px; }
    .hero-sub { font-size: 1rem; line-height: 1.65; margin-bottom: 26px; }
    .hero-ctas { gap: 10px; margin-bottom: 28px; }
    .hero-ctas .btn-lg, .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; padding: 14px 22px; font-size: 14.5px; }

    /* Trust bar â€” stacked, centered */
    .hx-trustbar { flex-direction: column; gap: 18px; padding: 22px 18px; text-align: center; }
    .hx-tb-left { flex-direction: column; gap: 10px; }
    .hx-tb-seal { width: 40px; height: 40px; font-size: 15px; }
    .hx-tb-left-txt strong { font-size: 14px; }
    .hx-tb-left-txt span { font-size: 11.5px; }
    .hx-tb-badges { gap: 12px 18px; justify-content: center; }
    .hx-tb-item { font-size: 11.5px; gap: 6px; }


    /* Section headings â€” tighten */
    .demo-section, .problem-section, .features-section, .how-section,
    .dashboard-section, .selfservice-section, .integrations-section,
    .pricing-section, .faq-section, .compare-section, .trust-section,
    .testimonials-section { padding: 56px 0; }
    .section-head { margin-bottom: 32px; }
    .section-head.center { max-width: 100%; }
    .section-title { font-size: clamp(1.9rem, 7.4vw, 2.5rem); line-height: 1.12; letter-spacing: -0.035em; }
    /* Let long two-part titles wrap naturally on phones instead of forcing awkward mid-phrase breaks */
    .section-title br { display: none; }
    .section-sub { font-size: 1rem; margin-top: 14px; }
    .eyebrow { font-size: 10.5px; letter-spacing: .18em; gap: 8px; margin-bottom: 14px; }
    .he-line { width: 20px; }

    /* Demo grid */
    .demo-grid { gap: 18px; }
    .demo-card-info { padding: 14px 2px 0; }
    .demo-card-tag { font-size: 14px; }
    .demo-card-desc { font-size: 12px; }
    .demo-below { gap: 18px; margin-top: 32px; padding-top: 28px; }
    .db-item { gap: 12px; }
    .db-icon { width: 38px; height: 38px; font-size: 15px; }
    .db-title { font-size: 14px; }
    .db-sub { font-size: 12.5px; }

    /* Problem cards */
    .problem-grid { gap: 16px; }
    .problem-card { padding: 24px 22px; border-radius: 18px; }
    .problem-num { width: 36px; height: 36px; font-size: 12px; margin-bottom: 14px; }
    .problem-card h3 { font-size: 18px; }
    .problem-card p { font-size: 14px; }

    /* Features */
    .features-grid { gap: 16px; }
    .feature-card { padding: 24px 22px; border-radius: 18px; }
    .fc-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 14px; }
    .feature-card h3 { font-size: 17px; }
    .feature-card p { font-size: 13.5px; }
    .fc-memb { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }

    /* How it works */
    .how-grid { gap: 14px; }
    .how-step { padding: 24px 22px; }
    .how-num { width: 38px; height: 38px; font-size: 12px; }
    .how-step h4 { font-size: 17px; }
    .how-step p { font-size: 13.5px; }

    /* Self service phone */
    .ss-grid { gap: 36px; }
    .ss-phone { width: 280px; border-width: 6px; border-radius: 28px; }
    .ss-phone-content { padding: 16px; }
    .ss-bc-service { font-size: 15px; }
    .ss-list li { font-size: 14px; }

    /* Integrations */
    .int-grid { gap: 14px; }
    .int-card { padding: 22px 20px; }
    .int-icon { width: 46px; height: 46px; font-size: 21px; }
    .int-card h4 { font-size: 16px; }
    .int-card p { font-size: 13px; }

    /* Pricing toggle â€” two clickable pill rows, switch hidden (the rows ARE the switch) */
    .pricing-toggle-wrap { gap: 10px; margin-bottom: 28px; }
    .pricing-toggle { display: flex; flex-direction: column; gap: 8px;
                      width: 100%; max-width: 360px; margin: 0 auto;
                      padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
    .pricing-toggle .toggle-option { width: 100%; padding: 14px 16px;
                      background: var(--white); border: 1px solid var(--line);
                      border-radius: 14px; opacity: 1; transition: all .2s;
                      display: flex; align-items: center; gap: 12px; cursor: pointer; }
    .pricing-toggle .toggle-option.active { background: var(--brand-tint); border-color: var(--brand); }
    .pricing-toggle .toggle-icon { width: 38px; height: 38px; border-radius: 11px; }
    .pricing-toggle .toggle-label { flex: 1; min-width: 0; }
    .pricing-toggle .toggle-title { font-size: 14.5px; display: block; }
    .pricing-toggle .toggle-desc { display: block; font-size: 11.5px; color: var(--ink-4); margin-top: 1px; }
    /* Hide the standalone switch on phone â€” tapping either pill is the toggle action */
    .pricing-toggle .toggle-switch { display: none; }
    /* Check-mark badge on the active pill */
    .pricing-toggle .toggle-option.active::after {
        content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
        font-size: 13px; color: var(--brand);
        width: 28px; height: 28px; border-radius: 50%;
        background: #fff; border: 1px solid var(--brand-soft);
        display: inline-flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .toggle-recommended { text-align: center; margin-top: 4px; font-size: 12px; }
    .managed-card { padding: 24px; border-radius: 22px; }
    .managed-head h3 { font-size: 20px; }
    /* Tighten the empty space between Managed card and Pricing cards on mobile */
    .managed-details { margin-bottom: 14px; }
    .managed-features-grid { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; margin-top: 14px; }
    .managed-features-grid li { font-size: 13px; }
    .managed-trust { margin-top: 14px; padding-top: 14px; }
    /* The yellow limited-time banner inside pricing-grid: kill its inline 32px bottom margin on phone */
    .pricing-grid > .reveal[style*="grid-column"] { margin-bottom: 10px! important; padding: 14px 18px! important; }
    .pricing-grid { gap: 18px; }
    .price-card { padding: 26px 22px; border-radius: 22px; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
    .price-card h3 { font-size: 22px; }
    .price-amount .num { font-size: 40px; }

    /* Compare table â€” convert to stacked cards on phone */
    .compare-table { border-radius: 18px; }
    .cmp-row { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 18px 20px;
               border-top: 1px solid var(--line-soft); position: relative; }
    .cmp-row.head { display: none; }
    .cmp-row::before { content: attr(data-feature); display: block; font-weight: 700; font-size: 13px;
                       color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
    .cmp-feature { display: none; }
    .cmp-them, .cmp-us { text-align: left; padding: 9px 13px; border-radius: 10px; font-size: 13.5px; line-height: 1.5; }
    .cmp-them { background: var(--paper-2); color: var(--ink-3); }
    .cmp-us { background: var(--green-soft); color: var(--green); font-weight: 600; }
    /* Kicker labels on their own line so the cell text reads as a clean sentence */
    .cmp-them::before, .cmp-us::before { display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
    .cmp-them::before { content: "Rented apps"; color: var(--ink-4); }
    .cmp-us::before { content: "BookFlow"; color: var(--brand); }
 }
 
 /* â€”â€” Small phone (â‰¤560px) â€”â€” */
@media (max-width: 560px) {
    .hero { padding: 108px 0 48px; }
    .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
    .hero-sub { font-size: .98rem; }
    .hero-badge { padding: 6px 12px; font-size: 12px; margin-bottom: 16px; }
    .hb-copy { font-size: 12px; }
    .hb-label { font-size: 9px; }

    /* Header */
    .brand-mark { width: 30px; height: 30px; font-size: 16px; border-radius: 8px; }
    .brand-name { font-size: 15px; }

    .container { padding: 0 18px; }
    .demo-section, .problem-section, .features-section, .how-section,
    .dashboard-section, .selfservice-section, .integrations-section,
    .pricing-section, .faq-section, .compare-section, .trust-section,
    .testimonials-section { padding: 44px 0; }
    .section-head { margin-bottom: 28px; }
    .section-title { font-size: clamp(1.8rem, 8.4vw, 2.15rem); }
    .section-sub { font-size: .98rem; }

    .demo-window { height: 200px; }
    .dash-features { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .int-grid { grid-template-columns: 1fr; }

    /* Tighter cards */
    .problem-card, .feature-card, .how-step, .int-card, .df-item, .trust-card {
        padding: 22px 20px; border-radius: 16px;
    }
    .price-card { padding: 22px 20px; border-radius: 18px; }
    .price-card.featured { box-shadow: 0 18px 36px -16px rgba(23,18,14,.25); }

    /* Final CTA */
    .final-cta { padding: 80px 0; }
    .cta-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .cta-sub { font-size: 1rem; margin: 16px auto 26px; }
    .cta-buttons { gap: 10px; }
    .cta-buttons .btn { width: 100%; }
    .cta-fine { gap: 14px; margin-top: 22px; }
    .cta-fine span { font-size: 12.5px; }

    /* Footer */
    .site-footer { padding: 48px 0 24px; }
    .footer-inner { grid-template-columns: 1fr! important; gap: 32px; padding-bottom: 32px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
    .footer-brand { text-align: center; }
    .footer-brand .brand { justify-content: center; }
    .footer-socials { justify-content: center!important; }
    .footer-tagline { margin: 14px auto 0; max-width: 320px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding-top: 22px; font-size: 12px; }
}

/* â€”â€” Tiny phone (â‰¤400px) â€”â€” */
@media (max-width: 400px) {
    .hero-title { font-size: 1.85rem; }
    .hero-sub { font-size: .92rem; }
    .container { padding: 0 16px; }
    .hero-ctas .btn-lg, .hero-ctas .btn-primary, .hero-ctas .btn-outline { padding: 12px 16px; font-size: 13.5px; }
    .price-card { padding: 20px 18px; }
    .feature-card p, .problem-card p, .how-step p { font-size: 13px; }
    .section-title { font-size: 1.7rem; }
    .demo-card-tag { font-size: 13px; }
}

/* â€”â€” Fix demos.php responsive gaps â€”â€” */
@media (max-width: 768px) {
    .sd-hero { padding: 140px 0 80px; }
    .sd-hero h1 { font-size: clamp(34px, 9vw, 48px); max-width: 100%; }
    .sd-hero .sub { font-size: clamp(15px, 4vw, 17px); }
    .sd-hero-summary-grid { grid-template-columns: 1fr; max-width: 380px; margin: 44px auto 0; }
    .sd-sec { padding: 64px 0; }
    .sd-head { margin-bottom: 36px; }
    .sd-head h2 { font-size: clamp(28px, 7vw, 38px); }
    .sd-head p { font-size: 14.5px; }
    .sd-grid3, .sd-grid2 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 20px; }
    .sd-card { border-radius: 16px; }
    /* multi-location cards: aspect-ratio + min-height forced them wider than the phone
       (.sd prefix needed to beat demos.php's inline style block) */
    .sd .sd-ml { aspect-ratio: auto; min-height: 0; height: auto; padding: 20px 18px; }
    .sd-meta h3 { font-size: 22px; }
    .sd-admin { gap: 28px; }
    .sd-mstats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sd-mstat { padding: 12px; }
    .sd-mstat .v { font-size: 20px; }
    .sd-mrow { grid-template-columns: 1fr; gap: 12px; }
    .sd-feats { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
    .sd-feat { padding: 20px; border-radius: 14px; }
    .sd-feat h4 { font-size: 19px; }
    .sd-cta-card { padding: 48px 22px; border-radius: 20px; }
    .sd-cta-in h2 { font-size: clamp(28px, 8vw, 40px); }
    .sd-cta-in p { font-size: 15px; }
    .sd-actions { gap: 10px; }
    .sd-btn { width: 100%; justify-content: center; padding: 14px 22px; font-size: 14px; }
}
@media (max-width: 560px) {
    .sd-hero { padding: 124px 0 60px; }
    .sd-license-badge { padding: 12px 18px; }
    .sd-license-title { font-size: 10px; }
    .sd-license-desc { font-size: 12.5px; }
}

/* â€”â€” Legal pages (terms, privacy, license) â€”â€” */
@media (max-width: 768px) {
    .legal-hero { padding: 120px 0 60px; }
    .legal-hero h1 { font-size: clamp(2rem, 6vw, 2.8rem); }
    .legal-hero p { font-size: 1.05rem; }
    .legal-section { padding: 44px 0 80px; }
    .legal-content { padding: 0 4px; }
    .legal-content h2 { font-size: 22px; margin-top: 32px; }
    .legal-content p, .legal-content li { font-size: 14.5px; line-height: 1.7; }
}

/* ============================================================
   WORKS-WITH STRIP (class-based, replaces inline styles)
   ============================================================ */

/* ============================================================
   MOBILE REFINEMENTS â€” fixes from the phone-view audit
   (appended last on purpose: overrides earlier mobile rules)
   ============================================================ */
@media (max-width: 560px) {

    /* Hero rhythm: slightly tighter mockupâ†’trustbar spacing */
    .hx-trustbar { margin-top: 30px; }
}

/* Mobile menu: make the ghost "See live demo" button actually visible */
.mobile-menu .btn-ghost {
    background: var(--white); color: var(--ink);
    border: 1px solid var(--line); border-radius: var(--r-pill);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-sm);
}

/* â€”â€” Stop heavy hover transforms on touch devices (no real hover) â€”â€” */
@media (hover: none) {
    .demo-card:hover, .problem-card:hover, .feature-card:hover, .how-step:hover,
    .int-card:hover, .tst-card:hover, .price-card:hover, .trust-card:hover,
    .demo-card:hover .demo-window img, .sd-card:hover, .sd-card:hover .sd-shot img { transform: none; }
    .btn-magnetic { transform: none!important; }
}

/* â€”â€” Smooth-scroll safety on iOS â€”â€” */
@supports (-webkit-touch-callout: none) {
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
    body { -webkit-text-size-adjust: 100%; }
}

/* ============================================================
   OBJECTION SECTION â€” "5 questions salon owners ask us first"
   ============================================================ */
.objection-section { padding: 100px 0; background: var(--white); }
.objection-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.objection-row { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg);
    overflow: hidden; transition: border-color .3s, box-shadow .3s, background .3s; }
.objection-row:hover { border-color: var(--gold-soft); }
.objection-row.is-open { background: var(--white); border-color: var(--gold-soft); box-shadow: var(--sh-sm); }
.objection-q { display: flex; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer; }
.objection-num { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
    font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; color: var(--gold);
    background: var(--gold-soft); letter-spacing: .06em; }
.objection-q h4 { flex: 1; min-width: 0; font-size: 16.5px; font-weight: 650; color: var(--ink); margin: 0;
    line-height: 1.35; letter-spacing: -0.02em; }
.obj-icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--white);
    border: 1px solid var(--line); color: var(--ink-3); display: flex; align-items: center; justify-content: center;
    font-size: 11px; transition: transform .3s, background .3s, color .3s, border-color .3s; }
.objection-row.is-open .obj-icon { transform: rotate(45deg); background: var(--brand); border-color: var(--brand); color: #fff; }
.objection-a {
    max-height: 0;
    overflow: hidden;
}
.objection-a-inner {
    padding: 0 22px 20px 70px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink-3);
}
.objection-a-inner p { margin: 0; }

@media (max-width: 768px) {
    .objection-section { padding: 50px 0; }
    .objection-list { gap: 10px; }
    .objection-q { padding: 15px 16px; gap: 11px; }
    .objection-num { width: 30px; height: 30px; font-size: 10.5px; }
    .objection-q h4 { font-size: 15px; }
    .objection-a-inner { padding: 0 16px 16px 57px; font-size: 13.5px; }
}

/* ============================================================
   DARK-HERO PAGES â€” force white header text when not scrolled
   Only applies to pages with body.has-dark-hero
   (e.g. demos.php, which uses a dark hero section).
   Lines 919-926 force dark text on top-of-page header for all
   light-hero pages; this reverts that on dark-hero pages only.
   ============================================================ */
body.has-dark-hero .site-header:not(.scrolled) .brand-name { color: #fff; }
body.has-dark-hero .site-header:not(.scrolled) .brand-divider { color: rgba(255,255,255,.4); }
body.has-dark-hero .site-header:not(.scrolled) .brand-tag { color: var(--gold); }
body.has-dark-hero .site-header:not(.scrolled) .header-nav a { color: rgba(255,255,255,.82); }
body.has-dark-hero .site-header:not(.scrolled) .header-nav a:hover { color: #fff; background: rgba(255,255,255,.1); }
body.has-dark-hero .site-header:not(.scrolled) .header-cta .btn-ghost { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.22); }
body.has-dark-hero .site-header:not(.scrolled) .header-cta .btn-ghost:hover { color: #fff; background: rgba(255,255,255,.1); }



/* ============================================================
   HERO V3 - centered copy + real product dashboard (light)
   Pattern: outcome headline > one-line sub > CTA > proof row
   > full-width faithful replica of the BookFlow admin.
   ============================================================ */
.hero-v3 { padding: 138px 0 64px; }
.hero-v3::after {
    background:
        radial-gradient(640px 420px at 50% -6%, rgba(182,134,76,.13), transparent 62%),
        radial-gradient(760px 520px at 50% 88%, rgba(140,29,60,.07), transparent 66%);
}

/* - Centered copy - */
.hv3-top { max-width: 780px; margin: 0 auto; text-align: center; }
.hv3-top .hero-badge { margin-left: auto; margin-right: auto; }
.hero-v3 .hero-title { margin-bottom: 22px; }
.hero-v3 .hero-sub { margin-left: auto; margin-right: auto; max-width: 40rem; margin-bottom: 30px; }
.hero-v3 .hero-ctas { justify-content: center; margin-bottom: 22px; }

.hv3-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 24px; }
.hv3-point { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); }
.hv3-point i { font-size: 11px; color: var(--green); }

/* - Stage: glow + frame + floaters - */
.hv3-stage { position: relative; margin-top: 54px; }
.hv3-glow { position: absolute; inset: -6% -4% auto; height: 82%; z-index: 0; pointer-events: none; filter: blur(2px);
    background:
        radial-gradient(58% 62% at 50% 34%, rgba(182,134,76,.20), transparent 68%),
        radial-gradient(44% 54% at 62% 30%, rgba(140,29,60,.10), transparent 70%); }

.hd-frame { position: relative; z-index: 1; border-radius: 18px; overflow: hidden; background: #fff;
    border: 1px solid rgba(23,18,14,.10);
    box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 24px 70px -28px rgba(43,26,28,.35), 0 60px 130px -50px rgba(43,26,28,.28); }

/* Browser chrome */
.hd-chrome { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #FBF8F3; border-bottom: 1px solid var(--line-soft); }
.hd-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.hd-dot.r { background: #F26D5F; } .hd-dot.y { background: #F5BE4F; } .hd-dot.g { background: #58C26A; }
.hd-url { margin: 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 6px 18px; border-radius: 999px;
    background: #fff; border: 1px solid var(--line-soft); font-size: 12px; font-weight: 600; color: var(--ink-2); }
.hd-url i { font-size: 9px; color: var(--green); }
.hd-url-path { color: var(--ink-4); font-weight: 500; }
.hd-chrome-spacer { width: 47px; flex: none; }

/* App shell */
.hd-app { display: flex; align-items: stretch; background: #F7F8FA; }

/* Sidebar - faithful to the product's white sidebar */
.hd-side { flex: none; width: 190px; background: #fff; border-right: 1px solid #EDEFF3; padding: 16px 12px 18px; }
.hd-logo { display: flex; align-items: center; gap: 9px; padding: 2px 6px 14px; border-bottom: 1px solid #F1F3F6; margin-bottom: 12px; }
.hd-logo-tile { width: 30px; height: 30px; flex: none; border-radius: 9px; background: #8C1D3C; color: #fff; font-weight: 800; font-size: 14px; display: grid; place-items: center; }
.hd-logo-name { font-size: 12.5px; font-weight: 800; color: #0F172A; line-height: 1.15; }
.hd-logo-name em { display: block; font-style: normal; font-size: 9px; font-weight: 600; color: #94A3B8; letter-spacing: .04em; text-transform: uppercase; }
.hd-group { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #B0B7C3; padding: 10px 8px 6px; }
.hd-nav { display: flex; align-items: center; gap: 9px; padding: 7.5px 9px; border-radius: 9px; font-size: 12px; font-weight: 600; color: #64748B; }
.hd-nav i { width: 15px; font-size: 11px; text-align: center; color: #94A3B8; }
.hd-nav.active { background: rgba(140,29,60,.08); color: #8C1D3C; }
.hd-nav.active i { color: #8C1D3C; }

/* Main column */
.hd-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.hd-topbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; background: #fff; border-bottom: 1px solid #EDEFF3; }
.hd-crumb { font-size: 13px; font-weight: 800; color: #0F172A; }
.hd-top-right { display: flex; align-items: center; gap: 10px; }
.hd-search { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 10px; background: #F1F5F9; font-size: 11px; font-weight: 600; color: #94A3B8; }
.hd-bell { position: relative; width: 30px; height: 30px; border-radius: 10px; background: #F8FAFC; border: 1px solid #EDEFF3; display: grid; place-items: center; font-size: 12px; color: #64748B; }
.hd-bell-dot { position: absolute; top: 7px; right: 8px; width: 6px; height: 6px; border-radius: 50%; background: #F43F5E; border: 1.5px solid #fff; }
.hd-avatar { width: 30px; height: 30px; border-radius: 50%; background: rgba(140,29,60,.10); color: #8C1D3C; font-size: 12px; font-weight: 800; display: grid; place-items: center; }

.hd-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 14px; }

/* Brand hero band - the product's dash-hero gradient with a wine brand color */
.hd-hero { position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
    border-radius: 18px; padding: 18px 20px; color: #fff;
    background: linear-gradient(130deg, #0B1220 0%, #3F162B 62%, #691C41 100%); }
.hd-hero-decor { position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(300px 170px at 88% -30%, rgba(140,29,60,.55), transparent 72%),
        radial-gradient(230px 160px at 72% 130%, rgba(255,255,255,.07), transparent 70%); }
.hd-hero-decor::after { content: ""; position: absolute; inset: 0; opacity: .4;
    background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1.4px); background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(380px 240px at 82% 20%, #000 15%, transparent 75%);
    mask-image: radial-gradient(380px 240px at 82% 20%, #000 15%, transparent 75%); }
.hd-hero-l { position: relative; min-width: 0; }
.hd-hero-date { font-size: 9.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hd-hero-hi { margin-top: 4px; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.hd-hero-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.hd-chip { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; background: rgba(255,255,255,.10);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); padding: 5px 11px; font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.88); }
.hd-chip svg { width: 12px; height: 12px; color: rgba(255,255,255,.6); }
.hd-chip svg.mint { color: #6EE7B7; }
.hd-hero-r { position: relative; display: flex; align-items: center; gap: 8px; flex: none; }
.hd-ghost { border-radius: 10px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); padding: 7px 12px; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.92); }
.hd-cta { border-radius: 10px; background: #fff; color: #0F172A; padding: 7px 12px; font-size: 11.5px; font-weight: 800; box-shadow: 0 1px 2px rgba(15,23,42,.2); }

/* KPI stat band - one card, hairline-divided cells, 3px accent bars */
.hd-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ECEFF3; border: 1px solid #E7EAEF; border-radius: 18px; overflow: hidden; }
.hd-kpi { position: relative; background: #fff; padding: 13px 15px 14px; min-width: 0; }
.hd-kpi-bar { position: absolute; top: 0; left: 15px; right: 15px; height: 3px; border-radius: 0 0 6px 6px; }
.hd-kpi-bar.wine { background: rgba(140,29,60,.75); }
.hd-kpi-bar.mint { background: #5EEAD4; }
.hd-kpi-bar.gold { background: #E5C07B; }
.hd-kpi-bar.slate { background: #CBD5E1; }
.hd-kpi-head { display: flex; align-items: center; justify-content: space-between; }
.hd-kpi-ic { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; }
.hd-kpi-ic svg { width: 15px; height: 15px; }
.hd-kpi-ic.wine { background: rgba(140,29,60,.09); color: #8C1D3C; }
.hd-kpi-ic.mint { background: #ECFDF5; color: #059669; }
.hd-kpi-ic.gold { background: #FEF7E8; color: #B07B2E; }
.hd-kpi-ic.slate { background: #F1F5F9; color: #475569; }
.hd-kpi-hint { font-size: 9px; font-weight: 700; color: #94A3B8; background: #F8FAFC; border-radius: 999px; padding: 3px 8px; }
.hd-kpi-val { margin-top: 10px; font-size: 21px; font-weight: 850; letter-spacing: -0.02em; color: #0F172A; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.hd-delta { display: inline-flex; align-items: center; gap: 2px; border-radius: 999px; padding: 2px 7px; font-size: 9px; font-weight: 800; }
.hd-delta svg { width: 8px; height: 8px; }
.hd-delta.up { background: #ECFDF5; color: #059669; }
.hd-kpi-lbl { margin-top: 3px; font-size: 11px; font-weight: 700; color: #64748B; }

/* Cards row: trends + schedule */
.hd-row { display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; align-items: stretch; }
.hd-card { background: #fff; border: 1px solid #E7EAEF; border-radius: 18px; padding: 15px 16px; min-width: 0; }
.hd-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.hd-card-title { font-size: 13.5px; font-weight: 800; color: #0F172A; }
.hd-card-sub { font-size: 10.5px; color: #94A3B8; margin-top: 2px; }
.hd-card-sub b { color: #0F172A; }
.hd-ranges { display: inline-flex; gap: 2px; padding: 3px; border-radius: 10px; background: #F1F5F9; border: 1px solid #EDEFF3; }
.hd-ranges span { padding: 4px 9px; border-radius: 8px; font-size: 9.5px; font-weight: 700; color: #64748B; }
.hd-ranges span.on { background: #fff; color: #0F172A; box-shadow: 0 1px 2px rgba(15,23,42,.08); }
.hd-chart { width: 100%; height: auto; display: block; margin-top: 4px; }
.hd-chart-x { display: flex; justify-content: space-between; padding: 6px 4px 0; }
.hd-chart-x span { font-size: 9px; font-weight: 600; color: #B0B7C3; }

/* Schedule list - avatar initials + status dots */
.hd-mini-btn { border: 1px solid #E7EAEF; border-radius: 10px; padding: 5px 10px; font-size: 10.5px; font-weight: 700; color: #475569; }
.hd-sched-list { display: flex; flex-direction: column; }
.hd-slot { display: flex; align-items: center; gap: 10px; padding: 8.5px 2px; border-top: 1px solid #F1F3F6; }
.hd-slot:first-child { border-top: 0; }
.hd-init { width: 32px; height: 32px; flex: none; border-radius: 50%; background: rgba(140,29,60,.10); color: #8C1D3C; font-size: 10px; font-weight: 800; display: grid; place-items: center; }
.hd-slot-tx { min-width: 0; flex: 1; }
.hd-slot-tx b { display: block; font-size: 11.5px; font-weight: 800; color: #0F172A; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hd-slot-tx i { display: block; font-style: normal; font-size: 10px; color: #94A3B8; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hd-slot-r { flex: none; text-align: right; }
.hd-slot-r b { display: block; font-size: 10.5px; font-weight: 800; color: #334155; }
.hd-status { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-top: 3px; }
.hd-status.ok { background: #34D399; }
.hd-status.wait { background: #FBBF24; }

/* Floating proof cards */
.hd-float { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 14px;
    background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border: 1px solid var(--line);
    box-shadow: 0 18px 44px -16px rgba(43,26,28,.28); animation: floaty 5s ease-in-out infinite; }
.hd-float b { display: block; font-size: 12.5px; font-weight: 800; color: var(--ink); }
.hd-float i { display: block; font-style: normal; font-size: 11px; color: var(--ink-3); margin-top: 1px; }
.hd-float-ic { width: 34px; height: 34px; flex: none; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 15px; }
.hd-float-ic.wa { background: #25D366; }
.hd-float-ic.pay { background: linear-gradient(135deg, var(--gold), #8A6430); }
.hd-float-1 { top: 84px; right: -14px; }
.hd-float-2 { bottom: 46px; left: -14px; animation-delay: 1.6s; }

/* Trustbar sits closer under the big frame */
.hero-v3 .hx-trustbar { margin-top: 34px; }

/* --- Responsive: mirror the real dashboard's own breakpoints --- */
@media (max-width: 1000px) {
    .hd-side { display: none; }
    .hd-float-1 { right: 6px; }
    .hd-float-2 { left: 6px; }
}
@media (max-width: 820px) {
    .hero-v3 { padding-top: 124px; }
    .hd-row { grid-template-columns: 1fr; }
    .hd-kpis { grid-template-columns: repeat(3, 1fr); }
    .hd-kpi-4 { display: none; }
    .hd-hero-r { display: none; }
    .hd-chip-next { display: none; }
}
@media (max-width: 640px) {
    .hv3-stage { margin-top: 38px; }
    .hv3-points { gap: 7px 14px; }
    .hv3-point { font-size: 12px; }
    .hd-float { display: none; }
    .hd-kpis { grid-template-columns: repeat(2, 1fr); }
    .hd-kpi-4 { display: block; }
    .hd-topbar { padding: 9px 13px; }
    .hd-search { display: none; }
    .hd-body { padding: 12px 12px 14px; gap: 11px; }
    .hd-hero { padding: 15px 15px; border-radius: 15px; }
    .hd-hero-hi { font-size: 17px; }
    .hd-kpis, .hd-card { border-radius: 15px; }
    .hd-chart-x span:nth-child(even) { display: none; }
    .hd-url { padding: 5px 12px; font-size: 10.5px; max-width: 60vw; overflow: hidden; white-space: nowrap; }
    .hd-chrome-spacer { display: none; }
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

/* ============================================================
   PROOF BAND - "works with" tools + the numbers that matter
   One elevated card: cream tools strip on top, hairline-divided
   stat cells below (echoes the dashboard stat band in the hero).
   ============================================================ */
.proof-band { padding: 8px 0 72px; background: var(--paper); }
.pb-card { border-radius: 24px; background: var(--white); border: 1px solid var(--line);
    box-shadow: 0 24px 60px -36px rgba(43,26,28,.32), 0 4px 14px -8px rgba(43,26,28,.08); overflow: hidden; }

/* Tools strip */
.pb-tools { display: flex; align-items: center; justify-content: space-between; gap: 14px 26px; flex-wrap: wrap;
    padding: 18px 28px; background: var(--cream); border-bottom: 1px solid var(--line-soft); }
.pb-label { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); }
.pb-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.pb-chip { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 999px;
    background: var(--white); border: 1px solid var(--line); box-shadow: 0 1px 3px rgba(23,18,14,.05);
    font-size: 13.5px; font-weight: 650; color: var(--ink-2); transition: transform .2s, box-shadow .2s, border-color .2s; }
.pb-chip:hover { transform: translateY(-2px); border-color: var(--gold-soft); box-shadow: 0 6px 16px -6px rgba(23,18,14,.14); }
.pb-chip i { font-size: 16px; }

/* Stat cells - hairline dividers via 1px gap on a line-colored track */
.pb-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); }
.pb-stat { position: relative; background: var(--white); text-align: center; padding: 32px 18px 30px; min-width: 0; }
.pb-stat::before { content: ""; position: absolute; top: 0; left: 26%; right: 26%; height: 3px;
    border-radius: 0 0 6px 6px; background: var(--gold-soft); }
.pb-num { font-size: clamp(2.1rem, 3vw, 2.7rem); font-weight: 750; letter-spacing: -0.04em; color: var(--ink);
    line-height: 1; display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.pb-suffix { font-size: 1.05rem; font-weight: 700; color: var(--gold); letter-spacing: 0; }
.pb-lbl { margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--ink-2); letter-spacing: -0.01em; }
.pb-hint { margin-top: 3px; font-size: 12px; color: var(--ink-4); }

/* -- Tablet -- */
@media (max-width: 900px) {
    .pb-tools { flex-direction: column; text-align: center; padding: 18px 20px; gap: 12px; }
    .pb-chips { justify-content: center; }
    .pb-stats { grid-template-columns: repeat(2, 1fr); }
}

/* -- Phone -- */
@media (max-width: 560px) {
    .proof-band { padding: 4px 0 52px; }
    .pb-card { border-radius: 20px; }
    .pb-tools { padding: 16px 14px 14px; }
    .pb-label { font-size: 10px; letter-spacing: .14em; }
    .pb-chips { gap: 8px; }
    .pb-chip { padding: 8px 13px; font-size: 12.5px; gap: 7px; }
    .pb-chip i { font-size: 14px; }
    .pb-stat { padding: 22px 12px 20px; }
    .pb-num { font-size: 1.9rem; }
    .pb-suffix { font-size: .9rem; }
    .pb-lbl { font-size: 12.5px; margin-top: 8px; }
    .pb-hint { font-size: 11px; }
}

/* ============================================================
   TYPOGRAPHY - section titles use ONE font + a gold color
   accent (Bindplane pattern). The serif italic stays a
   hero-only flourish (.hero-title is untouched).
   ============================================================ */
.section-title .serif-italic {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(95deg, #BE9148 0%, #9C7330 50%, #7A5722 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.cta-title .serif-italic {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* ============================================================
   RUN YOUR DAY - WhatsApp reminder phone + real calendar page
   (replaces the duplicate dashboard mockup)
   ============================================================ */
.cc-grid { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 30px; align-items: stretch; max-width: 1020px; margin: 0 auto; }

/* -- Phone: WhatsApp chat, showing the REAL reminder template -- */
.cc-phone { display: flex; flex-direction: column; }
.ccp-shell { flex: 1; display: flex; flex-direction: column; border-radius: 30px; overflow: hidden;
    background: #EFE9E2; border: 7px solid #17120E;
    box-shadow: 0 24px 60px -28px rgba(23,18,14,.45), 0 3px 10px -4px rgba(23,18,14,.2); }
.ccp-wa-head { display: flex; align-items: center; gap: 10px; padding: 13px 14px; background: #075E54; color: #fff; }
.ccp-back { font-size: 13px; color: rgba(255,255,255,.85); }
.ccp-ava { width: 32px; height: 32px; flex: none; border-radius: 50%; background: rgba(255,255,255,.22); color: #fff;
    font-size: 11.5px; font-weight: 800; display: grid; place-items: center; }
.ccp-who { min-width: 0; flex: 1; line-height: 1.2; }
.ccp-who b { display: block; font-size: 13.5px; font-weight: 700; }
.ccp-who i { display: block; font-style: normal; font-size: 10.5px; color: rgba(255,255,255,.7); }
.ccp-icos { display: flex; gap: 15px; font-size: 12px; color: rgba(255,255,255,.85); }
.ccp-chat { flex: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; padding: 16px 13px 20px;
    background:
        radial-gradient(circle at 20% 30%, rgba(23,18,14,.025) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 60%, rgba(23,18,14,.02) 1.5px, transparent 1.5px);
    background-size: 46px 46px, 34px 34px; background-color: #EFE9E2; }
.ccp-day { align-self: center; font-size: 10px; font-weight: 700; color: var(--ink-4); background: rgba(255,255,255,.8);
    padding: 4px 12px; border-radius: 8px; box-shadow: 0 1px 2px rgba(23,18,14,.06); }
.ccp-bubble { position: relative; max-width: 92%; background: #DCF8C6; color: #1E2B22; border-radius: 12px 2px 12px 12px;
    padding: 10px 12px 20px; font-size: 13px; line-height: 1.5; box-shadow: 0 1px 2px rgba(23,18,14,.1); }
.ccp-meta { position: absolute; right: 9px; bottom: 5px; font-size: 9.5px; color: #6E7E70; display: inline-flex; align-items: center; gap: 3px; }
.ccp-meta i { color: #53BDEB; font-size: 10px; }
.ccp-auto { display: inline-flex; align-items: center; gap: 6px; align-self: center; margin-top: 4px;
    font-size: 10.5px; font-weight: 700; color: var(--ink-3); background: rgba(255,255,255,.85);
    border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; box-shadow: 0 1px 3px rgba(23,18,14,.06); }
.ccp-auto i { color: var(--gold); font-size: 10px; }

/* Caption line under each visual - badge icon + text, wrap-safe */
.cc-cap { display: flex; align-items: center; justify-content: center; gap: 11px; margin-top: 16px; }
.cc-cap-ic { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center;
    color: #fff; font-size: 14px; box-shadow: 0 5px 12px -4px rgba(23,18,14,.3); }
.cc-cap-ic.wa { background: #25D366; }
.cc-cap-ic.cal { background: linear-gradient(135deg, var(--gold), #8A6430); }
.cc-cap-tx { font-size: 13.5px; font-weight: 600; color: var(--ink-3); text-align: left; max-width: 34ch; line-height: 1.45; }

/* -- Calendar: replica of the product's calendar page -- */
.cc-cal { display: flex; flex-direction: column; min-width: 0; }
.ccc-card { flex: 1; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
    border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px -34px rgba(43,26,28,.3), 0 3px 10px -6px rgba(43,26,28,.08); }
.ccc-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-bottom: 1px solid var(--line-soft); background: #fff; }
.ccc-btn { border: 1px solid var(--line); border-radius: 9px; padding: 5px 11px; font-size: 11.5px; font-weight: 700; color: var(--ink-2); }
.ccc-nav { width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 7px; display: grid; place-items: center; font-size: 9px; color: var(--ink-4); }
.ccc-range { font-size: 12.5px; font-weight: 800; color: var(--ink); margin-left: 2px; }
.ccc-views { margin-left: auto; display: inline-flex; gap: 2px; padding: 3px; border-radius: 10px; background: #F1EFE9; }
.ccc-views em { font-style: normal; padding: 4px 10px; border-radius: 8px; font-size: 10.5px; font-weight: 700; color: var(--ink-4); }
.ccc-views em.on { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(23,18,14,.08); }
.ccc-grid { flex: 1; display: grid; grid-template-columns: 46px 1fr 1fr 1fr; min-height: 300px; }
.ccc-gutter { display: flex; flex-direction: column; justify-content: space-between; padding: 40px 6px 10px;
    border-right: 1px solid var(--line-soft); }
.ccc-gutter span { font-size: 9px; font-weight: 600; color: var(--ink-5); text-align: right; }
.ccc-col { position: relative; border-right: 1px solid var(--line-soft); min-width: 0; }
.ccc-col:last-child { border-right: 0; }
.ccc-col.is-today { background: #FCFAF5; }
.ccc-day { padding: 8px 0 7px; text-align: center; font-size: 9px; font-weight: 800; letter-spacing: .08em;
    color: var(--ink-4); border-bottom: 1px solid var(--line-soft); }
.ccc-day b { font-size: 12px; color: var(--ink); margin-left: 3px; }
.ccc-col.is-today .ccc-day b { color: #8C1D3C; }
.ccc-track { position: absolute; inset: 33px 5px 8px;
    background: repeating-linear-gradient(to bottom, transparent 0, transparent calc(16.66% - 1px), rgba(23,18,14,.05) calc(16.66% - 1px), rgba(23,18,14,.05) 16.66%); }
.ccc-ev { position: absolute; left: 0; right: 0; border-radius: 8px; padding: 5px 8px; overflow: hidden; line-height: 1.25; }
.ccc-ev b { display: block; font-size: 10px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccc-ev i { display: block; font-style: normal; font-size: 9px; opacity: .8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccc-ev.wine { background: rgba(140,29,60,.10); color: #8C1D3C; border-left: 3px solid #8C1D3C; }
.ccc-ev.gold { background: rgba(182,134,76,.14); color: #7A5722; border-left: 3px solid #B6864C; }
.ccc-ev.green { background: var(--green-soft); color: var(--green); border-left: 3px solid var(--green); }
.ccc-ev.slate { background: #EEF1F5; color: #475569; border-left: 3px solid #94A3B8; }
.ccc-now { position: absolute; left: 0; right: 0; height: 2px; background: #E11D48; border-radius: 2px; }
.ccc-now::before { content: ""; position: absolute; left: -1px; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: #E11D48; }

/* -- Responsive -- */
@media (max-width: 900px) {
    .cc-grid { grid-template-columns: 1fr; gap: 34px; max-width: 560px; }
    .cc-phone { max-width: 330px; width: 100%; margin: 0 auto; }
    .ccp-chat { min-height: 190px; }
}
@media (max-width: 560px) {
    .cc-grid { gap: 28px; }
    .cc-phone { max-width: 300px; }
    .ccc-bar { flex-wrap: wrap; padding: 10px 11px; }
    .ccc-range { font-size: 11.5px; }
    .ccc-views em { padding: 4px 8px; font-size: 10px; }
    .ccc-grid { grid-template-columns: 38px 1fr 1fr 1fr; min-height: 260px; }
    .ccc-ev { padding: 4px 6px; }
    .ccc-ev i { display: none; }
    .cc-cap-tx { font-size: 12.5px; }
    .cc-cap-ic { width: 28px; height: 28px; font-size: 12.5px; }
}

/* Hero headline: single font + gold gradient accent (matches section titles) */
.hero-title .serif-italic { font-family: var(--font-sans); font-style: normal; font-weight: 700; letter-spacing: -0.035em; }

/* FAQ: show-all button + hidden overflow questions */
.faq-item.faq-hidden { display: none; }
.faq-more-wrap { display: flex; justify-content: center; margin-top: 24px; }
.faq-more { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 999px;
    background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-sm);
    font-family: inherit; font-size: 14px; font-weight: 700; color: var(--ink); cursor: pointer;
    transition: border-color .25s, transform .25s, box-shadow .25s; }
.faq-more:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--sh-md); }
.faq-more i { font-size: 11px; color: var(--gold); }

/* Hero headline: exactly two lines — one row per line — on every screen.
   Row 1 is 32 chars ~ 16em in Inter 700, so size stays under container/16. */
.hero-v3 .hero-title { font-size: clamp(1.3rem, 5.6vw, 3rem); line-height: 1.16; letter-spacing: -0.04em; }
.hero-v3 .ht-row { white-space: nowrap; }
