/* =========================================================
   VAGOCAT HERO SECTION
   ========================================================= */

.Vagocat-hero-container {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto 20px auto;
    padding: 0 24px;
    box-sizing: border-box;
}


/* =========================================================
   DOMAIN SEARCH
   ========================================================= */

.hero-search-row {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-bottom: 20px;
    padding: 14px 18px;
    background-color: #161b22;
    border: 3px solid #30363d;
    box-sizing: border-box;
}

.hero-search-form {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 4px 4px 4px 20px;
    background-color: #ffffff;
    border: 3px solid #111827;
    box-shadow: 6px 6px 0 #111827;
    box-sizing: border-box;
}

.hero-search-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    color: #6b7280;
}

.hero-search-form input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    padding: 16px 0;
    border: none;
    outline: none;
    background: transparent;
    color: #111827;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 20px;
    font-weight: 500;
    box-sizing: border-box;
}

.hero-search-form input::placeholder {
    color: #9ca3af;
}

.hero-search-form button {
    flex: 0 0 auto;
    padding: 16px 48px;
    border-top: none;
    border-left: none;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    border-radius: 0;
    background-color: #9D00FF;
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.18);
    transition:
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.2s ease;
}

.hero-search-form button:hover {
    background-color: #8a00e0;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.25);
}

.hero-search-promo {
    flex: 0 0 240px;
    min-width: 240px;
    padding-right: 8px;
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.35;
    box-sizing: border-box;
}

.hero-search-promo strong {
    color: #9D00FF;
    font-size: 17px;
    font-weight: 700;
    display: block;
}

.hero-search-promo .promo-sub {
    color: #8b949e;
    font-size: 14px;
}


/* =========================================================
   HERO SLIDER
   ========================================================= */

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    background-color: #0d1117;
    border: 3px solid #30363d;
    border-radius: 0;
    box-shadow: 10px 10px 0 rgba(157, 0, 255, 0.15);
    box-sizing: border-box;
}


/* =========================================================
   INDIVIDUAL SLIDES (Smooth Crossfade Transitions)
   ========================================================= */

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.6s ease;
    z-index: 1;
    box-sizing: border-box;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}


/* =========================================================
   SLIDE CONTENT
   ========================================================= */

.hero-card-content.split-hero {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    box-sizing: border-box;
}


/* =========================================================
   TEXT COLUMN
   ========================================================= */

.hero-text-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-text-col h1 {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(38px, 4.5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

.hero-text-col p {
    max-width: 560px;
    margin: 0 0 32px 0;
    color: #8b949e;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-button-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #111827;
    border-top: none;
    border-left: none;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    border-radius: 0;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.18);
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.1s ease,
        box-shadow 0.1s ease,
        background-color 0.2s ease;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
    background-color: #ffffff;
    color: #111827;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.25);
}


/* =========================================================
   STICKER GRAPHICS & VECTOR COLUMN
   ========================================================= */

.hero-vector-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-sticker {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4));
}


/* =========================================================
   SLIDER CONTROLS
   ========================================================= */

.hero-slider-controls {
    position: absolute;
    right: 80px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    padding: 0;
    background-color: #30363d;
    border: 2px solid #ffffff;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.slider-dot:hover {
    background-color: #8b949e;
    transform: scale(1.1);
}

.slider-dot.is-active {
    background-color: #9D00FF;
    border-color: #ffffff;
}


/* =========================================================
   LARGE TABLETS / LAPTOPS
   ========================================================= */

