/* =====================================================
   1. DOMAIN MIGRATION HERO SECTION (Split Purple Background)
   ===================================================== */
.Vagocat-domain-migration-page {
    background-color: #ffffff; 
}

.domain-hero {
    position: relative;
    padding: 80px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
}

.domain-hero::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    height: 60%; 
    background-color: #9D00FF;
    z-index: -2;
}

.domain-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;
}

.domain-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.domain-hero-card {
    background-color: #ffffff;
    border: 6px solid #111827;
    box-shadow: 16px 16px 0px #111827;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.domain-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;
}

.domain-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;
}

.domain-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563; 
    margin: 0 0 32px 0;
}

.domain-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.domain-feature-list li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center; 
    gap: 16px;
}

/* Brutalist Button Styles */
.domain-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-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 4px solid #111827; 
    border-bottom: 4px solid #111827; 
    box-shadow: 6px 6px 0px #111827; 
    transition: all 0.15s ease;
    border-radius: 0;
}

.domain-cta-btn:hover {
    background-color: #111827;
    border-top-color: #111827;
    border-left-color: #111827;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #111827;
}

.domain-hero-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px; 
    margin: 0 auto;
}

.domain-hero-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

/* =====================================================
   GLOBAL CONTAINER & HEADINGS
   ===================================================== */
.domain-container {
    max-width: 1200px;
    margin: 0 auto;
}

.domain-section-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 5vw, 64px); 
    font-weight: 800;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 60px 0;
}

/* =====================================================
   2. THE GUARANTEE GRID (STATIC CARDS)
   ===================================================== */
.domain-guarantee-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.guarantee-card {
    background-color: #ffffff;
    border-top: 0px solid transparent;
    border-left: 0px solid transparent;
    border-right: 4px solid #111827;
    border-bottom: 4px solid #111827;
    padding: 32px 24px;
    box-shadow: 8px 8px 0px #D1D5DB;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.guarantee-icon {
    width: 56px;
    height: 56px;
    background-color: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.guarantee-card h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px 0;
}

.guarantee-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   3. THE PROTOCOL (Process Steps)
   ===================================================== */
.domain-protocol-section {
    padding: 80px 24px;
    background-color: #F8F9FA; 
}

.protocol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.protocol-step {
    display: flex;
    gap: 32px;
    background-color: #ffffff;
    border: 4px solid #111827;
    padding: 40px;
    box-shadow: 12px 12px 0px #111827;
    align-items: center;
}

.step-number {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 64px;
    font-weight: 900;
    color: #9D00FF;
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}

.step-content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.protocol-cta {
    text-align: center;
}

/* =====================================================
   4. FAQ SECTION
   ===================================================== */
.Vagocat-faq-section {
    background-color: #ffffff; 
    padding: 80px 24px 120px 24px;
}

.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.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) {
    .domain-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .domain-hero-vector {
        grid-row: 1; 
        max-width: 400px; 
    }

    .domain-hero::after, .domain-hero::before {
        height: 45%; 
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .domain-hero {
        padding: 60px 20px 80px 20px;
    }

    .domain-hero::after, .domain-hero::before {
        height: 35%; 
    }
    
    .domain-hero-card {
        padding: 40px 20px;
        box-shadow: 8px 8px 0px #111827;
        border-width: 4px;
    }

    .domain-cta-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .domain-guarantee-section,
    .domain-protocol-section,
    .Vagocat-faq-section {
        padding: 60px 20px;
    }

    .domain-section-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .protocol-step {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        gap: 16px;
    }

    .step-number {
        font-size: 48px;
    }
}