/*
==================================================
--- 1. SETUP & GLOBALS ---
==================================================
*/

/* --- Local Font Definition --- */
@font-face {
    font-family: 'Geomanist';
    /* Corrected root path for Astro's public folder */
    src: url('/fonts/Geomanist-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* --- CSS Variables --- */
:root {
    --primary-red: #EE3423; 
    --primary-red-dark: #c0001a;
    --text-dark: #000000;
    --text-light: #6c757d;
    --background-white: #ffffff;
    --background-page: #F3F3F3;
    --dark-section-bg: #2b2d42;
    --dark-section-bg-gradient: #35374f;
}

/* --- Base & Reset Styles --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
html, body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Geomanist', 'Helvetica', 'Arial', sans-serif;
    background-color: var(--background-page); 
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container { 
    max-width: 960px; 
    margin: 0 auto; 
    padding: 0 20px; 
}


/*
==================================================
--- 2. REUSABLE COMPONENTS ---
==================================================
*/

/* --- Main Header (Consolidated) --- */
.main-header {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    background-color: var(--background-white);
}
.header-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo img { 
    max-height: 45px; 
    display: block; 
}
.nav-link { 
    font-weight: 700; 
    color: var(--text-dark); 
    text-decoration: none; 
    font-size: 1rem; 
}

/* 
==================================================
--- REUSABLE FOOTER COMPONENT STYLES (DEFINITIVE FIX) ---
==================================================
*/
.page-footer {
    padding: 20px 0;
    margin-top: 80px;
    text-align: center;
}

.footer-legal-links p {
    font-size: 11px;
    font-family: Arial, sans-serif;
    color: #555;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* New wrapper for flexbox alignment */
.links-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-legal-links a {
    font-size: 11px;
    font-family: Arial, sans-serif;
    color: #4a4aae;
    font-weight: 400;
    padding: 0 0.6em; /* Spacing around links */
    
    /* Setup for the custom underline */
    position: relative;
    text-decoration: none;
    padding-bottom: 3px;
}

/* The custom underline pseudo-element */
.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.6em; /* Aligns with padding */
    right: 0.6em; /* Aligns with padding */
    height: 1px;
    background-color: currentColor;
    
    /* The animation: starts invisible (scaled to 0) */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

/* The hover effect */
.footer-legal-links a:hover::after {
    transform: scaleX(1); /* Expands to full width on hover */
    transform-origin: bottom left;
}

/* The separator, now its own element */
.separator {
    font-size: 11px;
    color: #ccc;
    user-select: none; /* Makes it unselectable */
}


/* --- Dark Theme Modifier for the Footer --- */
.page-footer.dark-theme {
    margin-top: 0;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 3; 
}
.page-footer.dark-theme .footer-legal-links p,
.page-footer.dark-theme .footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
}
.page-footer.dark-theme .footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.page-footer.dark-theme .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* --- Global CTA Button --- */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-family: 'Geomanist', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-red-dark));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease-in-out;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), inset 0 -3px 0 rgba(0,0,0,0.2);
}


/* 
==================================================
--- 3. PAGE: SQUEEZE (DEFINITIVE FINAL VERSION) ---
==================================================
*/

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    overflow-x: hidden;
}
.hero-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.squeeze-box {
    background: var(--background-white);
    max-width: 680px;
    width: 100%;
    padding: 40px 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.squeeze-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -1px;
    color: var(--text-dark);
}
.squeeze-headline em {
    font-style: normal;
    color: var(--primary-red);
}
.form-container {
    margin-top: 30px;
}
.form-container iframe {
    border: 1px solid #eee;
    border-radius: 8px;
}
.squeeze-caption {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}
.squeeze-disclaimer {
    font-size: 11px;
    color: #aaa;
    margin-top: 10px;
}

