/* ============================================================
   Destination Tools — Brand Redesign (static mockup)
   Design system: tokens + components
   Direction: Modern SaaS clean · "night drive" transport palette
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Brand palette */
    --ink:            #0E1B2A;   /* deep midnight navy — text + dark surfaces */
    --ink-800:        #16273b;
    --ink-700:        #22364d;
    --emerald:        #12B76A;   /* evolved heritage green — primary accent */
    --emerald-600:    #0E9E5B;
    --emerald-700:    #0B7D48;
    --emerald-tint:   #EAF8F0;   /* soft mint surface */
    --emerald-tint-2: #DCF3E6;
    --amber:          #F5A524;   /* warm highlight (headlights) */
    --amber-tint:     #FEF3E0;

    /* Neutrals */
    --white:          #ffffff;
    --canvas:         #F7F9FB;   /* off-white page canvas */
    --surface:        #ffffff;
    --border:         #E6EAF0;
    --border-strong:  #D3DAE4;
    --muted:          #5B6B7C;
    --muted-2:        #8393A3;

    /* Typography — Outfit everywhere (matches appointment's cohesive type identity) */
    --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Radii */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;

    /* Shadows (soft, layered) */
    --sh-xs: 0 1px 2px rgba(14, 27, 42, 0.05);
    --sh-sm: 0 2px 8px rgba(14, 27, 42, 0.06);
    --sh-md: 0 10px 30px -12px rgba(14, 27, 42, 0.18);
    --sh-lg: 0 24px 60px -20px rgba(14, 27, 42, 0.28);
    --sh-emerald: 0 12px 28px -10px rgba(18, 183, 106, 0.45);

    /* Layout */
    --container: 1440px;
    --gutter: clamp(1.15rem, 4vw, 2.75rem);
    --section-y: clamp(4rem, 9vw, 7.5rem);
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--emerald-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--emerald); }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    font-weight: 800;
}
h3, h4, h5, h6 { font-weight: 600; }
/* h1 & h2 render in Capitalised Words (Title Case) — matches appointment */
h1, h2 { text-transform: capitalize; }

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--canvas); }
/* Dark section band (navy) — light text + dark cards, keeps emerald/amber accents.
   Used to alternate light/dark down the page for a moodier "night drive" feel. */
