/* ============================================================
   US DOT UCR Filing — Modern Design System
   Color: Navy + Emerald  |  Font: Roboto (kept)
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
    /* Brand Colors */
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #334155;
    --navy-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;

    /* Accent */
    --emerald-600: #059669;
    --emerald-500: #10B981;
    --emerald-400: #34D399;
    --emerald-100: #D1FAE5;
    --emerald-50: #ECFDF5;

    /* Blue accents */
    --blue-700: #1D4ED8;
    --blue-600: #2563EB;
    --blue-500: #3B82F6;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;

    /* Status */
    --red-500: #EF4444;
    --red-50: #FEF2F2;
    --amber-500: #F59E0B;
    --amber-50: #FFFBEB;

    /* Surfaces */
    --bg-body: #F8FAFC;
    --bg-card: #FFFFFF;
    --border-default: #E2E8F0;
    --border-hover: #CBD5E1;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
    --shadow-glow-emerald: 0 0 20px rgba(16, 185, 129, 0.25);
    --shadow-glow-blue: 0 0 20px rgba(37, 99, 235, 0.25);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s var(--ease-out);
    --transition-normal: all 0.3s var(--ease-out);
    --transition-slow: all 0.5s var(--ease-out);
}


/* ── Header ── */
header, .header-1, header.header-1, header.header-1.sticky {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    -webkit-animation: none !important;
    animation: none !important;
}

.header-logo {
    height: 78px;
    max-height: 85px;
    margin: 4px 5px;
    transition: var(--transition-fast);
}

.header-logo:hover {
    transform: scale(1.03);
}

.header-logo:active,
.header-logo:focus {
    transform: scale(1.01);
    outline: none !important;
}

.logo-text {
    font-size: 20px;
    color: white;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.logo-text-small {
    font-size: 15px;
    color: white;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
}


/* ── Headings ── */
.akc-custom-h1 {
    font-size: 26px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: var(--navy-900);
}

.akc-custom-h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.akc-custom-h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.akc-custom-h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}


/* ── Color Utilities ── */
.color-primary-blue {
    color: var(--blue-600);
}

.color-black {
    color: var(--navy-900);
}

.color-light-black {
    color: var(--navy-700);
}

.color-orange {
    color: var(--emerald-500);
}

.bg-primary-blue {
    background-color: var(--blue-50);
}

.bg-light-success-2 {
    background-color: var(--emerald-50);
}

.akc-bg-dark {
    background-color: var(--navy-800);
}

.akc-bg-light {
    background-color: var(--slate-100);
}

.border-primary-small {
    border: 1px solid var(--blue-500) !important;
}


/* ── Shadow ── */
.akc-shadow-md {
    box-shadow: var(--shadow-md);
}


/* ── Font Size Scale ── */
.akc-fs-0 { font-size: 5px; }
.akc-fs-1 { font-size: 10px; }
.akc-fs-2 { font-size: 15px; }
.akc-fs-3 { font-size: 20px; }
.akc-fs-4 { font-size: 25px; }
.akc-fs-5 { font-size: 30px; }
.akc-fs-6 { font-size: 35px; }
.akc-fs-7 { font-size: 40px; }
.akc-fs-8 { font-size: 45px; }
.akc-fs-9 { font-size: 50px; }
.akc-fs-10 { font-size: 55px; }

/* ── Font Weight Scale ── */
.akc-fw-1 { font-weight: 100 !important; }
.akc-fw-2 { font-weight: 200 !important; }
.akc-fw-3 { font-weight: 300 !important; }
.akc-fw-4 { font-weight: 400 !important; }
.akc-fw-5 { font-weight: 500 !important; }
.akc-fw-6 { font-weight: 600 !important; }
.akc-fw-7 { font-weight: 700 !important; }
.akc-fw-8 { font-weight: 800 !important; }
.akc-fw-9 { font-weight: 900 !important; }


/* ── Buttons ── */
.akc-custom-button {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: var(--transition-normal);
    text-decoration: none;
}

