/* ===================================================
   BLACK BELT TRACKING SERVICE — AD-FIRST PREMIUM DARK
   =================================================== */

/* — Design Tokens — */
:root {
    --bg: #111113;
    --bg-card: #1a1a1e;
    --bg-card-alt: #141417;
    --bg-steel: #1E2430;
    --bg-navy-deep: #141820;
    --bg-surface: #1e1e22;
    --text: #e8e4df;
    --text-champagne: #E5C8A8;
    --text-muted: #9a958e;
    --text-dim: #6b665f;
    --accent: #c47f3c;
    --accent-hover: #d99247;
    --accent-glow: rgba(196, 127, 60, 0.25);
    --accent-subtle: rgba(196, 127, 60, 0.08);
    --champagne: #E5C8A8;
    --champagne-dim: rgba(229, 200, 168, 0.12);
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

ul,
ol {
    list-style: none;
}

/* — Layout — */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 130px 0;
    position: relative;
}

.section--dark {
    background: var(--bg-card-alt);
}

.section--steel {
    background: var(--bg-steel);
}

.section--navy-deep {
    background: var(--bg-navy-deep);
}

.section--bordered {
    border-top: 1px solid rgba(196, 127, 60, 0.15);
}

.section__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 64px;
    text-align: center;
    color: var(--text);
}

.section__title--left {
    text-align: left;
}

/* — Buttons — */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn--accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-light);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--xl {
    padding: 20px 52px;
    font-size: 1.2rem;
    border-radius: var(--radius);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.nav--scrolled {
    background: rgba(17, 17, 19, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

.nav__logo:hover {
    color: var(--text);
}

.nav__logo-icon {
    color: var(--accent);
    font-size: 1.4rem;
}

.nav__list {
    display: flex;
    gap: 28px;
}

.nav__link {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--text);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    margin-left: 16px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0 0 20px;
    z-index: 1001;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO — HIGH IMPACT ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 30px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(196, 127, 60, 0.1) 0%, transparent 35%),
        linear-gradient(225deg, rgba(30, 36, 48, 0.6) 0%, transparent 50%),
        linear-gradient(160deg, #111113 0%, #18181c 50%, #111113 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(196, 127, 60, 0.02) 60px, rgba(196, 127, 60, 0.02) 61px);
    animation: heroShift 30s linear infinite;
}

@keyframes heroShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196, 127, 60, 0.08), transparent);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero__eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champagne);
    margin-bottom: 16px;
    opacity: 0.8;
}

.hero__headline {
    font-family: var(--serif);
    font-size: clamp(3rem, 7.5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 620px;
    font-weight: 400;
    line-height: 1.6;
}

.hero__sub strong {
    color: var(--champagne);
    font-weight: 700;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}



/* ===== OWNER INFO ===== */
.hero__owner {
    margin-top: 32px;
    padding-left: 20px;
    border-left: 2px solid var(--accent);
}

.hero__owner-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.hero__owner-role {
    font-size: 0.85rem;
    color: var(--champagne);
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__owner-biz {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* ===== POWER STRIP / TRUST BAR ===== */
.power-strip {
    background: var(--bg-steel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    overflow: hidden;
}

.power-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.power-strip__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    font-weight: 600;
    margin-right: 8px;
}

.power-strip__list {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-champagne);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.power-strip__sep {
    color: var(--accent);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ===== PRICING BILLBOARD ===== */
.pricing {
    background: var(--bg);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 720px;
    margin: 0 auto 36px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 52px 40px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 50px var(--accent-glow), 0 0 100px rgba(196, 127, 60, 0.1);
}

.pricing-card--featured::before {
    opacity: 1;
}

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

.pricing-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--champagne);
    background: var(--champagne-dim);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.pricing-card__amount {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1;
}

.pricing-card__dollar {
    font-size: 2rem;
    vertical-align: top;
    line-height: 1;
    color: var(--accent);
}

.pricing-card__per {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card__desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.pricing__cta {
    display: block;
    max-width: 400px;
    margin: 0 auto 28px;
    text-align: center;
}

.pricing__fine {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== OUTCOME-DRIVEN FEATURES ===== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(196, 127, 60, 0.3);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card__icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-card__icon-wrap svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.feature-card__title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== MISSION / WHY IT MATTERS ===== */
/* ===== BUILT FOR COURTS ===== */
.built-for-courts {
    position: relative;
    padding: 140px 0;
    color: #fff;
    background: #111;
    background-image: url('courthouse.jpg');
    background-size: cover;
    background-position: center;
}

.built-for-courts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 17, 19, 0.8), rgba(17, 17, 19, 0.6), rgba(17, 17, 19, 0.9));
    z-index: 1;
}

.built-for-courts__inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.built-for-courts__eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champagne);
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(229, 200, 168, 0.1);
    border: 1px solid rgba(229, 200, 168, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.built-for-courts__headline {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.built-for-courts__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 660px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* ===== HOW IT WORKS (Timeline) ===== */
.timeline {
    max-width: 720px;
    margin: 0 auto 48px;
}

.timeline__step {
    display: flex;
    gap: 28px;
    position: relative;
    padding-bottom: 44px;
}

.timeline__step:last-child {
    padding-bottom: 0;
}

.timeline__step::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border));
}