.section--dark { background: var(--ink); color: #E9F0F5; }
.section--dark .display, .section--dark .h2, .section--dark .h3,
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead, .section--dark p { color: rgba(233,240,245,.80); }
.section--dark .eyebrow { color: var(--emerald); }
.section--dark .card { background: var(--ink-800); border-color: rgba(255,255,255,.09); color: #E9F0F5; }
.section--dark .card h4, .section--dark .card h5, .section--dark .card strong { color: #fff; }
.section--dark .card p, .section--dark .card .text-muted { color: rgba(233,240,245,.72); }
.section--dark .step__num { background: var(--emerald); color:#04121e; }
.section--dark .benefit-item { color: rgba(233,240,245,.88); }
.section--mint { background: linear-gradient(180deg, var(--emerald-tint) 0%, #fff 100%); }
.section--ink { background: var(--ink); color: #cdd7e2; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Type scale ---------- */
.display {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}
.h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); font-weight: 800; }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600; }
.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    color: var(--muted);
    line-height: 1.6;
    font-family: var(--font-body);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--emerald-700);
}
/* Signature: a small emerald brand marker precedes every eyebrow (mirrors
   appointment's eyebrow-dot design signature, in Destination's green). */
.eyebrow::before {
    content: "";
    width: 6px; height: 6px; border-radius: 2px;
    background: var(--emerald);
    display: inline-block;
    flex: none;
}
.text-muted { color: var(--muted); }

/* Section header block */
.section-head { max-width: 720px; margin-inline: auto; }
.section-head .h2 { margin-top: .8rem; }
.section-head .lead { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .95rem 1.6rem;
    border-radius: var(--r-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--emerald); color: #fff; box-shadow: var(--sh-emerald); }
.btn-primary:hover { background: var(--emerald-600); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-700); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { color: var(--ink); box-shadow: var(--sh-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-arrow::after { content: "→"; font-size: 1.05em; transition: transform .18s ease; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

.link-more {
    display: inline-flex; align-items: center; gap: .35rem;
    font-weight: 600; color: var(--emerald-700);
}
.link-more::after { content: "→"; transition: transform .18s ease; }
.link-more:hover::after { transform: translateX(4px); }

/* ---------- Chips / badges ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.chip {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .95rem; font-weight: 500; color: var(--ink);
}
.chip .material-icons { color: var(--emerald); font-size: 1.2rem; }
.badge {
    display: inline-flex; align-items: center; gap: .35rem;
    font-family: var(--font-body); font-weight: 600; font-size: .72rem;
    letter-spacing: .05em; text-transform: uppercase;
    padding: .35rem .7rem; border-radius: var(--r-pill);
    background: var(--emerald-tint); color: var(--emerald-700);
}
.badge-amber { background: var(--amber-tint); color: #B4700B; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #F1F4F8;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.9rem;
    box-shadow: var(--sh-xs);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border-strong); }
.card h4 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* Icon tile */
.icon-tile {
    width: 52px; height: 52px; border-radius: var(--r-md);
    display: grid; place-items: center; margin-bottom: 1.15rem;
    background: var(--emerald-tint); color: var(--emerald-700);
}
.icon-tile .material-icons { font-size: 1.6rem; }
.icon-tile.amber { background: var(--amber-tint); color: #B4700B; }
.icon-tile.ink { background: #eef1f6; color: var(--ink); }

/* Category accent colours for feature tiles */
.t-booking  { background:#E7F0FF; color:#1E63D6; }
.t-fleet    { background:#EAF8F0; color:#0B7D48; }
.t-staff    { background:#F1ECFF; color:#6D3FD6; }
.t-payments { background:#E6FBF4; color:#0E9E7A; }
.t-customer { background:#FFF0E9; color:#D2622A; }
.t-comms    { background:#FEF3E0; color:#B4700B; }
.t-ai       { background:#EAF0FF; color:#3B4FD6; }
.t-analytics{ background:#E9F7FB; color:#1E86A8; }
.t-calendar { background:#FDEBF1; color:#C23A6B; }
.t-integr   { background:#EEF1F6; color:#3B4657; }
.t-content  { background:#EAF8F0; color:#0B7D48; }
.t-marketing{ background:#FFF0E9; color:#D2622A; }
.t-business { background:#E7F0FF; color:#1E63D6; }

/* ---------- Navigation ---------- */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a { color: var(--ink); font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; }
.nav__links a:hover { color: var(--emerald-700); }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__signin { color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav__toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 44px; height: 44px; border-radius: var(--r-sm);
}
.nav__toggle .material-icons { font-size: 1.7rem; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero__bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(60% 55% at 82% 8%, rgba(18,183,106,.14), transparent 60%),
        radial-gradient(50% 50% at 8% 90%, rgba(30,99,214,.08), transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { margin-top: 1.1rem; }
.hero__title .accent { color: var(--emerald); }
.hero__sub { margin-top: 1.4rem; max-width: 34ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust { margin-top: 2rem; }

/* ---------- Product mockup (CSS/SVG dashboard) ---------- */
.mockup {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}
.mockup__bar {
    display: flex; align-items: center; gap: .5rem;
    padding: .8rem 1rem; border-bottom: 1px solid var(--border); background: #fbfcfe;
}
.mockup__dot { width: 11px; height: 11px; border-radius: 50%; background: #dfe4ec; }
.mockup__dot:nth-child(1){ background:#ff6058; } .mockup__dot:nth-child(2){ background:#ffbd2e; } .mockup__dot:nth-child(3){ background:#28c840; }
.mockup__url { margin-left: .6rem; font-size: .75rem; color: var(--muted-2); font-family: var(--font-body); }
.mockup__body { padding: 1.25rem; display: grid; gap: 1rem; }
.mstat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.mstat {
    border: 1px solid var(--border); border-radius: var(--r-md); padding: .8rem .9rem; background:#fff;
}
.mstat .k { font-size: .68rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; font-weight:600; }
.mstat .v { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; margin-top: .2rem; }
.mstat .up { color: var(--emerald); font-size: .72rem; font-weight: 600; }
.mchart { border: 1px solid var(--border); border-radius: var(--r-md); padding: 1rem; }
.mchart__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:.6rem; }
.mchart__title { font-family: var(--font-display); font-weight:600; font-size:.95rem; }
.mbars { display: grid; grid-template-columns: repeat(7,1fr); gap: .5rem; align-items: end; height: 96px; }
.mbar { background: linear-gradient(180deg, var(--emerald) 0%, #7fe0b3 100%); border-radius: 5px 5px 0 0; }
.mlist { display: grid; gap: .55rem; }
.mrow {
    display:flex; align-items:center; gap:.7rem;
    border:1px solid var(--border); border-radius: var(--r-sm); padding:.55rem .7rem; background:#fff;
}
.mrow .av { width: 26px; height: 26px; border-radius: 50%; background: var(--emerald-tint); color: var(--emerald-700); display:grid; place-items:center; font-size:.7rem; font-weight:700; }
.mrow .nm { font-size:.82rem; font-weight:600; }
.mrow .meta { font-size:.72rem; color: var(--muted-2); }
.mrow .pill { margin-left:auto; font-size:.68rem; font-weight:700; padding:.2rem .55rem; border-radius: var(--r-pill); }
.pill-green { background: var(--emerald-tint); color: var(--emerald-700); }
.pill-amber { background: var(--amber-tint); color:#B4700B; }
/* floating accent card on the mockup */
.mockup__float {
    position: absolute; left: -18px; bottom: 26px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
    box-shadow: var(--sh-md); padding: .8rem 1rem; display:flex; align-items:center; gap:.7rem;
}
.mockup__float .ic { width: 34px; height:34px; border-radius: 9px; background: var(--emerald); color:#fff; display:grid; place-items:center; }
.mockup__float .ic .material-icons { font-size:1.2rem; }
.mockup__float .k { font-size:.68rem; color:var(--muted-2); }
.mockup__float .v { font-family: var(--font-display); font-weight:700; font-size:1rem; }

/* ---------- Trust / logo bar ---------- */
.trustbar { padding-block: clamp(2rem,4vw,3rem); }
.trustbar__label { text-align:center; color: var(--muted-2); font-size:.85rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.trustbar__logos { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap: clamp(1.5rem,5vw,3.5rem); margin-top:1.5rem; opacity:.7; }
.trustbar__logos > span { font-family: var(--font-display); font-weight:700; font-size:1.15rem; color: var(--ink-700); display:inline-flex; align-items:center; gap:.4rem; }
.trustbar__logos .material-icons { color: var(--muted-2); }

/* ---------- Cost highlight callout ---------- */
.callout {
    background: var(--ink); color:#e3eaf2; border-radius: var(--r-xl);
    padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--sh-lg);
}
.callout h3 { color:#fff; margin-bottom: 1.2rem; }
.callout-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:1.2rem; }
/* icon to the LEFT of the number + label (2-col grid), matches appointment */
.callout-item { display:grid; grid-template-columns:auto 1fr; column-gap:.8rem; align-items:start; }
.callout-item .material-icons { color: var(--amber); font-size:2.1rem; grid-row: span 2; }
.callout-item strong { display:block; color:#fff; font-family:var(--font-display); font-size:1.4rem; margin:0 0 .3rem; }
.callout-item span { font-size:1.05rem; color:#a9b6c4; }

/* ---------- Solution split ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.benefit-list { display:grid; gap:.9rem; }
.benefit-item { display:flex; gap:.75rem; align-items:flex-start; font-size:1.02rem; }
.benefit-item .material-icons { color: var(--emerald); flex:none; margin-top:.05rem; }

/* ---------- How it works ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap:1.5rem; counter-reset: step; }
.step { position:relative; padding-top:.5rem; }
.step__num {
    width:46px; height:46px; border-radius: var(--r-md); display:grid; place-items:center;
    font-family: var(--font-display); font-weight:700; font-size:1.15rem;
    background: var(--ink); color:#fff; margin-bottom:1rem;
}
.step h4 { font-size:1.2rem; margin-bottom:.4rem; }
.step p { color: var(--muted); margin:0; }

/* ---------- Showcase (image bands) ---------- */
.showcase { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.showcase__media {
    border-radius: var(--r-xl); overflow:hidden; box-shadow: var(--sh-lg); border:1px solid var(--border);
    background: var(--canvas);
}
.showcase__media img { width:100%; height:100%; object-fit:cover; aspect-ratio: 3/2; }

/* ---------- Audience cards ---------- */
.audience-card { display:flex; flex-direction:column; height:100%; }
.audience-card .icon-tile { width:58px; height:58px; }
.audience-card h3 { font-size:1.35rem; margin-bottom:.75rem; }
.audience-card .challenge { color: var(--muted); font-size:.95rem; margin:0 0 1rem; }
.audience-card h5 { font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; color: var(--emerald-700); margin:0 0 .6rem; }
.audience-card ul { list-style:none; display:grid; gap:.5rem; margin-bottom:1.3rem; }
.audience-card li { position:relative; padding-left:1.5rem; font-size:.95rem; }
.audience-card li::before { content:"✓"; position:absolute; left:0; color: var(--emerald); font-weight:700; }
.audience-card .roi {
    margin-top:auto; background: var(--emerald-tint); border-radius: var(--r-md);
    padding: 1rem 1.1rem; font-size:.92rem;
}
.audience-card .roi strong { color: var(--ink); font-family: var(--font-display); }

/* ---------- Pricing ---------- */
.price-toggle { display:inline-flex; align-items:center; gap:.9rem; margin-top:1.6rem; font-weight:600; }
.switch { position:relative; width:56px; height:30px; }
.switch input { opacity:0; width:0; height:0; }
.switch .track { position:absolute; inset:0; background: var(--border-strong); border-radius: var(--r-pill); transition:.2s; cursor:pointer; }
.switch .track::before { content:""; position:absolute; width:22px; height:22px; left:4px; top:4px; background:#fff; border-radius:50%; transition:.2s; box-shadow: var(--sh-sm); }
.switch input:checked + .track { background: var(--emerald); }
.switch input:checked + .track::before { transform: translateX(26px); }
.price-save { color: var(--emerald-700); font-size:.85rem; }

.pricing-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1.5rem; align-items:stretch; }
.plan {
    display:flex; flex-direction:column; background:#fff; border:1px solid var(--border);
    border-radius: var(--r-lg); padding:2rem 1.8rem; box-shadow: var(--sh-xs); height:100%;
    transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.plan--featured { border:1.5px solid var(--emerald); box-shadow: var(--sh-md); position:relative; }
.plan__tag {
    position:absolute; top:-13px; left:50%; transform:translateX(-50%);
    background: var(--emerald); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.05em;
    text-transform:uppercase; padding:.3rem .9rem; border-radius: var(--r-pill); white-space:nowrap;
}
.plan__name { font-family: var(--font-display); font-weight:600; font-size:1.25rem; }
.plan__desc { color: var(--muted); font-size:.9rem; margin:.3rem 0 1.2rem; min-height:2.4em; }
.plan__price { display:flex; align-items:baseline; gap:.3rem; }
.plan__price .amt { font-family: var(--font-display); font-weight:700; font-size:2.6rem; letter-spacing:-.03em; }
.plan__price .per { color: var(--muted); font-size:.95rem; }
.plan__feats { list-style:none; display:grid; gap:.7rem; margin:1.5rem 0; }
.plan__feats li { position:relative; padding-left:1.7rem; font-size:.95rem; }
.plan__feats .material-icons { position:absolute; left:0; top:1px; font-size:1.15rem; color: var(--emerald); }
.plan .btn { margin-top:auto; width:100%; font-size:.9rem; padding-inline:.85rem; }

/* ---------- Stat / success cards ---------- */
.stat-card { text-align:left; }
.stat-card .metric { font-family: var(--font-display); font-weight:700; font-size:2.8rem; color: var(--emerald); letter-spacing:-.03em; line-height:1; }
.stat-card .metric-label { font-weight:600; color: var(--ink); }
.stat-card h4 { margin:1rem 0 .6rem; font-size:1.1rem; }
.stat-card p { font-size:.9rem; margin:.3rem 0; }
.stat-card .results { list-style:none; display:grid; gap:.4rem; margin-top:.9rem; padding-top:.9rem; border-top:1px solid var(--border); }
.stat-card .results li { position:relative; padding-left:1.4rem; font-size:.9rem; }
.stat-card .results li::before { content:"▲"; position:absolute; left:0; color: var(--emerald); font-size:.65rem; top:.25rem; }

/* ---------- Final CTA ---------- */
.cta-band {
    position:relative; overflow:hidden; border-radius: clamp(20px, 4vw, 32px);
    background:
        radial-gradient(70% 120% at 85% -10%, rgba(18,183,106,.45), transparent 55%),
        radial-gradient(60% 100% at 5% 110%, rgba(30,99,214,.35), transparent 55%),
        var(--ink);
    color:#fff; padding: clamp(2.6rem, 6vw, 4.5rem); text-align:center;
}
.cta-band h2 { color:#fff; }
.cta-band .lead { color:#cdd7e2; }
.cta-band .btn-primary { box-shadow: 0 12px 30px -8px rgba(0,0,0,.5); }
.cta-note { color:#9fb0c0; font-size:.9rem; margin-top:1rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-inline:auto; display:grid; gap:.85rem; }
.faq-item { border:1px solid var(--border); border-radius: var(--r-md); background:#fff; overflow:hidden; }
.faq-q {
    width:100%; text-align:left; background:none; border:0; cursor:pointer;
    display:flex; justify-content:space-between; align-items:center; gap:1rem;
    padding:1.2rem 1.4rem; font-family: var(--font-display); font-weight:600; font-size:1.05rem; color:var(--ink);
}
.faq-q .material-icons { color: var(--emerald-700); transition: transform .25s ease; flex:none; }
.faq-item.open .faq-q .material-icons { transform: rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a__inner { padding:0 1.4rem 1.3rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color:#9fb0c0; padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer__grid { display:grid; grid-template-columns: 1.6fr repeat(4,1fr); gap:2rem; }
.footer__brand img { height:30px; margin-bottom:1rem; }
.footer__brand p { max-width:32ch; font-size:.92rem; color:#8ea0b2; }
.footer h6 { font-family: var(--font-display); color:#fff; font-size:1.3rem; text-transform:uppercase; letter-spacing:.08em; margin:0 0 1rem; font-weight:800; }
.footer ul { list-style:none; display:grid; gap:.6rem; }
.footer a { color:#9fb0c0; font-size:.92rem; }
.footer a:hover { color:#fff; }
.footer__bottom {
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem;
    margin-top: 2.5rem; padding-top:1.6rem; border-top:1px solid rgba(255,255,255,.1);
    font-size:.85rem; color:#7f92a4;
}
.footer__social { display:flex; gap:.8rem; }
.footer__social a { width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,.06); display:grid; place-items:center; color:#c3cfda; }
.footer__social a:hover { background: var(--emerald); color:#fff; }
.footer__made { color:#9fb0c0; font-size:1.05rem; text-align:center; }
.footer__made a { color:#fff; font-weight:600; }
.footer__made a:hover { color: var(--emerald); }
.footer__made .flag { font-size:1.2rem; }
.footer__snazzy { display:inline-flex; align-items:center; vertical-align:middle; }
.footer__snazzy img { display:inline-block; height:26px; width:auto; }
.footer__ie {
    display:inline-flex; align-items:center; gap:.5rem; margin-top:1.1rem;
    padding:.4rem .8rem; border-radius: var(--r-pill); background:rgba(255,255,255,.06);
    font-size:.85rem; color:#c3cfda; font-weight:500;
}
.footer__ie .flag { font-size:1.05rem; }

/* Made-in-Ireland chip (light surfaces) */
.ie-chip {
    display:inline-flex; align-items:center; gap:.4rem;
    font-size:.9rem; font-weight:500; color:var(--ink);
}
.ie-chip .flag { font-size:1.1rem; }

/* ---------- Feature deep-dive (features.html) ---------- */
.feat-block { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.feat-block:nth-child(even) .feat-block__media { order:-1; }
.feat-block__media {
    background: linear-gradient(160deg, var(--emerald-tint), #fff);
    border:1px solid var(--border); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--sh-sm);
    min-height: 260px; display:grid; place-items:center;
}
.feat-block__media .material-icons { font-size: 5rem; color: var(--emerald); }
.feat-block ul { list-style:none; display:grid; gap:.6rem; margin-top:1.2rem; }
.feat-block li { position:relative; padding-left:1.7rem; }
.feat-block li::before { content:"✓"; position:absolute; left:0; color: var(--emerald); font-weight:700; }
.feat-nav { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-top:2rem; }
.feat-nav a { padding:.5rem 1rem; border-radius: var(--r-pill); background:#fff; border:1px solid var(--border); font-size:.9rem; font-weight:600; color:var(--ink); }
.feat-nav a:hover { border-color: var(--emerald); color: var(--emerald-700); }

/* ---------- Comparison table (pricing.html) ---------- */
.cmp-wrap { overflow-x:auto; border:1px solid var(--border); border-radius: var(--r-lg); }
.cmp { width:100%; border-collapse:collapse; min-width:720px; }
.cmp th, .cmp td { padding:1rem 1.1rem; text-align:center; border-bottom:1px solid var(--border); font-size:.92rem; }
.cmp th:first-child, .cmp td:first-child { text-align:left; font-weight:600; }
.cmp thead th { font-family: var(--font-display); font-size:1rem; background: var(--canvas); }
.cmp .yes { color: var(--emerald); font-weight:700; }
.cmp .no { color: var(--muted-2); }
.cmp tbody tr:hover { background: #fbfcfe; }

/* ---------- Motion (scroll reveal) ---------- */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; } .reveal.d2 { transition-delay:.16s; } .reveal.d3 { transition-delay:.24s; }

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior:auto !important; }
    .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
    .btn:hover, .card:hover, .plan:hover { transform:none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero__grid, .split, .showcase, .feat-block { grid-template-columns: 1fr; }
    .feat-block:nth-child(even) .feat-block__media { order:0; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .callout-grid { grid-template-columns: repeat(2,1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
    .hero__sub { max-width: none; }
}
@media (max-width: 760px) {
    .nav__links, .nav__signin { display:none; }
    .nav__toggle { display:grid; place-items:center; }
    .nav.open .nav__links {
        display:flex; position:absolute; top:74px; left:0; right:0; flex-direction:column; gap:0;
        background:#fff; border-bottom:1px solid var(--border); padding:.5rem var(--gutter) 1rem;
    }
    .nav.open .nav__links li { width:100%; }
    .nav.open .nav__links a { display:block; padding:.9rem 0; border-bottom:1px solid var(--border); }
    .grid-3, .grid-2, .steps, .pricing-grid, .callout-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .mstat-row { grid-template-columns: repeat(3,1fr); }
    .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Cinematic dark home hero — ported from the appointment app's
   treatment, remapped to Destination's navy/emerald/amber brand.
   Driven by hero.js (GSAP): masked word reveal, parallax glow
   orbs, 3D visual tilt. Scoped to the split home hero via
   :has(.hero__grid) so inner-page heroes are unaffected.
   ============================================================ */
.hero:has(.hero__grid) {
    padding-top: clamp(3.5rem, 7vw, 6rem);
    padding-bottom: clamp(4.5rem, 9vw, 7.5rem);
    perspective: 1200px;
    background: var(--ink);
    color: #E9F0F5;
}
.hero:has(.hero__grid) .hero__bg {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(14,27,42,.95) 0%, rgba(14,27,42,.78) 34%, rgba(14,27,42,.24) 62%, rgba(14,27,42,.46) 100%),
        url('/home/images/hero-car.png') center right / cover no-repeat,
        var(--ink);
    transform-origin: 70% 40%;
    will-change: transform;
}
/* Light copy on the dark hero */
.hero:has(.hero__grid) .hero__title { color: #fff; }
.hero:has(.hero__grid) .hero__title .accent {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--amber);
    text-decoration-thickness: .14em;
    text-underline-offset: .12em;
}
.hero:has(.hero__grid) .hero__sub { color: rgba(233,240,245,.82); }
.hero:has(.hero__grid) .badge {
    background: rgba(255,255,255,.09); color: #F2F6FA; border-color: rgba(255,255,255,.16);
}
.hero:has(.hero__grid) .chip { color: rgba(233,240,245,.9); }
.hero:has(.hero__grid) .rating { color: rgba(233,240,245,.72); }
.hero:has(.hero__grid) .btn-ghost {
    color: #fff; border-color: rgba(255,255,255,.28); background: transparent;
}
.hero:has(.hero__grid) .btn-ghost:hover {
    border-color: #fff; background: rgba(255,255,255,.06); color: #fff;
}
/* The dashboard mockup is a white card INSIDE the dark hero — force its text
   dark so it doesn't inherit the hero's light color and wash out on white. */
.hero:has(.hero__grid) .mockup,
.hero:has(.hero__grid) .mockup__float { color: var(--ink); }
.hero:has(.hero__grid) .mockup .mstat .v,
.hero:has(.hero__grid) .mockup .mchart__title,
.hero:has(.hero__grid) .mockup .mrow .nm,
.hero:has(.hero__grid) .mockup .mockup__url,
.hero:has(.hero__grid) .mockup__float .v { color: var(--ink) !important; }
.hero:has(.hero__grid) .mockup .mstat .k,
.hero:has(.hero__grid) .mockup .mrow .meta,
.hero:has(.hero__grid) .mockup__float .k { color: var(--muted) !important; }

/* Parallax glow orbs injected by hero.js — amber (headlights) + emerald */
.hero__orb {
    position: absolute; border-radius: 50%; z-index: -1; pointer-events: none;
    filter: blur(40px); opacity: .55; will-change: transform;
}
.hero__orb.o1 { width: 340px; height: 340px; top: -70px; right: 20%;
    background: radial-gradient(circle at 45% 45%, rgba(245,165,36,.42), transparent 70%); }
.hero__orb.o2 { width: 280px; height: 280px; bottom: -50px; right: 6%;
    background: radial-gradient(circle at 50% 50%, rgba(18,183,106,.40), transparent 70%); }
.hero:has(.hero__grid) .hero__visual { will-change: transform; transform-style: preserve-3d; }
@media (prefers-reduced-motion: reduce) {
    .hero__orb { display: none; }
}

/* Hero headline — masked word reveal (words slide up out of a clip box).
   Padding+negative-margin give descenders room so the clip doesn't crop. */
.hw {
    display: inline-block; overflow: hidden; vertical-align: top;
    padding: .08em .02em .16em; margin: -.08em -.02em -.16em;
}
.hw-i { display: inline-block; will-change: transform; }
.hw-i .accent { text-decoration-color: var(--amber); }