.akc-custom-button:hover {
    background: linear-gradient(135deg, var(--blue-700) 0%, #1E40AF 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
    text-decoration: none;
}

.akc-custom-button:active {
    transform: translateY(0);
}

.akc-custom-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-skip {
    background-color: var(--slate-500);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-skip:hover {
    background-color: var(--navy-600);
    color: white;
}


/* ── Required Marker ── */
.akc-required:after {
    content: "*";
    position: relative;
    font-size: inherit;
    color: var(--red-500);
    padding-left: 0.25rem;
    font-weight: 600;
}


/* ── Inputs ── */
.akc-custom-input {
    position: relative;
    display: block;
    width: 100%;
    height: 44px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: var(--navy-900);
    background-color: #fff;
    transition: var(--transition-fast);
}

.akc-custom-input:focus,
.akc-custom-input:active {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
    outline: none;
}

.akc-custom-input::placeholder {
    color: var(--slate-400);
}

.akc-custom-input-lg {
    height: 52px;
    font-size: 18px;
    padding: 10px 18px;
}

.akc-custom-input-circular {
    border-radius: var(--radius-md);
}


/* ── Checkboxes ── */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .akc-custom-checkbox input[type=checkbox] {
        --active: var(--emerald-500);
        --active-inner: #fff;
        --focus: 2px rgba(16, 185, 129, .25);
        --border: var(--slate-300);
        --border-hover: var(--emerald-500);
        --background: #fff;
        --disabled: var(--slate-100);
        --disabled-inner: var(--slate-200);
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

    .akc-custom-checkbox input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    .akc-custom-checkbox input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }

    .akc-custom-checkbox input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

    .akc-custom-checkbox input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    .akc-custom-checkbox input[type=checkbox]:disabled+label {
        cursor: not-allowed;
    }

    .akc-custom-checkbox input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    .akc-custom-checkbox input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    .akc-custom-checkbox input[type=checkbox]:not(.switch) {
        width: 21px;
    }

    .akc-custom-checkbox input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
    }

    .akc-custom-checkbox input[type=checkbox]:not(.switch):checked {
        --o: 1;
    }

    .akc-custom-checkbox input[type=checkbox]+label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    .akc-custom-checkbox input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }

    .akc-custom-checkbox input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }

    .akc-custom-checkbox input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }
}

.akc-custom-checkbox * {
    box-sizing: inherit;
}

.akc-custom-checkbox *:before,
.akc-custom-checkbox *:after {
    box-sizing: inherit;
}


/* ── Select Dropdowns ── */
.select-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.akc-custom-select {
    display: block;
    width: 100%;
    padding: 0px 5px;
    font-size: 13px;
    color: var(--navy-900);
    background-color: white;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-sm);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: var(--transition-fast);
}

.akc-custom-select:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
    outline: none;
}

.select-container::after {
    content: '\25BC';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    color: var(--navy-700);
    pointer-events: none;
}


/* ── Cards ── */
.card {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    transition: var(--transition-normal);
}

.card:hover {
    border-color: var(--slate-300);
    box-shadow: var(--shadow-lg);
}


/* ── Layout Utilities ── */
.akc-justify-content-start {
    justify-content: start;
}

.akc-justify-content-sm-center {}

@media (max-width: 576px) {
    .akc-justify-content-sm-center {
        justify-content: center !important;
    }
}

.akc-line-height-1 {
    line-height: 1;
}

.justify-center-in-md-left-in-sm {
    justify-content: start !important;
}

@media (max-width: 576px) {
    .justify-center-in-md-left-in-sm {
        justify-content: center !important;
    }
}

.akc-rounded {
    border-radius: var(--radius-md);
}

@media (max-width: 576px) {
    .custom-flex-wrap {
        flex-wrap: wrap;
    }
}


/* ── Spinners ── */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

.me-2 {
    margin-right: 0.5rem !important;
}


/* ============================================================
   HOME PAGE — New Sections
   ============================================================ */

/* ── Hero Section ── */
.hero-modern {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(17, 24, 39, 0.80) 100%), url('../img/images/hero-trucks.jpg') center/cover no-repeat;
    color: #fff;
    padding: 95px 0 115px;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate-400);
    max-width: 600px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-modern { padding: 50px 0 70px; }
}

/* ── Search Card ── */
.search-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-normal);
}

.search-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
}

