/* =========================================================
   VAGOCAT HERO & MAIN PAGE STYLES
   ========================================================= */

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

/* =========================================================
   1. DOMAIN SEARCH BAR (NO TOP/LEFT BUTTON BORDERS, COMPACT)
   ========================================================= */
.hero-search-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 16px;
    padding: 6px 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    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 16px;
    background-color: #ffffff;
    border: 2px solid #111827;
    box-sizing: border-box;
}

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

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

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

/* SEARCH BUTTON: REMOVED TOP & LEFT BORDERS */
.hero-search-form button {
    flex: 0 0 auto;
    padding: 12px 36px;
    border-top: none !important;
    border-left: none !important;
    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: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 3px 3px 0px #111827;
    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: 5px 5px 0px #111827;
}

.hero-search-promo {
    flex: 0 0 auto;
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.35;
    box-sizing: border-box;
    white-space: nowrap;
    padding-right: 6px;
}

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

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

/* =========================================================
   2. HERO SLIDER & SLIDES (COMPACT HEIGHT & LIGHTER BUTTONS)
   ========================================================= */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 440px;
    overflow: hidden;
    background-color: #0d1117;
    border: none;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.5s 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;
}

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

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

.hero-text-col h1 {
    margin: 0 0 16px 0;
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

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

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

/* LIGHT BUTTON STYLES */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #D1D5DB;
    color: #111827;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: 4px 4px 0px #111827;
    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, border-color 0.2s ease;
}

.hero-btn-primary:hover {
    background-color: #ffffff;
    border: 1px solid #111827;
    color: #111827;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #111827;
    border: 1px solid #111827;
    border-radius: 0;
    box-shadow: 4px 4px 0px #111827;
    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-secondary:hover {
    background-color: #F3F4F6;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
}

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

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

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

.slider-dot {
    width: 12px;
    height: 12px;
    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;
}

/* =========================================================
   3. TRUSTPILOT STRIP (NO BOTTOM BORDER)
   ========================================================= */
.Vagocat-trustpilot-strip {
    background-color: #ffffff; 
    padding: 20px 0;
    border-bottom: none !important;
}

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

.tp-text, .tp-excellent { 
    font-family: var(--font-body, 'Inter', sans-serif); 
    font-size: 15px; 
    color: #111827; 
}

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

.tp-stars { 
    display: flex; 
    gap: 3px; 
    align-items: center;
}

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

.tp-brand { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    font-family: var(--font-heading, 'Outfit', sans-serif); 
    font-size: 16px; 
    font-weight: 700; 
    color: #111827; 
    margin-left: 6px;
}

/* =========================================================
   4. WEBSITE JOURNEY SECTION (FIXED ACCORDION EXPANSION)
   ========================================================= */
.Vagocat-journey-section {
    background-color: #ffffff;
    padding: 90px 0; 
    width: 100%;
}

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

.journey-sticky-left {
    flex: 1;
    position: sticky;
    top: 100px;
}

.journey-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(38px, 4.5vw, 60px); 
    font-weight: 700;
    color: #111827;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 24px 0;
}

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

.journey-accordion-oversized { 
    flex: 1.2;
    display: flex; 
    flex-direction: column; 
    gap: 20px;
}

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

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

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

.ji-title { 
    font-family: var(--font-heading, 'Outfit', sans-serif); 
    font-size: 24px; 
    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:hover .ji-title,
.journey-item:hover .ji-chevron {
    color: #9D00FF;
}

.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;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
}

.journey-item-content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px; 
    line-height: 1.6; 
    color: #4B5563; 
    margin: 0;
    padding: 0 30px 0 30px;
}

.journey-item.is-active .journey-item-content { 
    max-height: 400px; 
    opacity: 1;
    visibility: visible;
}

.journey-item.is-active .journey-item-content p { 
    padding-bottom: 24px; 
}

/* =========================================================
   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(36px, 5vw, 60px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 36px 0;
}

.hosting-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.hosting-toggle {
    background: #ffffff;
    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: 14px;
    font-weight: 700;
    padding: 10px 32px;
    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;
}

.hosting-grids-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.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; }

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

.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);
}

.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 .badge-dot {
    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: 28px;
    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 20px 0;
}

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

.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: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: #111827;
}

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

.card-btn-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 17px;
    font-weight: 700;
    border-radius: 0;
    text-decoration: none;
    margin-bottom: 32px; 
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    background-color: #D1D5DB; 
    color: #111827;
    border: 1px solid transparent;
    box-shadow: 4px 4px 0px #111827;
    box-sizing: border-box;
}

.card-btn-outline:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #ffffff; 
    border-color: #111827;
}

.card-btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 17px;
    font-weight: 700;
    border-radius: 0;
    text-decoration: none;
    margin-bottom: 32px; 
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    background-color: #9D00FF; 
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 4px 4px 0px #111827;
    box-sizing: border-box;
}

.card-btn-primary:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #7b00cc;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

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

.features-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(38px, 5.5vw, 76px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 70px 0;
}

.features-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 70px auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.features-split-text h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 18px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.features-split-text p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 17px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

.features-split-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

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

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

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

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

.ui-sidebar {
    width: 25%;
    background: #F3F4F6;
    padding: 20px 14px;
    border-right: 3px solid #111827;
}

.ui-logo-block { width: 36px; height: 10px; background: #111827; margin-bottom: 28px; border-radius: 0; }
.ui-nav-line { width: 100%; height: 6px; background: #D1D5DB; margin-bottom: 14px; border-radius: 0; }

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

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

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

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

.features-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 36px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.text-feature h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.text-feature p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

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

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

.email-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

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

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

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

.email-inbox-content { padding: 14px; gap: 10px; }

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

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

.email-avatar {
    width: 28px;
    height: 28px;
    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: 6px; flex-grow: 1; }
.el-title { height: 8px; width: 60%; background: #111827; border-radius: 0; }
.el-desc { height: 6px; width: 90%; background: #D1D5DB; border-radius: 0; }

.email-badge {
    position: absolute;
    bottom: -20px;
    right: -8px;
    background: #ffffff;
    border: 3px solid #111827;
    padding: 10px 20px;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-weight: 700;
    font-size: 16px;
    border-radius: 0;
    color: #111827;
    box-shadow: 4px 4px 0px #111827;
    z-index: 10;
}

.email-subtext {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px; 
    color: #4B5563; 
    line-height: 1.6; 
    margin: 0 0 32px 0;
}

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

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

.email-btn-solid {
    display: inline-flex;
    background-color: #111827; 
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px; 
    border-radius: 0;
    border: 1px solid transparent;
    box-shadow: 4px 4px 0px #9D00FF;
    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: 6px 6px 0px #9D00FF;
}

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

.support-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(34px, 5vw, 64px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 60px 0;
}

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

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

.support-geo-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    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, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

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

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

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

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

.faq-subtext {
    color: #4B5563;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 500;
    letter-spacing: normal;
    display: block;
    margin-top: 10px;
}

.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-block h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.faq-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 1200px) {
    .hero-slide {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .hero-slider-wrapper {
        min-height: 480px;
    }
    .hero-slide {
        padding: 24px 20px 50px 20px;
    }
    .hero-card-content.split-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero-text-col {
        align-items: center;
        text-align: center;
    }
    .hero-button-group {
        justify-content: center;
    }
    .hero-vector-col {
        order: -1;
    }
    .hero-sticker {
        max-width: 240px;
    }
    .hero-slider-controls {
        left: 50%;
        right: auto;
        bottom: 14px;
        transform: translateX(-50%);
    }

    .journey-split-grid { flex-direction: column; gap: 40px; }
    .journey-sticky-left { position: relative !important; top: auto !important; width: 100%; }
    .journey-accordion-oversized { width: 100%; }

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

@media (max-width: 768px) {
    .Vagocat-hero-container {
        padding: 0 14px;
        margin-bottom: 12px;
    }
    
    /* MOBILE SEARCH BAR: FULL WIDTH & CLEAR PLACEHOLDER */
    .hero-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 6px 0;
        margin-bottom: 12px;
    }
    .hero-search-form {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        padding: 3px 3px 3px 10px;
        box-sizing: border-box;
    }
    .hero-search-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    .hero-search-form input {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
        padding: 10px 4px;
        font-size: 14px;
        text-overflow: ellipsis;
    }
    .hero-search-form button {
        padding: 10px 18px;
        font-size: 14px;
        flex-shrink: 0;
    }
    .hero-search-promo {
        text-align: center;
        font-size: 12px;
    }
    .hero-search-promo strong {
        font-size: 13px;
        display: inline;
    }
    .hero-search-promo .promo-sub {
        display: inline;
    }

    .hero-slider-wrapper {
        min-height: 440px;
    }
    .hero-slide {
        padding: 16px 12px 40px 12px;
    }
    .hero-text-col h1 {
        font-size: clamp(24px, 6vw, 30px);
        margin-bottom: 8px;
    }
    .hero-text-col p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .hero-button-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        padding: 11px 16px;
        box-sizing: border-box;
    }
    .hero-sticker {
        max-width: 170px;
    }

    /* COMPACT TRUSTPILOT */
    .Vagocat-trustpilot-strip {
        padding: 12px 10px;
    }
    .tp-content {
        gap: 8px;
        font-size: 13px;
    }
    .tp-text, .tp-excellent {
        font-size: 13px;
    }
    .tp-stars svg, .tp-brand svg {
        width: 16px;
        height: 16px;
    }
    .tp-brand {
        font-size: 14px;
        margin-left: 2px;
    }

    .faq-text-grid { grid-template-columns: 1fr; gap: 36px; }
    .Vagocat-hosting-section { padding: 40px 0; }
    .hosting-grid-3, .hosting-grid-2 { grid-template-columns: 1fr; }
    .hosting-card { padding: 32px 20px; }
    .price-amount { font-size: 46px; }

    .Vagocat-journey-section { padding: 50px 0; }
    .ji-title { font-size: 22px; }
    .journey-item-header { padding: 20px 18px; }
    .journey-item-content p { font-size: 15px; padding: 0 18px 20px 18px; }

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

    .Vagocat-support-section { padding: 50px 0; }
    .support-massive-heading { font-size: 28px; margin-bottom: 36px; }
    .support-grid { grid-template-columns: 1fr; gap: 32px; }
}