/* --- DESKTOP LAYOUT (>= 993px) --- UNTOUCHED AS REQUESTED */
@media (min-width: 993px) {
    .hero-content {
        position: relative;
        z-index: 2;
    }
    .hero-founders-background {
        position: absolute;
        inset: 0;
        max-width: 1200px;
        margin: 0 auto;
        pointer-events: none;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .founder-img {
        max-height: 550px;
        opacity: 0.95;
        mask-image: linear-gradient(to top, transparent 5%, black 40%);
        -webkit-mask-image: linear-gradient(to top, transparent 5%, black 40%);
    }
    .founder-img.left { margin-left: -80px; }
    .founder-img.right { margin-right: -80px; }
    .squeeze-box { flex-shrink: 0; }
}

/* --- "BADASS" MOBILE LAYOUT (<= 992px) --- COMPLETELY RE-ARCHITECTED */
@media (max-width: 992px) {
    .page-wrapper { 
        display: block; 
    }
    .hero-content {
        padding: 0;
        align-items: flex-start;
    }
    .squeeze-box {
        margin-top: 0;
        border-radius: 0 0 16px 16px;
        order: 2;
        padding: 30px 25px;
    }
    .hero-founders-background {
        height: auto;
        padding-top: 30px;
        order: 1;
        
        /* THE FIX: Use flexbox for perfect centering */
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 10px;
    }
    .founder-img {
        /* THE FIX: Remove problematic styles */
        display: block; 
        max-height: 200px;
        opacity: 1;
        mask-image: none;
        -webkit-mask-image: none;
        margin: 0; /* Let gap handle spacing */
    }
    .squeeze-headline { 
        font-size: 1.9rem; /* Fine-tuned for mobile */
    }
}


/*
==================================================
--- 4. PAGES: VSL, APPLICATION, SCHEDULE ---
==================================================
*/

main {
    padding: 50px 0;
    text-align: center;
}
@media (max-width: 980px) {
    main {
        padding-top: 20px;
    }
}
.headline-box {
    border-radius: 8px;
    padding: 20px 25px;
    margin: 0 auto 40px auto;
    border: 1px solid #dcdcdc;
    background: linear-gradient(to bottom, #f9f9f9, #e9e9e9);
    box-shadow: inset 0 0 0 1px #b4b4b4, 0 5px 15px rgba(0,0,0,0.15);
}
h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}
.step-highlight {
    color: var(--primary-red);
    font-weight: 700; 
    text-transform: uppercase;
    text-shadow: none;
    display: inline-block;
    border-bottom: 4px solid var(--primary-red);
    margin-bottom: 10px;
    padding-bottom: 2px;
}
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

/* Application & Schedule Page Specifics */
.application-headline,
.schedule-headline {
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    text-align: left;
}
.form-embed-container {
    max-width: 800px;
    margin: 0 auto;
}
.form-caption {
    font-style: italic;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-top: 20px;
}
.app-header-nav {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}
.schedule-embed-container {
    max-width: 1000px;
    margin: 20px auto 0 auto;
}


/* 
==================================================
--- TANK PAGE STYLES (THE DEFINITIVE MASTERPIECE) ---
==================================================
*/

/* --- 1. Header & Main Content --- */
.nav-apply-button{background-color:var(--primary-red);color:#fff!important;font-family:'Geomanist',sans-serif;font-weight:700;font-size:.9rem;padding:10px 22px;border-radius:50px;text-decoration:none;transition:all .2s ease}
.nav-apply-button:hover{background-color:var(--primary-red-dark);transform:translateY(-2px);text-decoration:none}
.tank-main{max-width:1200px;margin:0 auto;padding:80px 40px}
.tank-headline-section{text-align:center;max-width:800px;margin:0 auto 80px}
.tank-headline-section h1{font-size:3.5rem;font-weight:900;margin-bottom:20px}
.tank-headline-section h1 span{color:var(--primary-red)}

.tank-subheadline {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400; /* THE FIX: Thicker as requested */
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #555;
}

/* --- 2. The "Infinite Scroll" Testimonial Grid --- */
.testimonial-grid{column-count:2;column-gap:50px}
.testimonial-item{display:inline-block;width:100%;margin-bottom:120px;break-inside:avoid}
.testimonial-item img{width:100%;height:auto;display:block;border-radius:12px;box-shadow:0 15px 45px rgba(0,0,0,.12);transition:transform .3s ease,box-shadow .3s ease}
.testimonial-item img:hover{transform:translateY(-10px);box-shadow:0 25px 55px rgba(0,0,0,.18)}

/* --- 3. The Heroic CTA Buttons --- */
.cta-container {
    text-align: center;
    padding-bottom: 40px; /* Spacing for the mid-page button */
}
.tank-top-cta {
    padding-top: 40px; /* Spacing for the top button */
}

.cta-container .cta-button {
    font-family: 'Geomanist', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 22px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    width: 100%;
    box-shadow: 0 10px 40px -10px rgba(238, 52, 35, 0.6);
    background-size: 200% auto;
    background-image: linear-gradient(115deg, var(--primary-red-dark) 0%, var(--primary-red) 50%, var(--primary-red-dark) 100%);
    animation: flowing-gradient 3s ease infinite;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cta-container .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px -10px rgba(238, 52, 35, 0.8);
}
.cta-container .cta-button::after {
    content: '→';
    position: relative;
    left: 10px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-block;
}
.cta-container .cta-button:hover::after {
    left: 15px;
    opacity: 1;
}
@keyframes flowing-gradient {
    0%{background-position:0 center}
    50%{background-position:200% center}
    100%{background-position:0 center}
}

/* --- 4. The "God-Tier" Integrated Footer --- */
.final-cta-section{color:#fff;padding-top:120px;position:relative;overflow:hidden;background:radial-gradient(ellipse 80% 100% at 50% 10%,#35374f 0,#2b2d42 100%)}
.final-cta-section::before{content:'';position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");animation:pan-bg 120s linear infinite;z-index:1}
.final-cta-content{display:flex;justify-content:center;text-align:center;position:relative;z-index:3;margin-bottom:80px}
.final-cta-text{max-width:600px}
.final-cta-text h2{font-size:3rem;font-weight:900;line-height:1.2;margin-bottom:30px;text-shadow:0 2px 25px rgba(0,0,0,.3)}
.final-cta-button{background-color:var(--primary-red);color:#fff;font-family:'Geomanist',sans-serif;font-weight:700;padding:16px 35px;border-radius:50px;text-decoration:none;display:inline-block;transition:all .2s ease}
.final-cta-button:hover{background-color:#fff;color:var(--primary-red);transform:translateY(-3px)}

/* --- 5. The Animated Brand Constellation --- */
.constellation-background{position:absolute;inset:0;z-index:2;opacity:.4;pointer-events:none}
.constellation-node{fill:var(--primary-red);animation:pulse-node 4s ease-in-out infinite alternate}
.constellation-node:nth-child(3){animation-delay:-2s}
.constellation-node:nth-child(5){animation-delay:-3s}
@keyframes pulse-node{from{transform:scale(.8);opacity:.7}to{transform:scale(1.2);opacity:1}}
@keyframes pan-bg{from{background-position:0 0}to{background-position:-200% -200%}}

/* --- 6. Responsive Adjustments --- */
@media (max-width:1200px){.testimonial-grid{column-gap:30px}}
@media (max-width:992px){.testimonial-grid{column-count:2}}
@media (max-width: 768px) {
    .testimonial-grid{column-count:1}
    .tank-headline-section h1{font-size:2.8rem}
    .final-cta-text h2{font-size:2rem}
    .cta-container .cta-button{font-size:1.2rem;padding:18px}
    
    /* THE FIX: This completely removes the arrow element on mobile */
    .cta-container .cta-button::after {
        display: none;
    }

    .constellation-background{display:none}

    .cta-container {
        text-align: center;
        padding-bottom: 0; /* Spacing for the mid-page button */
    }
}

/* 
==================================================
--- TANK PAGE FONT OVERRIDES (Poppins) ---
==================================================
*/

/* Apply Poppins to the main headlines on the tank page */
.font-poppins .tank-headline-section h1,
.font-poppins .final-cta-text h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; /* Extra-bold for Poppins looks best */
    letter-spacing: -1px; /* Tighten up the letter spacing */
}

/* Apply Poppins to the buttons on the tank page */
.font-poppins .nav-apply-button,
.font-poppins .cta-container .cta-button,
.font-poppins .final-cta-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold for buttons */
}

/* Apply Poppins to the subheadline */
.font-poppins .tank-subheadline {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light weight for the disclosure */
}

/* 
==================================================
--- GLOBAL RESPONSIVE ADJUSTMENTS ---
==================================================
*/
@media (max-width:1200px) {
    .testimonial-grid { column-gap: 30px; }
}

@media (max-width:992px) {
    .testimonial-grid { column-count: 2; }
}

/* --- THE DEFINITIVE MOBILE FIX (for screens <= 768px) --- */
@media (max-width: 768px) {
    /* Layout Fixes */
    .testimonial-grid { column-count: 1; }
    .constellation-background { display: none; }
    
    /* THE SPACING FIX: Reduced top padding on mobile */
    .tank-main {
        padding-top: 40px;
    }
    .tank-headline-section h1 { 
        font-size: 2.5rem; /* Slightly smaller for better balance */
    }
    .final-cta-text h2 { 
        font-size: 2rem;
    }
    .cta-container .cta-button {
        /* THE FIX: Smaller font size and no letter-spacing prevents wrapping */
        font-size: 1.1rem; 
        letter-spacing: normal;
        
        padding: 20px; /* Adjusted padding for better visual balance */
    }
    .cta-container .cta-button::after {
        display: none;
    }

    /* --- THE "BADASS" SCROLL INDICATOR --- */
    a.scroll-indicator {
        display: block; /* Only visible on mobile */
        text-align: center;
        margin-top: 60px; /* Restored proper spacing */
        text-decoration: none; /* Removes default underline */
    }

    .scroll-indicator span {
        display: block;
        width: 12px;
        height: 12px;
        border-bottom: 3px solid var(--primary-red);
        border-right: 3px solid var(--primary-red);
        transform: rotate(45deg);
        margin: -5px auto;
        animation: scroll-bounce 2s infinite;
    }

    /* Staggered animation delay for the cascade effect */
    .scroll-indicator span:nth-child(2) {
        animation-delay: -0.2s;
    }
    .scroll-indicator span:nth-child(3) {
        animation-delay: -0.4s;
    }

    @keyframes scroll-bounce {
        0% {
            transform: rotate(45deg) translate(-10px, -10px);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: rotate(45deg) translate(10px, 10px);
            opacity: 0;
        }
    }
}

/* 
==================================================
--- BADASS POLICY PAGE STYLES ---
==================================================
*/
.policy-hero {
    background: var(--primary-red);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.policy-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin: 0;
}

.policy-main {
    padding: 0 20px 80px; /* No top padding */
}

/* The floating content card that overlaps the hero */
.policy-content-card {
    background: #fff;
    max-width: 860px;
    margin: -60px auto 0 auto; /* Negative margin pulls it up */
    position: relative;
    z-index: 10;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.policy-content-card h2 {
    font-family: 'Geomanist', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3em;
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #eee;
}
.policy-content-card h2:first-of-type {
    margin-top: 0;
}

.policy-content-card h3 {
    font-family: 'Geomanist', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2.5em;
    margin-bottom: 1em;
}

.policy-content-card p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5em;
}

/* Custom styled bullet points */
.policy-content-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}

.policy-content-card li {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 1em;
    line-height: 1.8;
    color: #333;
}

.policy-content-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 900;
}

.policy-content-card strong {
    font-weight: 600;
    color: #000;
}

.policy-content-card .last-updated {
    font-style: italic;
    color: #777;
    margin-top: -30px;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .policy-hero h1 { font-size: 2.5rem; }
    .policy-content-card { padding: 40px 25px; }
}

/* 
==================================================
--- 404 ERROR PAGE STYLES (DEFINITIVE FINAL FIX) ---
==================================================
*/

/* THE FIX: This new class creates the full-height flexbox container on the body */
.body-full-height-flex {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--background-page); /* Ensures light background */
}

/* This targets the <main> element on the 404 page */
.error-page-main {
    flex-grow: 1; /* This is the key: it makes the main content fill all available space */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content-container {
    max-width: 600px;
}

/* --- Glitch Text Effect --- */
.glitch-text {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 20px 0;
    position: relative;
    color: var(--primary-red);
}
.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-page);
    overflow: hidden;
}
.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--text-dark);
    animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}