@media (max-width: 1200px) {
    .hero-slide {
        padding: 50px;
    }

    .hero-card-content.split-hero {
        gap: 32px;
    }

    .hero-sticker {
        max-width: 440px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
    .hero-slider-wrapper {
        min-height: 620px;
    }

    .hero-slide {
        padding: 40px 30px 70px 30px;
    }

    .hero-card-content.split-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-text-col {
        align-items: center;
        text-align: center;
    }

    .hero-text-col h1 {
        max-width: 800px;
        font-size: clamp(34px, 5.5vw, 50px);
        letter-spacing: -1.5px;
        margin-bottom: 12px;
    }

    .hero-text-col p {
        max-width: 650px;
        margin-bottom: 20px;
    }

    .hero-button-group {
        justify-content: center;
    }

    .hero-vector-col {
        order: -1;
    }

    .hero-sticker {
        max-width: 260px;
    }

    .hero-slider-controls {
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translateX(-50%);
    }

    .hero-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-search-promo {
        flex: 0 0 auto;
        min-width: 0;
        text-align: center;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
    .Vagocat-hero-container {
        padding: 0 14px;
    }

    /* COMPACT MOBILE SEARCH BAR (Fixed height & no extra empty space) */
    .hero-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
        margin-bottom: 14px;
    }

    .hero-search-form {
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 4px 4px 4px 12px;
        box-shadow: 4px 4px 0 #111827;
    }

    .hero-search-icon {
        display: block;
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    .hero-search-form input {
        width: 100%;
        padding: 10px 0;
        font-size: 15px;
        text-align: left;
    }

    .hero-search-form button {
        width: auto;
        padding: 10px 20px;
        font-size: 14px;
        box-shadow: 3px 3px 0px rgba(17, 24, 39, 0.18);
    }

    .hero-search-promo {
        width: 100%;
        min-width: 0;
        padding: 0;
        text-align: center;
        font-size: 13px;
        line-height: 1.4;
    }

    .hero-search-promo strong {
        display: inline;
        font-size: 14px;
    }

    .hero-search-promo .promo-sub {
        display: inline;
        font-size: 13px;
    }

    /* SLIDER & CONTENT ON MOBILE */
    .hero-slider-wrapper {
        min-height: 580px;
        box-shadow: 6px 6px 0 rgba(157, 0, 255, 0.15);
    }

    .hero-slide {
        padding: 24px 16px 65px 16px;
    }

    .hero-text-col h1 {
        margin-bottom: 12px;
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-text-col p {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-button-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        padding: 12px 18px;
        box-sizing: border-box;
    }

    .hero-sticker {
        max-width: 200px;
    }

    .hero-slider-controls {
        bottom: 18px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {
    .hero-slider-wrapper {
        min-height: 540px;
    }

    .hero-slide {
        padding: 20px 12px 60px 12px;
    }

    .hero-text-col h1 {
        font-size: clamp(24px, 6.8vw, 30px);
    }

    .hero-sticker {
        max-width: 160px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

/* --- 2. TRUSTPILOT STRIP --- */
.Vagocat-trustpilot-strip {
    background-color: #ffffff; 
    padding: 36px 0;
}

.tp-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap; 
}

.tp-text, .tp-excellent { 
    font-family: var(--font-body); 
    font-size: 18px; 
    color: #111827; 
}

.tp-excellent { 
    font-weight: 600; 
}

.tp-stars { 
    display: flex; 
    gap: 4px; 
}

.tp-stars svg, 
.tp-brand svg {
    width: 24px;
    height: 24px;
}

.tp-brand { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-family: var(--font-heading); 
    font-size: 18px; 
    font-weight: 700; 
    color: #111827; 
}

/* --- 3. WEBSITE JOURNEY --- */
.Vagocat-journey-section {
    background-color: #ffffff;
    padding: 120px 0; 
    width: 100%;
}

.journey-split-grid {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Sticky Left Column */
.journey-sticky-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

.journey-massive-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px); 
    font-weight: 700;
    color: #111827;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 24px 0;
}

.journey-subtext {
    font-family: var(--font-body);
    font-size: 20px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* Oversized Right Accordion */
.journey-accordion-oversized { 
    flex: 1.2;
    display: flex; 
    flex-direction: column; 
    gap: 24px;
}

.journey-item { 
    background: #ffffff;
    border: 3px solid #E5E7EB;
    border-radius: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.journey-item.is-active {
    border-color: #111827;
    box-shadow: 8px 8px 0px #111827;
}

.journey-item-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px; 
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ji-title { 
    font-family: var(--font-heading); 
    font-size: 32px; 
    font-weight: 700; 
    color: #6B7280; 
    transition: color 0.2s ease; 
}

.ji-chevron { 
    color: #6B7280; 
    transition: transform 0.3s ease, color 0.2s ease; 
}

.journey-item.is-active .ji-title { color: #111827; }
.journey-item.is-active .ji-chevron { color: #111827; transform: rotate(90deg); }

.journey-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.journey-item-content p {
    font-family: var(--font-body);
    font-size: 20px; 
    line-height: 1.6; 
    color: #4B5563; 
    margin: 0;
    padding: 0 40px 0 40px;
}

.journey-item.is-active .journey-item-content { max-height: 300px; }
.journey-item.is-active .journey-item-content p { padding-bottom: 40px; }

/* =====================================================
   SECTION 5: HOSTING PACKAGES
   ===================================================== */
.Vagocat-hosting-section {
    background-color: #ffffff; 
    padding: 80px 0;
    width: 100%;
}

.hosting-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 5vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 40px 0;
}

/* Toggle Switch Styles */
.hosting-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.hosting-toggle {
    background: #ffffff;
    border-top: none;
    border-left: none;
    border-right: 3px solid #111827;
    border-bottom: 3px solid #111827;
    border-radius: 0; 
    display: inline-flex;
    padding: 0;
    overflow: hidden;
    box-shadow: 4px 4px 0px #111827;
}

.toggle-btn {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #6B7280;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.toggle-btn:not(:last-child) {
    border-right: 3px solid #111827;
}

.toggle-btn.is-active {
    background: #9D00FF;
    color: #ffffff;
}

/* Grids and Panes */
.hosting-grids-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-pane { display: none; }
.grid-pane.is-active {
    display: grid;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hosting-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hosting-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* Uniform Card Design */
.hosting-card {
    background-color: #ffffff;
    border: 1px solid #E5E7EB; 
    border-right: 4px solid #111827; 
    border-bottom: 4px solid #111827;
    border-radius: 0;
    padding: 48px 32px; 
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.05); 
    margin-top: 24px;
}

/* Recommended Card Specific Styling */
.hosting-card-recommended {
    border: 1px solid #E5E7EB;
    border-right: 4px solid #9D00FF;
    border-bottom: 4px solid #9D00FF;
    transform: translateY(-16px); 
    box-shadow: 12px 12px 0px rgba(157, 0, 255, 0.08);
}

/* Absolutely Positioned Badge */
.Vagocat-badge-recommended {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9D00FF; 
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 0; 
    white-space: nowrap;
    border: 1px solid #111827;
    box-shadow: 4px 4px 0px rgba(17, 24, 39, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.Vagocat-badge-recommended::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%; 
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.card-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.card-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 24px 0;
}

.card-price-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.price-currency {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}

.price-amount {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: #111827;
}

.price-term {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #6B7280;
    margin-top: auto;
    margin-bottom: 8px;
    margin-left: 4px;
}

/* Outline Button (Standard Cards) */
.card-btn-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    border-radius: 0;
    text-decoration: none;
    margin-bottom: 40px; 
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    background-color: #D1D5DB; 
    color: #111827;
    border-top: none;
    border-left: none;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.18);
}

.card-btn-outline:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.25);
    background-color: #ffffff; 
}

/* Primary Button (Recommended Card) */
.card-btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    border-radius: 0;
    text-decoration: none;
    margin-bottom: 40px; 
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    background-color: #9D00FF; 
    color: #ffffff;
    border-top: none;
    border-left: none;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.18);
}

.card-btn-primary:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.25);
    background-color: #7b00cc;
}

/* Features List */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-features li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .hosting-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hosting-card-recommended { transform: none; }
}

