/* =========================================================
The Chevy Guy â€” Enhanced Stylesheet with Animations & Polish
========================================================= */

/* Theme tokens */
:root {
    --bg: #0b1a2b; /* navy base */
    --bg-2: #091422;
    --ink: #e8f2ff; /* light text */
    --ink-d: #b8c7db; /* muted text */
    --paper: #ffffff;
    --card: #0f2438;
    --stroke: rgba(255,255,255,.12);
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --gold: #ffb400; /* Gold highlight */
    --ink-deep: #101418; /* dark text on gold */
    --blue: #005b96; /* Chevy Blue */
    --blue-d: #003c6b; /* Darker blue for hover */
    --header-offset: 80px;
    --transition: all 0.3s ease;
}

/* Base & layout */
* { 
    box-sizing: border-box;
}

html, body { 
    height: 100%; 
    overflow-x: hidden; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1200px 600px at 110% -10%, #18314f 0%, rgba(24,49,79,0) 60%),
        radial-gradient(800px 500px at -10% 10%, #142439 0%, rgba(20,36,57,0) 55%),
        var(--bg);
    line-height: 1.55;
    padding-bottom: 80px;
}

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

header, section, footer { 
    width: 100%; 
}

.wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

img, video, canvas, svg { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Header */
.site-header {
    background: rgba(11,26,43,.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--stroke);
    transition: var(--transition);
}

.nav { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 68px; 
    margin: 0 auto; 
}

.brand { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
    font-weight: 800; 
    letter-spacing: .2px; 
    color: var(--ink); 
}

.brand .dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: var(--gold); 
    box-shadow: 0 0 0 6px rgba(217,169,60,.18);
    animation: pulse 2s infinite;
}

.brand small { 
    display: block; 
    font-weight: 600; 
    font-size: 12px; 
    color: var(--gold); 
    opacity: .9; 
}

.menu { 
    display: flex; 
    gap: 14px; 
    align-items: center; 
}

.menu a { 
    color: #e7eef7; 
    font-weight: 700; 
    opacity: .9;
    transition: var(--transition);
}

.menu a:hover {
    opacity: 1;
    color: var(--gold);
}

/* Hamburger */
.hamburger { 
    display: none; 
    color: var(--ink); 
    font-size: 24px; 
    cursor: pointer; 
}

@media (max-width: 600px) {
    .hamburger { display: block; }
    .menu { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 68px; 
        left: 0; 
        right: 0; 
        background: var(--bg); 
        padding: 20px; 
        gap: 10px; 
        box-shadow: var(--shadow);
    }
    #menu-toggle:checked + .hamburger + .menu { display: flex; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 15px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gold);
    color: var(--ink-deep);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover { 
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: #e7eef7;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 15px;
}

.btn-ghost:hover { 
    background: rgba(255,255,255,.06); 
}

.btn-blue { 
    background: var(--blue); 
    color: #fff; 
}

.btn-blue:hover { 
    background: var(--blue-d); 
}

.btn-gold { 
    background: var(--gold); 
    color: var(--ink-deep); 
}

/* Sections & headings */
.section { 
    padding: 64px 0; 
    color: var(--ink); 
}

h1 { 
    font-size: clamp(32px,4vw,54px); 
    line-height: 1.08; 
    margin: 12px 0 10px; 
    color: var(--ink); 
}

h2 { 
    font-size: clamp(24px,2.6vw,36px); 
    margin: 0 0 14px; 
    color: var(--ink); 
}

.lead { 
    font-size: 18px; 
    color: var(--ink-d); 
    max-width: 60ch; 
}

/* Anchor offset */
.section, #how, #deals, #trade, #services, #guide, #contact, #deal-form, #book-call, #hire-andrew {
    scroll-margin-top: var(--header-offset);
}

/* Hero */
.hero { 
    position: relative; 
    overflow: hidden; 
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: center;
    padding: 72px 0 56px;
    min-width: 0;
}
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25)),
        var(--hero) center/cover no-repeat;
    opacity: .5;
    pointer-events: none;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,169,60,.14);
    color: #ffe08b;
    border: 1px solid rgba(217,169,60,.4);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .35px;
    text-transform: uppercase;
}

.hero-ctas { 
    margin-top: 18px; 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
}

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

.kpi div {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    color: var(--ink);
    transition: var(--transition);
}

.kpi div:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