.timeline__step:last-child::before {
    display: none;
}

.timeline__num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--bg);
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 24px var(--accent-glow);
}

.timeline__body {
    padding-top: 6px;
}

.timeline__title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline__text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Callout */
.callout {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
}

.callout__title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--accent);
}

.callout__title em {
    font-style: italic;
}

.callout__text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== AUDIENCE ===== */
.audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-4px);
}

.card__icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: 12px;
    margin-bottom: 24px;
}

.card__icon {
    width: 26px;
    height: 26px;
    color: var(--accent);
}

.card__title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card__text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card__note {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

/* ===== PRIVACY ===== */
.privacy__inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy__icon-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: 50%;
}

.privacy__icon {
    width: 38px;
    height: 38px;
    color: var(--accent);
}

.privacy__text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== EQUIPMENT ===== */
.equipment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.equipment__list li {
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    line-height: 1.6;
}

.equipment__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.equipment__list li:last-child {
    border-bottom: none;
}

.equipment__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipment__graphic {
    width: 200px;
    height: 200px;
    color: var(--accent);
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* ===== AERIAL BANNER (Service Area) ===== */
.aerial-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aerial-banner__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aerial-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.aerial-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(17, 17, 19, 0.7) 0%,
            rgba(17, 17, 19, 0.3) 30%,
            rgba(17, 17, 19, 0.15) 50%,
            rgba(17, 17, 19, 0.35) 70%,
            rgba(17, 17, 19, 0.85) 100%),
        linear-gradient(to right,
            rgba(17, 17, 19, 0.5) 0%,
            transparent 40%,
            transparent 60%,
            rgba(17, 17, 19, 0.5) 100%);
}

.aerial-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 80px 24px;
}

.aerial-banner__eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--champagne);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(229, 200, 168, 0.1);
    border: 1px solid rgba(229, 200, 168, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.aerial-banner__headline {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 32px;
    text-shadow:
        0 2px 30px rgba(0, 0, 0, 0.6),
        0 4px 60px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.aerial-banner__desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}


/* ===== FAQ (Accordion) ===== */
.accordion {
    max-width: 740px;
    margin: 0 auto;
}

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

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.accordion__trigger:hover {
    color: var(--accent);
}

.accordion__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}

.accordion__trigger[aria-expanded="true"] .accordion__chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion__panel p {
    padding-bottom: 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--bg-steel) 0%, var(--bg) 50%, var(--bg-steel) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Custom properties for GSAP animation */
    --glow-opacity: 1;
    --glow-scale: 1;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, var(--accent-glow), transparent);
    opacity: var(--glow-opacity);
    transform: scale(var(--glow-scale));
}