@media (max-width: 768px) {
    .hosting-grid-3, .hosting-grid-2 { grid-template-columns: 1fr; }
}

/* =====================================================
   SECTION 6: CORE FEATURES
   ===================================================== */
.Vagocat-features-section {
    background-color: #ffffff;
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

.features-massive-heading {
    font-family: var(--font-heading);
    font-size: clamp(56px, 7vw, 96px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05;
    letter-spacing: -3px;
    margin: 0 0 100px 0;
}

/* Split Layout */
.features-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 100px auto;
}

.features-split-text h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.features-split-text p {
    font-family: var(--font-body);
    font-size: 22px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Flat UI Mockup */
.features-split-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.Vagocat-ui-mockup {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border: 4px solid #111827;
    border-radius: 0;
    box-shadow: 12px 12px 0px #111827;
    overflow: hidden;
}

.ui-browser-bar {
    background: #111827;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ui-dot { width: 12px; height: 12px; border-radius: 50%; background: #4B5563; }
.ui-url-bar { flex-grow: 1; height: 12px; background: #374151; border-radius: 0; margin-left: 16px; opacity: 0.5; }

.ui-browser-body {
    display: flex;
    height: 300px;
    background: #ffffff;
}

.ui-sidebar {
    width: 25%;
    background: #F3F4F6;
    padding: 24px 16px;
    border-right: 4px solid #111827;
}

.ui-logo-block { width: 40px; height: 12px; background: #111827; margin-bottom: 32px; border-radius: 0; }
.ui-nav-line { width: 100%; height: 8px; background: #D1D5DB; margin-bottom: 16px; border-radius: 0; }

.ui-content {
    flex-grow: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ui-header-row { display: flex; justify-content: space-between; align-items: center; }
.ui-title-line { width: 40%; height: 12px; background: #111827; border-radius: 0; }
.ui-status-badge { width: 24px; height: 12px; background: #F3F4F6; border: 2px solid #111827; border-radius: 0; display: flex; align-items: center; justify-content: center; }
.ui-purple-dot { width: 6px; height: 6px; background: #9D00FF; border-radius: 50%; }

.ui-hero-block { width: 100%; height: 100px; background: #F8F9FA; border: 4px solid #111827; border-radius: 0; position: relative; overflow: hidden; }
.ui-graph-line { position: absolute; bottom: -10px; left: -10px; width: 120%; height: 40px; border-top: 4px solid #111827; border-radius: 0; }

.ui-grid-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; flex-grow: 1; }
.ui-card { background: #ffffff; border: 4px solid #111827; border-radius: 0; }

/* 3-Column Text Grid */
.features-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-feature h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
}

.text-feature p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   SECTION 7: PROFESSIONAL EMAILS
   ===================================================== */
.Vagocat-email-section {
    background-color: #F8F9FA; 
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

.email-massive-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 80px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.email-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.email-visual {
    display: flex;
    justify-content: center;
}

.email-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 24px;
}

.email-mockup {
    width: 100%;
    max-width: none;
    box-shadow: -12px 12px 0px #111827; 
}

.email-inbox-content { padding: 16px; gap: 12px; }

.email-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 3px solid #E5E7EB;
    border-radius: 0;
    background: #ffffff;
}

.email-line-item.unread { border-color: #111827; }

.email-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F3F4F6;
    border: 2px solid #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dark-avatar { background: #111827; }

.email-lines { display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.el-title { height: 10px; width: 60%; background: #111827; border-radius: 0; }
.el-desc { height: 8px; width: 90%; background: #D1D5DB; border-radius: 0; }

.email-badge {
    position: absolute;
    bottom: -24px;
    right: -8px;
    background: #ffffff;
    border: 4px solid #111827;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border-radius: 0;
    color: #111827;
    box-shadow: 4px 4px 0px #111827;
    z-index: 10;
}

.email-subtext {
    font-family: var(--font-body);
    font-size: 22px; 
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.email-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.email-benefits li {
    font-family: var(--font-body);
    font-size: 20px; 
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 16px;
}

.email-btn-solid {
    display: inline-flex;
    background-color: #111827; 
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 48px; 
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.18);
    text-decoration: none;
    transition: transform 0.1s ease, background-color 0.2s ease, box-shadow 0.1s ease;
}

.email-btn-solid:hover {
    background-color: #000000;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.25);
}

/* =====================================================
   SECTION 8: 24/7 SUPPORT
   ===================================================== */
.Vagocat-support-section {
    background-color: #ffffff; 
    padding: 100px 0;
    width: 100%;
}

.support-massive-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.support-geo-icon {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 4px 4px 0px #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-item:hover .support-geo-icon {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
}

.support-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.support-link {
    font-family: var(--font-body);
    font-size: 16px;
    color: #4B5563; 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: #111827;
}

/* =====================================================
   SECTION 9: FAQ
   ===================================================== */
.Vagocat-faq-section {
    background-color: #F8F9FA; 
    padding: 100px 0;
    width: 100%;
}

.faq-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 80px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.faq-subtext {
    color: #4B5563;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    letter-spacing: normal;
}

.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);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.faq-block p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   GLOBAL RESPONSIVE ADJUSTMENTS
   ===================================================== */
@media (max-width: 1024px) {
    .journey-split-grid { flex-direction: column; gap: 48px; }
    .journey-sticky-left { 
        position: relative !important; 
        top: auto !important; 
        width: 100%; 
        z-index: 1;
    }
    .journey-accordion-oversized { width: 100%; }

    .features-split-layout { grid-template-columns: 1fr; gap: 60px; }
    .features-text-grid { grid-template-columns: repeat(2, 1fr); }
    .email-split-grid { grid-template-columns: 1fr; gap: 60px; }
    .email-visual { order: -1; } 

    .support-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 32px; }
}

@media (max-width: 768px) {
    .faq-text-grid { grid-template-columns: 1fr; gap: 48px; }
    .Vagocat-hosting-section { padding: 40px 0; }
    .hosting-card { padding: 32px 24px; }
    .price-amount { font-size: 48px; }

    .Vagocat-journey-section { padding: 40px 0; }
    .ji-title { font-size: 24px; }
    .journey-item-header { padding: 24px 20px; }
    .journey-item-content p { font-size: 18px; padding: 0 20px; }
    .journey-item.is-active .journey-item-content p { padding-bottom: 24px; }

    .Vagocat-features-section, .Vagocat-email-section { padding: 60px 0; }
    .features-split-text h3, .email-text-content h2 { font-size: 36px; }
    .features-text-grid { grid-template-columns: 1fr; gap: 32px; }
    .features-split-text p, .email-text-content p { font-size: 18px; }

    .Vagocat-support-section { padding: 60px 0; }
    .support-massive-heading { font-size: 32px; margin-bottom: 40px; }
    .support-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}