.search-input-wrap {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.search-input-wrap:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.search-input-wrap input {
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    color: #fff;
    outline: none;
    font-family: "Roboto", sans-serif;
}

.search-input-wrap input::placeholder {
    color: var(--slate-400);
}

.btn-search-hero {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: var(--transition-normal);
    font-family: "Roboto", sans-serif;
}

.btn-search-hero:hover {
    background: linear-gradient(135deg, var(--blue-700) 0%, #1E40AF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

@media (max-width: 576px) {
    .search-input-wrap {
        flex-direction: column;
    }
    .btn-search-hero {
        width: 100%;
    }
}


/* ── Feature Cards ── */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--emerald-400);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.feature-icon.icon-emerald {
    background: var(--emerald-50);
    color: var(--emerald-600);
}

.feature-icon.icon-blue {
    background: var(--blue-50);
    color: var(--blue-600);
}

.feature-icon.icon-navy {
    background: rgba(15, 23, 42, 0.06);
    color: var(--navy-800);
}

.feature-card:hover .feature-icon.icon-emerald {
    background: var(--emerald-500);
    color: #fff;
    box-shadow: var(--shadow-glow-emerald);
}

.feature-card:hover .feature-icon.icon-blue {
    background: var(--blue-600);
    color: #fff;
    box-shadow: var(--shadow-glow-blue);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}


/* ── Section Styling ── */
.section-modern {
    padding: 80px 0;
}

.section-modern-alt {
    padding: 80px 0;
    background: var(--slate-50);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-600);
    background: var(--emerald-50);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.2;
    font-family: "Roboto", sans-serif;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate-500);
    max-width: 650px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-modern, .section-modern-alt { padding: 50px 0; }
    .section-title { font-size: 1.6rem; }
}


/* ── Testimonial Cards ── */
.testimonial-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition-normal);
    height: 100%;
}

.testimonial-card-modern:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--slate-300);
}

.testimonial-card-modern .stars {
    color: #FBBF24;
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-card-modern .quote {
    font-size: 0.95rem;
    color: var(--navy-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card-modern .author {
    font-weight: 700;
    color: var(--navy-900);
    font-size: 0.95rem;
}

.testimonial-card-modern .role {
    font-size: 0.825rem;
    color: var(--slate-500);
}


/* ── FAQ Accordion ── */
.faq-modern .accordion-item {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-modern .accordion-item:hover {
    border-color: var(--slate-300);
}

.faq-modern .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-900);
    background: var(--bg-card);
    padding: 18px 24px;
    font-family: "Roboto", sans-serif;
    box-shadow: none !important;
}

.faq-modern .accordion-button:not(.collapsed) {
    background: var(--emerald-50);
    color: var(--emerald-600);
}

.faq-modern .accordion-button::after {
    filter: none;
}

.faq-modern .accordion-body {
    padding: 0 24px 18px;
    color: var(--navy-700);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* ── CTA Banner ── */
.cta-modern {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(23, 37, 84, 0.85) 100%), url('../img/images/depot.jpg') center/cover no-repeat;
    padding: 85px 0;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-modern h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-modern .cta-phone {
    color: var(--emerald-400);
    font-size: 1.5rem;
    font-weight: 700;
}


/* ── Footer ── */
.footer-modern {
    background: var(--navy-900);
    color: var(--slate-400);
    padding: 50px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-modern h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-modern a {
    color: var(--slate-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-modern a:hover {
    color: var(--emerald-400);
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links li {
    margin-bottom: 8px;
}

.footer-legal-links li a {
    font-size: 0.9rem;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    font-size: 13px;
    line-height: 19px;
    color: var(--slate-400);
}

.footer-copyright {
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--emerald-500);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact-item span {
    color: var(--slate-400);
    font-size: 0.9rem;
}


/* ── About / Info Section ── */
.about-section {
    background: var(--slate-50);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .about-section { padding: 50px 0; }
}

.about-section .checked-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-section .checked-list li {
    position: relative;
    padding: 10px 0 10px 36px;
    font-size: 1rem;
    color: var(--navy-700);
    line-height: 1.5;
}

.about-section .checked-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: var(--emerald-50);
    color: var(--emerald-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}


/* ── Checkout Page Overrides ── */
.checkout-section {
    background: var(--bg-body);
    min-height: 100vh;
}

.checkout-info-card {
    background: var(--bg-card);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.checkout-info-card .info-label {
    font-size: 0.825rem;
    color: var(--slate-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.checkout-info-card .info-value {
    font-size: 1rem;
    color: var(--navy-900);
    font-weight: 600;
}

/* ── Stripe Element ── */
.StripeElement {
    background: white;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--slate-200);
    transition: var(--transition-fast);
    width: 100%;
}

.StripeElement--focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}


/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }