/* =====================================================
   1. SEO HERO SECTION (Split Purple Background)
   ===================================================== */
.Vagocat-seo-page {
    background-color: #ffffff; 
}

.seo-hero {
    position: relative;
    padding: 80px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
}

.seo-hero::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    height: 60%; 
    background-color: #9D00FF;
    z-index: -2;
}

.seo-hero::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    height: 60%;
    background-image: radial-gradient(#ffffff 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.15;
    z-index: -1;
}

.seo-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side: Brutalist Hero Card */
.seo-hero-card {
    background-color: #ffffff;
    border: 6px solid #111827;
    box-shadow: 16px 16px 0px #111827;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.seo-pre-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 5vw, 64px); 
    font-weight: 800;
    color: #111827;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 24px 0;
}

.seo-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563; 
    margin: 0 0 32px 0;
}

.seo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seo-feature-list li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center; 
    gap: 16px;
}

.seo-feature-list li i {
    color: #9D00FF;
    font-size: 18px;
}

.seo-cta-area {
    margin-bottom: 32px;
}

.seo-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #9D00FF; 
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 800;
    padding: 18px 40px;
    text-decoration: none;
    border: 4px solid #111827; 
    box-shadow: 6px 6px 0px #111827; 
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    border-radius: 0;
}

.seo-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #111827;
    background-color: #111827;
}

.seo-contact-block {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #E5E7EB;
    padding-top: 24px;
}

.seo-contact-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 4px;
}

.seo-contact-email {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.seo-contact-email:hover {
    color: #9D00FF;
}

/* Right Side: Vector Graphic */
.seo-hero-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px; 
    margin: 0 auto;
}

/* =====================================================
   2. TACTICAL ADVANTAGE SECTION
   ===================================================== */
.seo-tactical-section {
    background-color: #ffffff;
    padding: 80px 24px 60px 24px;
    width: 100%;
    box-sizing: border-box;
}

.tactical-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tactical-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 800;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 50px 0; 
}

/* Top Split */
.tactical-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 50px; 
}

.tactical-visual {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.tactical-text-block {
    display: flex;
    flex-direction: column;
}

.tactical-sub-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.tactical-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 24px 0;
}

.tactical-desc:last-child {
    margin-bottom: 0;
}

/* Bottom Grid */
.tactical-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    padding-top: 20px; 
}

.feat-block {
    display: flex;
    flex-direction: column;
}

.feat-block h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.feat-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   3. CTA BANNER SECTION (Two Buttons)
   ===================================================== */
.seo-cta-banner-section {
    background-color: #ffffff;
    padding: 20px 24px 60px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.cta-banner-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-banner-box {
    background-color: #111827;
    border: 4px solid #111827;
    box-shadow: 16px 16px 0px #D1D5DB; 
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-banner-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
}

.cta-banner-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #D1D5DB;
    max-width: 700px;
    margin: 0 0 40px 0;
}

/* Side-by-side buttons */
.cta-button-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #9D00FF; 
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 800;
    padding: 16px 32px;
    text-decoration: none;
    border: 3px solid #111827; 
    box-shadow: 6px 6px 0px #111827; 
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    border-radius: 0;
}

.cta-btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #111827;
}

.cta-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; 
    color: #111827;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 800;
    padding: 16px 32px;
    text-decoration: none;
    border: 3px solid #111827; 
    box-shadow: 6px 6px 0px #111827; 
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    border-radius: 0;
}

.cta-btn-secondary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #111827;
}

/* =====================================================
   4. FAQ SECTION 
   ===================================================== */
.Vagocat-faq-section {
    background-color: #ffffff; 
    padding: 60px 24px 80px 24px;
    width: 100%;
    box-sizing: border-box;
}

.faq-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 800;
    color: #111827;
    text-align: center;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 50px 0; 
}

.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-block h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.faq-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}


/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */
@media (max-width: 1024px) {
    .seo-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .seo-hero-vector {
        grid-row: 1; 
        max-width: 400px; 
    }

    .seo-hero::after, .seo-hero::before {
        height: 45%; 
    }

    .tactical-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .tactical-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .seo-hero {
        padding: 60px 20px 80px 20px;
    }

    .seo-hero::after, .seo-hero::before {
        height: 35%; 
    }
    
    .seo-hero-card {
        padding: 40px 20px;
        box-shadow: 8px 8px 0px #111827;
        border-width: 4px;
    }

    .seo-cta-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .seo-contact-email {
        font-size: 22px;
    }

    .seo-tactical-section,
    .Vagocat-faq-section {
        padding: 50px 20px;
    }

    .tactical-main-heading,
    .faq-main-heading,
    .cta-banner-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .tactical-grid-3x2 {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 30px; 
    }
    
    .feat-block h4 {
        font-size: 22px;
    }

    .cta-button-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-banner-box {
        padding: 40px 20px;
        box-shadow: 8px 8px 0px #D1D5DB;
    }
}