.final-cta__headline {
    position: relative;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.final-cta__sub {
    position: relative;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.final-cta .btn {
    position: relative;
}

/* ===== CONTACT ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.contact__phone-panel {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact__number {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.contact__number:hover {
    color: var(--accent-hover);
}

.contact__call-btn {
    margin-bottom: 28px;
}

.contact__info {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.contact__name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact__role {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact__biz {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.contact-form__title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form__group {
    margin-bottom: 16px;
}

.contact-form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form__input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition);
}

.contact-form__input::placeholder {
    color: var(--text-dim);
}

.contact-form__input:focus {
    border-color: var(--accent);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__disclaimer {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 12px;
    text-align: center;
    line-height: 1.5;
}

/* Honeypot — invisible to humans */
.contact-form__hp-wrap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

/* CAPTCHA styling */
.contact-form__captcha {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 4px;
}

.contact-form__captcha-q {
    color: var(--champagne);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
}

.contact-form__input--short {
    max-width: 140px;
}

/* Form status messages */
.contact-form__status {
    text-align: center;
    padding: 0;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all 0.4s ease;
    overflow: hidden;
    max-height: 0;
}

.contact-form__status--visible {
    padding: 14px 16px;
    margin-top: 12px;
    max-height: 100px;
}

.contact-form__status--success {
    background: rgba(52, 199, 89, 0.12);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, 0.25);
}

.contact-form__status--error {
    background: rgba(255, 69, 58, 0.12);
    color: #ff6961;
    border: 1px solid rgba(255, 69, 58, 0.25);
}

.contact-form__status--sending {
    background: var(--accent-subtle);
    color: var(--champagne);
    border: 1px solid rgba(229, 200, 168, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer__logo {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.footer__phone {
    color: var(--accent);
    font-size: 0.9rem;
    margin-left: 16px;
}

.footer__brand {
    display: flex;
    align-items: center;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__link {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__link:hover {
    color: var(--accent);
}

.footer__disclaimer {
    width: 100%;
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .audience__grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .aerial-banner {
        min-height: 70vh;
    }

    .aerial-banner__headline {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .aerial-banner__content {
        padding: 60px 24px;
    }

    .privacy__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .equipment__visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(17, 17, 19, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
        transition: right var(--transition);
        z-index: 999;
    }

    .nav__menu--open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav__link::after {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__inner {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero__headline {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero__eyebrow {
        font-size: 0.72rem;
    }

    .hero__sub {
        font-size: 0.95rem;
    }

    .hero__ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero__ctas .btn {
        width: 100%;
        text-align: center;
    }

    /* Make hero Call button ghost on mobile so it doesn't blob with the FAB */
    .hero__ctas .btn--accent {
        background: transparent;
        color: var(--accent);
        border: 1.5px solid var(--accent);
        box-shadow: none;
    }

    .hero__owner {
        margin-top: 24px;
        padding-left: 16px;
    }

    /* Grids */
    .features__grid,
    .audience__grid,
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    /* Section spacing */
    .section {
        padding: 80px 0;
    }

    /* Section titles — scale down */
    .section__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 36px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section__title--left {
        text-align: center;
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    /* Built for Courts — scale for mobile */
    .built-for-courts {
        padding: 80px 0;
    }

    .built-for-courts__headline {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .built-for-courts__text {
        font-size: 0.95rem;
    }

    /* Privacy — constrain text */
    .privacy__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 8px;
    }

    .privacy__text {
        font-size: 0.9rem;
    }

    /* Trust Bar */
    .power-strip__label {
        font-size: 0.75rem;
        display: block;
        width: 100%;
        margin-bottom: 8px;
    }

    .power-strip__list {
        font-size: 0.9rem;
        gap: 10px;
    }

    .power-strip__inner {
        gap: 8px;
        padding: 0 8px;
    }

    /* Aerial banner */
    .aerial-banner__headline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    /* Final CTA */
    .final-cta {
        padding: 72px 0;
    }

    .final-cta__headline {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    /* Callout */
    .callout {
        padding: 20px;
    }

    /* Timeline */
    .timeline__step {
        gap: 16px;
    }

    .timeline__num {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .timeline__step::before {
        left: 22px;
        top: 48px;
    }
}

/* Nav toggle animation */
.nav__toggle--active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle--active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Focus styles */
.btn:focus-visible,
.nav__link:focus-visible,
.accordion__trigger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}


/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bar {
    display: none;
    /* hidden on desktop */
}

@media (max-width: 768px) {

    /* Hide top-nav CTA on mobile */
    .nav__cta {
        display: none !important;
    }

    /* Add bottom padding so content isn't hidden behind bar */
    body {
        padding-bottom: 90px;
    }

    .mobile-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        height: 80px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    /* SVG curved notch background */
    .mobile-bar__bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80px;
        z-index: 0;
        filter: drop-shadow(0 -4px 20px rgba(0, 0, 0, 0.35));
    }

    /* Items row */
    .mobile-bar__items {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: flex-end;
        justify-content: space-around;
        height: 100%;
        padding: 0 12px 10px;
    }

    /* Individual nav items */
    .mobile-bar__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        color: var(--text-muted);
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.25s ease;
        padding-bottom: 4px;
    }

    .mobile-bar__item svg {
        stroke: var(--text-muted);
        transition: stroke 0.25s ease;
    }

    .mobile-bar__item:hover,
    .mobile-bar__item:active {
        color: var(--accent);
    }

    .mobile-bar__item:hover svg,
    .mobile-bar__item:active svg {
        stroke: var(--accent);
    }

    /* Spacer for the FAB center gap */
    .mobile-bar__spacer {
        width: 64px;
        flex-shrink: 0;
    }

    /* Floating Call Now FAB */
    .mobile-bar__fab {
        position: absolute;
        left: 50%;
        top: -16px;
        transform: translateX(-50%);
        z-index: 2;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow:
            0 4px 20px rgba(196, 127, 60, 0.4),
            0 0 40px rgba(196, 127, 60, 0.15);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        text-decoration: none;
    }

    .mobile-bar__fab svg {
        stroke: #fff;
    }

    .mobile-bar__fab:hover,
    .mobile-bar__fab:active {
        transform: translateX(-50%) scale(1.08);
        box-shadow:
            0 6px 28px rgba(196, 127, 60, 0.55),
            0 0 50px rgba(196, 127, 60, 0.25);
    }

    /* Subtle pulse ring */
    .mobile-bar__fab::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid rgba(196, 127, 60, 0.3);
        animation: fab-pulse 2.5s ease-in-out infinite;
    }

    @keyframes fab-pulse {

        0%,
        100% {
            opacity: 0.4;
            transform: scale(1);
        }

        50% {
            opacity: 0;
            transform: scale(1.25);
        }
    }
}