.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #4a4aae, 2px 2px var(--text-dark);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1{0%{clip-path:inset(15% 0 86% 0)}25%{clip-path:inset(52% 0 24% 0)}50%{clip-path:inset(8% 0 60% 0)}75%{clip-path:inset(40% 0 45% 0)}100%{clip-path:inset(72% 0 11% 0)}}
@keyframes glitch-anim-2{0%{clip-path:inset(82% 0 13% 0)}25%{clip-path:inset(18% 0 71% 0)}50%{clip-path:inset(88% 0 2% 0)}75%{clip-path:inset(36% 0 54% 0)}100%{clip-path:inset(45% 0 48% 0)}}


/* --- Error Message & CTA --- */
.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.error-message {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #555;
    max-width: 450px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}
.error-cta .cta-button {
    box-shadow: 0 10px 40px -10px rgba(238, 52, 35, 0.6);
}

/* --- Responsive for 404 Page --- */
@media (max-width: 768px) {
    .glitch-text { font-size: 7rem; }
    .error-title { font-size: 1.8rem; }
}

/* 
==================================================
--- VSL-2 HYBRID PAGE STYLES ---
==================================================
*/

/* This targets the main element ONLY on the vsl-2 page */
.vsl-2-main {
    padding-bottom: 0; /* Remove bottom padding to let the tank section handle it */
    text-align: center;
}

.vsl-top-section {
    padding-bottom: 60px;
}

/* This targets the tank-main section ONLY when it's inside the vsl-2 page */
.vsl-2-main .tank-main {
    padding-top: 0; /* THE FIX: Removes the extra space above "Hear From Our Top Students" */
}