/* ============================================================
   BARBERLEDGER
   Public Website Design System
   Know Your Numbers. Grow Your Shop.
============================================================ */


/* ============================================================
   1. GLOBAL VARIABLES
============================================================ */

:root {
    --navy-950: #061722;
    --navy-900: #081d2a;
    --navy-850: #0b2332;
    --navy-800: #102b3c;

    --green: #73c82c;
    --green-dark: #42ad3b;
    --green-deep: #248d3c;
    --green-light: #a3df51;

    --gold: #e5ad35;

    --ink: #101c2c;
    --text: #344150;
    --muted: #687481;

    --white: #ffffff;
    --off-white: #f8faf9;
    --soft-gray: #f1f4f3;
    --border: #dce4e1;

    --revenue-bg: #e8f7ec;
    --revenue-accent: #269b4a;

    --expense-bg: #fff0ec;
    --expense-accent: #d7684c;

    --profit-bg: #edf5ff;
    --profit-accent: #3c83c7;

    --margin-bg: #fff7dc;
    --margin-accent: #c7941c;

    --shadow-sm: 0 8px 24px rgba(8, 29, 42, 0.07);
    --shadow-md: 0 18px 50px rgba(8, 29, 42, 0.12);
    --shadow-lg: 0 30px 80px rgba(4, 20, 30, 0.20);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --container: 1240px;
}


/* ============================================================
   2. RESET / BASE
============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}


/* ============================================================
   3. TYPOGRAPHY
============================================================ */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(3.2rem, 6vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 760;
}

h2 {
    font-size: clamp(2.3rem, 4vw, 4.15rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 730;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.3;
}

h1 span,
h2 span {
    display: block;
}

p {
    color: var(--text);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;

    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 0.79rem;
    font-weight: 750;
    letter-spacing: 0.03em;

    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);

    margin-bottom: 25px;
}

.eyebrow-light {
    color: white;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.07);
}


/* ============================================================
   4. BUTTONS
============================================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 22px;

    border-radius: 10px;
    border: 1px solid transparent;

    font-weight: 750;
    line-height: 1;
    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(
        135deg,
        var(--green-dark),
        var(--green-light)
    );

    color: #07131a;

    box-shadow:
        0 12px 28px rgba(88, 190, 54, .25);
}

.button-primary:hover {
    box-shadow:
        0 16px 35px rgba(88, 190, 54, .38);
}

.button-secondary {
    border-color: var(--border);
    background: white;
    color: var(--ink);
}

.button-dark {
    width: 100%;
    background: var(--navy-950);
    color: white;
}

.button-light {
    width: 100%;
    background: white;
    color: var(--navy-950);
}

.button-ghost {
    color: white;
    border-color: rgba(255,255,255,.32);
    background: rgba(255,255,255,.06);
}

.button-large {
    min-height: 58px;
    padding: 16px 28px;
    font-size: 1rem;
}


/* ============================================================
   5. HEADER
============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(12,35,49,.08);
}

.nav-wrap {
    min-height: 82px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.brand-logo {
    width: 190px;
    max-height: 64px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: .92rem;
    font-weight: 650;
    color: #31404d;
}

.main-nav a:hover {
    color: var(--green-deep);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-toggle {
    display: none;
}


/* ============================================================
   6. HERO
============================================================ */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 760px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(38, 151, 70, .22),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #06131d 0%,
            #081c28 46%,
            #0b302f 100%
        );

    color: white;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 26px 26px;
    opacity: .28;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,13,20,.40),
            transparent 65%
        );
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 70px;

    padding-top: 85px;
    padding-bottom: 85px;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--green-light);
}

.hero-lead {
    max-width: 680px;

    font-size: 1.17rem;
    line-height: 1.8;

    color: rgba(255,255,255,.76);

    margin-bottom: 25px;
}

.hero-offer {
    display: flex;
    flex-direction: column;
    gap: 3px;

    margin-bottom: 30px;

    padding-left: 18px;
    border-left: 3px solid var(--green);
}

.hero-offer strong {
    color: white;
    font-size: 1.05rem;
}