.hero-card {
    background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

/* Diagonal divider */
.cut {
    position: absolute;
    inset: auto 0 -80px 0;
    height: 160px;
    transform: skewY(-6deg);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
    pointer-events: none;
}

/* Process */
.process {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 22px;
    align-items: start;
    min-width: 0;
}

.timeline {
    position: relative;
    padding-left: 18px;
    margin-top: 10px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(var(--gold), rgba(217,169,60,0));
    opacity: .7;
}

.step {
    margin: 0 0 16px;
    background: #0f2236;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 14px;
    color: var(--ink);
    transition: var(--transition);
}

.step:hover {
    background: #132844;
    transform: translateX(5px);
}

.step strong { 
    color: #ffe08b; 
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial-card {
    background: #10263f;
    color: #e8f2ff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #2a4a6b;
    box-shadow: 0 2px 8px rgba(24,49,79,.15);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24,49,79,.25);
}

blockquote { 
    margin: 0 0 8px; 
    font-style: italic; 
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #0f2438;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 20px;
    color: var(--ink);
    transition: var(--transition);
}

.service-card:hover {
    background: #133045;
    transform: translateY(-2px);
}

/* Carousel */
.carousel-wrap { 
    position: relative; 
}

.carousel {
    --pad: 12px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - var(--pad)*2);
    gap: var(--pad);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar { 
    height: 8px; 
}

.carousel::-webkit-scrollbar-thumb { 
    background: rgba(255,255,255,.2); 
    border-radius: 99px; 
}

.carousel > * { 
    scroll-snap-align: start; 
    min-width: 0; 
}
@media (max-width: 600px) {
    .carousel {
        --pad: 8px;
        grid-auto-columns: calc(80% - var(--pad)*2) !important;
        gap: var(--pad);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .veh img {
        max-height: 200px; /* Limit image height */
        object-fit: cover;
    }
}

.veh {
    background: #0f2236;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
    transition: var(--transition);
}

.veh:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.35);
}

.veh img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.veh:hover img {
    filter: brightness(1.1);
}

.veh .pad { 
    padding: 14px; 
}

.veh h3 { 
    margin: 0 0 4px; 
    font-size: 18px; 
    color: var(--ink); 
}

.meta { 
    font-size: 14px; 
    color: var(--ink-d); 
}

/* Carousel arrows */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16,20,24,.8);
    border: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
    user-select: none;
    z-index: 5;
    color: #fff;
    transition: var(--transition);
}

.carousel-prev { 
    left: -6px; 
}

.carousel-next { 
    right: -6px; 
}

.carousel-prev:hover, .carousel-next:hover { 
    background: rgba(16,20,24,.95);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 900px) {
    .carousel-prev, .carousel-next { display: none; }
}

/* Buyer's Guide band */
.band {
    margin: 64px 0;
    background: linear-gradient(90deg, rgba(217,169,60,.18), rgba(217,169,60,.06));
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
}

.band .inner {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 22px;
    padding: 22px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
}

.band ul {
    margin: 10px 0;
    padding-left: 20px;
}

.band li {
    margin-bottom: 5px;
    color: var(--ink-d);
}

/* Forms */
.ui-form {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .ui-form input, .ui-form textarea, .ui-form select {
        font-size: 16px; /* Ensure readable text */
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .two {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}
form { 
    display: grid; 
    gap: 10px; 
}

input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: #0e2136;
    color: var(--ink);
    outline: none;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.25;
    transition: var(--transition);
}

input::placeholder, textarea::placeholder { 
    color: var(--ink-d); 
}

input:focus, textarea:focus, select:focus { 
    box-shadow: 0 0 0 3px rgba(217,169,60,.25);
    border-color: var(--gold);
}

.two { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    min-width: 0; 
    
}
@media (max-width: 600px) {
    .two {
        grid-template-columns: minmax(0, 1fr) !important;
    }
    input, textarea, select {
        width: 100%;
        box-sizing: border-box;
    }
}
p, h1, h2, h3 {
    overflow-wrap: break-word;
}
/* Hire Form */
#hireForm.ui-form {
    max-width: 400px;
    margin: 0 auto;
}

#hireForm input {
    margin-bottom: 10px;
}

#hireForm .btn {
    width: 100%;
}

/* Checkout and Guide Form */
#guideForm.ui-form, #footerForm.ui-form {
    max-width: 400px;
    margin: 0 auto;
}

#guideForm input, #footerForm input {
    margin-bottom: 10px;
}

#guideForm .btn, #footerForm .btn {
    width: 100%;
}

/* Footer */
footer {
    padding: 42px 0;
    border-top: 1px solid var(--stroke);
    color: #cfe0f0;
    background: var(--bg-2);
    display: block;
}

footer .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

footer a { 
    color: #e8f2ff;
    transition: var(--transition);
}

footer a:hover {
    color: var(--gold);
}

.copyright {
    margin-top: 16px;
    color: #9fb3c9;
    font-size: 12px;
    text-align: center;
}

/* Mobile sticky CTAs */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    gap: 10px;
    z-index: 10000;
    justify-content: space-between;
    padding: 10px 14px;
    background: linear-gradient(0deg, rgba(9,20,34,.95), rgba(9,20,34,.8));
    border-top: 1px solid var(--stroke);
    backdrop-filter: blur(10px);
}
@media (max-width: 600px) {
    .sticky-cta {
        display: flex;
    }
}
@media (max-width: 480px) {
    .sticky-cta .btn {
        font-size: 12px;
        padding: 8px 10px;
    }
}
}

.sticky-cta .btn {
    flex: 1;
    pointer-events: auto;
    font-weight: 800;
    padding: 14px 16px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    border: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 26, 43, 0.80);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    color: #142439;
    padding: 2rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    text-align: center;
    min-width: 320px;
    max-width: 400px;
    margin: auto;
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 28px;
    color: #005b96;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: #ff4444;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    filter: none;
}

/* Responsive Fixes */
@media (max-width: 900px) {
    :root { --header-offset: 68px; }
    .sticky-cta { display: none; }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .kpi { grid-template-columns: 1fr 1fr 1fr; }
    .process { grid-template-columns: 1fr; }
    .band .inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .carousel { grid-auto-columns: calc(50% - var(--pad)*2); }
}

@media (max-width: 600px) {
    html { -webkit-text-size-adjust: 100%; }
    .wrap { padding-left: 16px; padding-right: 16px; }
    body {
        background:
            radial-gradient(1200px 600px at 110% -10%, #18314f 0%, rgba(24,49,79,0) 60%),
            radial-gradient(800px 500px at -10% 10%, #142439 0%, rgba(20,36,57,0) 55%),
            var(--bg);
        color: var(--ink);
        padding-bottom: 100px;
    }

    h1 { font-size: clamp(26px, 7vw, 34px); line-height: 1.15; color: var(--ink); }
    h2 { font-size: clamp(20px, 5.5vw, 26px); line-height: 1.2; color: var(--ink); }
    .lead { font-size: 16px; color: var(--ink-d); }

    .nav { height: 64px; }
    .menu .btn { padding: 10px 14px; }
    .sticky-cta { display: flex; bottom: 0; }

    .hero-inner { grid-template-columns: 1fr !important; gap: 18px; padding: 60px 0 40px; }
    .hero-ctas { gap: 10px; }
    .kpi { grid-template-columns: 1fr !important; gap: 10px; }

    .process { grid-template-columns: 1fr !important; gap: 14px; }
    .timeline { margin-top: 4px; padding-left: 14px; }

    .carousel {
        --pad: 10px;
        grid-auto-columns: calc(85% - var(--pad)*2) !important;
        gap: var(--pad);
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .veh h3 { font-size: 17px; color: var(--ink); }
    .meta { font-size: 13px; color: var(--ink-d); }
    .veh .pad { padding: 12px; }

    .two { grid-template-columns: 1fr !important; gap: 10px; }
    input, textarea, select { font-size: 16px; color: var(--ink); }
    form .btn, .btn { width: 100%; }

    .band .inner { grid-template-columns: 1fr !important; gap: 14px; }
    footer .two { grid-template-columns: 1fr !important; }

    .testimonial-grid, .services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .sticky-cta .btn { font-size: 12px; padding: 8px 12px; }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* style.css (partial updates for mobile fixes) */

/* Ensure global box-sizing and reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Font consistency */
body {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: center;
    padding: 72px 0 56px;
    min-width: 0;
}
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}
@media (max-width: 600px) {
    .hero-inner {
        padding: 40px 16px;
    }
    .hero-card {
        padding: 20px;
    }
    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}

/* Carousel */
.carousel-wrap {
    position: relative;
    margin: 32px 0;
}
.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(85% - var(--pad, 8px) * 2);
    gap: var(--pad, 8px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.veh img {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 600px) {
    .carousel {
        grid-auto-columns: calc(80% - var(--pad, 8px) * 2);
        gap: 8px;
    }
    .veh img {
        max-height: 200px;
    }
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Forms */
.ui-form {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.ui-form input, .ui-form textarea, .ui-form select {
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .two {
        grid-template-columns: minmax(0, 1fr) !important;
    }
    .ui-form input, .ui-form textarea {
        font-size: 16px;
        padding: 10px;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    gap: 10px;
    z-index: 10000;
    justify-content: space-between;
    padding: 10px 14px;
    background: linear-gradient(0deg, rgba(9,20,34,.95), rgba(9,20,34,.8));
    border-top: 1px solid var(--stroke, #e0e0e0);
    backdrop-filter: blur(10px);
}
@media (max-width: 600px) {
    .sticky-cta {
        display: flex;
    }
}
@media (max-width: 480px) {
    .sticky-cta .btn {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* Footer */
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
@media (max-width: 600px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand, .footer-contact, .footer-signup {
        min-width: 100%;
    }
    .signup-row {
        flex-direction: column;
        align-items: center;
    }
    .signup-row input {
        min-width: 100%;
    }
}
.trade-flex {
    display: flex;
    gap: 38px;
    align-items: flex-start;
}
.trade-flex {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.trade-logo.logo-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 16px;
}
@media (max-width: 800px) {
    .trade-flex {
        flex-direction: column;
        gap: 14px;
    }
    .trade-logo.logo-desktop {
        display: none;
    }
}
:root {
    --header-offset: 80px;
}
@media (max-width: 900px) {
    :root { --header-offset: 68px; }
}

/* Ensure all navigable sections and anchors have proper offset for sticky header */
.section, 
#how, 
#deals, 
#trade, 
#services, 
#guide, 
#contact, 
#deal-form, 
#book-call, 
#hire-andrew {
    scroll-margin-top: var(--header-offset);
}

/* Global smooth scroll behavior */
html {
    scroll-behavior: smooth;
}