.hero-offer span {
    color: rgba(255,255,255,.68);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-note {
    margin: 13px 0 0;
    color: rgba(255,255,255,.54);
    font-size: .82rem;
}

.hero-product {
    position: relative;
}

.product-frame {
    position: relative;

    padding: 15px;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 30px;

    background: rgba(255,255,255,.09);

    box-shadow: var(--shadow-lg);

    transform: perspective(1200px) rotateY(-3deg);
}

.product-image {
    width: 100%;
    border-radius: 20px;
    background: white;
}

.product-status {
    position: absolute;
    left: 30px;
    bottom: -21px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 17px;

    border-radius: 12px;

    background: white;
    color: var(--ink);

    font-size: .82rem;
    font-weight: 700;

    box-shadow: var(--shadow-md);
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--green-dark);

    box-shadow:
        0 0 0 5px rgba(75,181,63,.12);
}


/* ============================================================
   7. TRUST STRIP
============================================================ */

.trust-strip {
    border-bottom: 1px solid var(--border);
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 30px 26px;
    border-right: 1px solid var(--border);
}

.trust-grid > div:last-child {
    border-right: none;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    margin-bottom: 4px;
    font-size: .92rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.5;
}


/* ============================================================
   8. GENERAL SECTIONS
============================================================ */

.section {
    padding: 115px 0;
}

.section-light {
    background: white;
}

.section-muted {
    background: var(--soft-gray);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.section-copy h2 {
    margin-bottom: 27px;
}

.section-copy h2 span {
    color: #44525e;
}

.section-copy > p {
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-heading {
    max-width: 830px;
    margin-bottom: 60px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

    font-size: 1.05rem;
    line-height: 1.75;
}


/* ============================================================
   9. CHECK LIST
============================================================ */

.check-list {
    margin-top: 30px;

    display: grid;
    gap: 14px;
}

.check-list > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.check-list span {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    flex: 0 0 26px;

    border-radius: 50%;

    background: #e8f7e9;
    color: var(--green-deep);

    font-size: .8rem;
    font-weight: 900;
}

.check-list p {
    margin: 0;
    color: var(--ink);
}


/* ============================================================
   10. PROBLEM VISUAL
============================================================ */

.visual-card {
    position: relative;

    min-height: 530px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #0c2735,
            #0b433e
        );

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.10) 1px,
            transparent 1px
        );

    background-size: 25px 25px;
    opacity: .22;
}

.mini-chart-card {
    position: absolute;
    z-index: 3;

    top: 55px;
    right: 42px;

    width: 62%;

    padding: 26px;

    background: white;

    border-radius: 18px;

    box-shadow: var(--shadow-lg);
}

.mini-label {
    color: var(--green-deep);
    font-size: .65rem;
    letter-spacing: .1em;
    font-weight: 800;
}

.mini-chart-card h3 {
    margin: 7px 0 24px;
}

.fake-chart {
    height: 170px;

    display: flex;
    align-items: flex-end;
    gap: 8px;

    border-bottom: 1px solid var(--border);
}

.fake-chart span {
    flex: 1;

    min-height: 20px;

    border-radius: 5px 5px 0 0;

    background:
        linear-gradient(
            to top,
            #dc725b 0%,
            #dc725b 34%,
            #34b56a 34%,
            #34b56a 100%
        );
}

.chart-legend {
    display: flex;
    gap: 20px;

    margin-top: 15px;

    font-size: .72rem;
    color: var(--muted);
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.chart-legend i {
    width: 9px;
    height: 9px;
    border-radius: 2px;
}

.legend-revenue {
    background: #34b56a;
}

.legend-expense {
    background: #dc725b;
}

.barber-photo-placeholder {
    position: absolute;

    left: 45px;
    bottom: 45px;

    width: 58%;
    height: 245px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.02)
        );

    border: 1px solid rgba(255,255,255,.12);

    display: flex;
    align-items: flex-end;

    padding: 25px;

    color: white;

    font-weight: 700;
}


/* ============================================================
   11. DASHBOARD SHOWCASE
============================================================ */

.dashboard-section {
    background:
        linear-gradient(
            180deg,
            #f8faf9,
            white
        );
}

.dashboard-showcase {
    max-width: 1100px;
    margin: 0 auto;

    padding: 14px;

    border: 1px solid var(--border);
    border-radius: 26px;

    background: white;

    box-shadow: var(--shadow-lg);
}

.dashboard-image {
    width: 100%;
    border-radius: 17px;
}


/* ============================================================
   12. COLOR FINANCIAL METRICS
============================================================ */

.metric-demo-grid {
    max-width: 1100px;

    margin: 35px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.metric-demo {
    position: relative;

    min-height: 190px;

    padding: 25px;

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.metric-demo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.metric-demo::after {
    content: "";

    position: absolute;
    width: 100px;
    height: 100px;

    right: -25px;
    bottom: -30px;

    border-radius: 50%;

    background: rgba(255,255,255,.50);
}

.metric-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 10px;

    font-weight: 850;
}

.metric-demo span,
.metric-demo strong,
.metric-demo small {
    position: relative;
    z-index: 2;

    display: block;
}

.metric-demo span {
    margin-bottom: 3px;

    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 800;
}

.metric-demo strong {
    margin-bottom: 7px;

    font-size: 2rem;
    letter-spacing: -.04em;
}

.metric-demo small {
    color: #58636c;
}

.metric-revenue {
    background: var(--revenue-bg);
    border: 1px solid #c7eacf;
}

.metric-revenue .metric-icon {
    background: var(--revenue-accent);
    color: white;
}

.metric-revenue span {
    color: var(--revenue-accent);
}

.metric-expenses {
    background: var(--expense-bg);
    border: 1px solid #f0d3ca;
}

.metric-expenses .metric-icon {
    background: var(--expense-accent);
    color: white;
}

.metric-expenses span {
    color: var(--expense-accent);
}

.metric-profit {
    background: var(--profit-bg);
    border: 1px solid #d0e2f4;
}

.metric-profit .metric-icon {
    background: var(--profit-accent);
    color: white;
}

.metric-profit span {
    color: var(--profit-accent);
}

.metric-margin {
    background: var(--margin-bg);
    border: 1px solid #ebdca4;
}

.metric-margin .metric-icon {
    background: var(--margin-accent);
    color: white;
}

.metric-margin span {
    color: #a97a12;
}

.demo-disclaimer {
    margin: 18px auto 0;

    text-align: center;

    font-size: .72rem;
    color: #899198;
}


/* ============================================================
   13. HOW IT WORKS
============================================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    min-height: 270px;

    padding: 30px;

    border-radius: var(--radius-md);
    border: 1px solid var(--border);

    background: white;

    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 14px;

    background: var(--navy-950);
    color: var(--green-light);

    font-size: .8rem;
    font-weight: 850;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    margin-bottom: 0;
    color: var(--muted);
}


/* ============================================================
   14. COMPARISON
============================================================ */

.comparison-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.comparison-table {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow-sm);
}

.comparison-head,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-head > div {
    padding: 23px;

    font-weight: 800;

    background: #e9f5ed;

    border-right: 1px solid var(--border);
}

.comparison-head > div:last-child {
    color: var(--green-deep);
    border-right: none;
}

.comparison-row > div {
    min-height: 72px;

    display: flex;
    align-items: center;

    padding: 18px 23px;

    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);

    color: var(--text);
}

.comparison-row > div:last-child {
    border-right: none;

    color: var(--ink);
    font-weight: 650;
}


/* ============================================================
   15. FEATURES
============================================================ */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 245px;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: white;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    border-color: #bddda9;

    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 12px;

    background: #edf8e8;
    color: var(--green-deep);

    font-size: 1.3rem;
    font-weight: 800;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}


/* ============================================================
   16. BUILT BY BARBERS
============================================================ */

.barber-built {
    background: white;
}

.barber-story-visual {
    min-height: 500px;

    position: relative;

    display: flex;
    align-items: flex-end;

    padding: 45px;

    overflow: hidden;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(115,200,44,.30),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #071722,
            #0c3338
        );

    box-shadow: var(--shadow-md);
}

.barber-story-visual::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.10) 1px,
            transparent 1px
        );

    background-size: 26px 26px;
    opacity: .28;
}

.story-number {
    position: relative;
    z-index: 2;

    color: var(--green-light);

    font-size: 6rem;
    line-height: .85;
    font-weight: 850;
    letter-spacing: -.07em;
}

.story-number span {
    display: block;

    max-width: 300px;

    margin-top: 22px;

    color: white;

    font-size: 1.2rem;
    line-height: 1.35;
    letter-spacing: normal;
}

.story-tagline {
    display: block;

    margin-top: 30px;

    color: var(--green-deep);

    font-size: 1.05rem;
}


/* ============================================================
   17. FREE MONTH
============================================================ */

.free-month-section {
    background: var(--soft-gray);
}

.free-month-card {
    position: relative;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;

    overflow: hidden;

    padding: 75px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(52,181,106,.22),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--navy-950),
            #0a3337
        );

    color: white;

    box-shadow: var(--shadow-lg);
}

.free-month-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.10) 1px,
            transparent 1px
        );

    background-size: 25px 25px;
    opacity: .25;

    pointer-events: none;
}

.free-copy,
.free-visual {
    position: relative;
    z-index: 2;
}

.free-copy h2 {
    margin-bottom: 20px;
}

.free-copy > p {
    max-width: 610px;

    color: rgba(255,255,255,.72);

    font-size: 1.05rem;
}

.free-benefits {
    display: grid;
    gap: 10px;

    margin: 30px 0;
}

.free-benefits span {
    color: rgba(255,255,255,.90);
}

.free-copy small {
    display: block;

    margin-top: 13px;

    color: rgba(255,255,255,.50);
}

.free-report-card {
    max-width: 390px;

    margin-left: auto;

    padding: 30px;

    border-radius: 22px;

    background: white;
    color: var(--ink);

    transform: rotate(2deg);

    box-shadow: var(--shadow-lg);
}

.report-ready {
    display: inline-block;

    margin-bottom: 22px;

    padding: 7px 10px;

    border-radius: 8px;

    background: #e6f7e9;
    color: var(--green-deep);

    font-size: .73rem;
    font-weight: 800;
}

.free-report-card > strong {
    display: block;

    margin-bottom: 20px;

    font-size: 1.3rem;
}

.free-report-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 0;

    border-top: 1px solid var(--border);
}

.free-report-card span {
    color: var(--muted);
}

.free-report-card b {
    font-size: 1.1rem;
}


/* ============================================================
   18. PRICING
============================================================ */

.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 570px;

    padding: 36px;

    border: 1px solid var(--border);
    border-radius: 24px;

    background: white;

    box-shadow: var(--shadow-sm);
}

.pricing-featured {
    transform: translateY(-12px);

    border-color: var(--green);

    background:
        linear-gradient(
            145deg,
            #071823,
            #0b2934
        );

    color: white;

    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 25px;

    padding: 8px 13px;

    border-radius: 999px;

    background: var(--green);
    color: #07131a;

    font-size: .7rem;
    font-weight: 850;
}

.pricing-name {
    margin-bottom: 13px;

    color: var(--muted);

    font-size: .85rem;
    font-weight: 750;
}

.pricing-featured .pricing-name {
    color: rgba(255,255,255,.65);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;

    margin-bottom: 22px;
}

.pricing-price strong {
    font-size: 3rem;
    letter-spacing: -.05em;
}

.pricing-price span {
    color: var(--muted);
}

.pricing-featured .pricing-price span {
    color: rgba(255,255,255,.60);
}

.pricing-card > p {
    min-height: 90px;
    color: var(--muted);
}

.pricing-featured > p {
    color: rgba(255,255,255,.68);
}

.pricing-card ul {
    list-style: none;

    padding: 24px 0;
    margin: 0 0 25px;

    border-top: 1px solid var(--border);

    flex-grow: 1;
}

.pricing-featured ul {
    border-color: rgba(255,255,255,.13);
}

.pricing-card li {
    position: relative;

    margin: 12px 0;
    padding-left: 25px;

    color: var(--text);
}

.pricing-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--green-deep);
    font-weight: 900;
}

.pricing-featured li {
    color: rgba(255,255,255,.78);
}

.pricing-featured li::before {
    color: var(--green-light);
}

.pricing-note {
    margin-top: 35px;

    padding: 24px 30px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--off-white);
}

.pricing-note strong {
    display: block;
    margin-bottom: 4px;
}

.pricing-note p {
    margin: 0;
    font-size: .88rem;
}


/* ============================================================
   19. FAQ
============================================================ */

.faq-container {
    max-width: 950px;
}

.faq-list {
    border-top: 1px solid #d5ddda;
}

.faq-list details {
    border-bottom: 1px solid #d5ddda;
}

.faq-list summary {
    position: relative;

    padding: 24px 45px 24px 0;

    list-style: none;

    cursor: pointer;

    color: var(--ink);

    font-size: 1.05rem;
    font-weight: 680;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";

    position: absolute;
    right: 5px;
    top: 21px;

    color: var(--green-deep);

    font-size: 1.4rem;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 790px;

    padding-bottom: 25px;
    margin-bottom: 0;

    color: var(--muted);
}


/* ============================================================
   20. FINAL CTA
============================================================ */

.final-cta {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(115,200,44,.20),
            transparent 25%
        ),
        var(--navy-950);

    color: white;
}

.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.final-cta h2 {
    max-width: 850px;

    margin-bottom: 15px;

    font-size: clamp(2rem, 3vw, 3.2rem);
}

.final-cta p {
    margin-bottom: 0;
    color: rgba(255,255,255,.65);
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;

    min-width: 230px;
}


/* ============================================================
   21. FOOTER
============================================================ */

.site-footer {
    padding: 70px 0 25px;

    background: #04111a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr 1fr;
    gap: 60px;
}

.footer-logo {
    width: 210px;
    margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
    max-width: 340px;

    color: rgba(255,255,255,.55);

    font-size: .86rem;
}

.footer-brand strong {
    color: var(--green-light);
    font-size: .82rem;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 18px;

    font-size: .86rem;
    color: white;
}

.footer-links a {
    display: block;

    margin: 10px 0;

    color: rgba(255,255,255,.58);

    font-size: .84rem;
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 60px;
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.10);

    color: rgba(255,255,255,.40);

    font-size: .72rem;
}


/* ============================================================
   22. TABLET
============================================================ */

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }

    .hero-grid,
    .split-grid,
    .comparison-layout,
    .free-month-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .hero-product {
        max-width: 760px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid > div:nth-child(2) {
        border-right: none;
    }

    .trust-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .metric-demo-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: auto;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-card {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        flex-direction: row;
    }
}


/* ============================================================
   23. MOBILE
============================================================ */

@media (max-width: 720px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand-logo {
        width: 155px;
    }

    .nav-actions .button-secondary {
        display: none;
    }

    .nav-actions .button-primary {
        min-height: 42px;
        padding: 10px 15px;
        font-size: .78rem;
    }

    .hero-grid {
        gap: 55px;
        padding-top: 60px;
        padding-bottom: 85px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    h2 {
        font-size: clamp(2.05rem, 10vw, 3.2rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .product-frame {
        transform: none;
        padding: 9px;
        border-radius: 20px;
    }

    .product-status {
        left: 15px;
        right: 15px;
        bottom: -28px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .metric-demo-grid,
    .feature-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .metric-demo {
        min-height: 170px;
    }

    .visual-card {
        min-height: 450px;
    }

    .mini-chart-card {
        width: calc(100% - 40px);
        top: 25px;
        right: 20px;
    }

    .barber-photo-placeholder {
        left: 20px;
        bottom: 25px;
        width: calc(100% - 40px);
        height: 150px;
    }

    .comparison-head,
    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-head > div,
    .comparison-row > div {
        padding: 15px;
        font-size: .78rem;
    }

    .free-month-card {
        padding: 42px 25px;
        gap: 45px;
    }

    .free-report-card {
        margin: auto;
        transform: none;
    }

    .pricing-card {
        padding: 28px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}
/* ============================================================
   MOBILE NAVIGATION BEHAVIOR
============================================================ */

@media (max-width: 1050px) {

    .mobile-nav-toggle {
        width: 44px;
        height: 44px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;

        margin-left: auto;

        border: 1px solid var(--border);
        border-radius: 10px;

        background: white;

        cursor: pointer;
    }

    .mobile-nav-toggle span {
        width: 19px;
        height: 2px;

        display: block;

        border-radius: 999px;

        background: var(--ink);

        transition:
            transform .2s ease,
            opacity .2s ease;
    }

    .mobile-nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;

        top: 82px;
        left: 24px;
        right: 24px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        border: 1px solid var(--border);
        border-radius: 16px;

        background: white;

        box-shadow: var(--shadow-md);
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 15px;

        border-radius: 9px;
    }

    .main-nav a:hover {
        background: var(--soft-gray);
    }
}

@media (max-width: 720px) {

    .nav-wrap {
        position: relative;
    }

    .main-nav {
        top: 70px;
        left: 15px;
        right: 15px;
    }

    .nav-actions {
        margin-left: 0;
    }

}
