/* --- External Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Brand Design System Tokens --- */
:root {
    --header-height: 68px;         /* Compact header height matching Canadian Web Hosting */
    --brand-green: #6FB33F;        /* Vibrant HostDatos Green */
    --brand-green-hover: #58922f;  /* Darker green hover state */
    --brand-dark: #333333;         /* Charcoal gray from your template */
    --gold: #F59E0B;              /* Gold color for ratings */
    --text-dark: #1a1a1a;          /* Standard body copy dark tone */
    --text-muted: #555555;         /* Muted gray text */
    --bg-light: #f8f9fa;           /* Off-white background section color */
    --border-color: #e0e4e8;       /* Clean dividing borders */
    --white: #ffffff;
    --container:1300px;
}

/* --- RESET & GLOBAL RULES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: var(--header-height); /* Offset to prevent jump due to fixed sticky position */
}

/* --- GLOBAL BUTTON STYLES --- */
.btn, .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--brand-green);
    color: var(--white);
    border: 2px solid var(--brand-green);
}

.btn-primary:hover {
    background-color: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
   
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    background-color: var(--bg-light);
   
}

/* --- UNIVERSAL SHIMMER EFFECT FOR BUTTONS --- */
.btn-primary, .mobile-account-btn, .table-btn, .newsletter-btn, .analysis-btn, .btn-green {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .mobile-account-btn::after, .table-btn::after, .newsletter-btn::after, .analysis-btn::after, .btn-green::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%; width: 30%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(35deg);
    animation: shine 3s infinite ease-in-out;
}

.hero-section .btn-secondary svg {
    width: 12px;
    height: 12px;
    stroke: var(--brand-green);
    fill: none;
    stroke-width: 3;
}

/* --- COMPACT STICKY HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.92); /* Semi-transparent white for a premium feel */
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); /* Subtle drop-shadow while scrolling */
    backdrop-filter: blur(8px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(8px); /* For Safari support */
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
 
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Image Styling */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-height: 57px; /* Increased logo size */
    width: auto;
    object-fit: contain;
}

/* Navigation System with Bridges for Hover Reliability */
.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 20px 0; /* Creates continuous mouse hover detection to dropdown menu */
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

/* Dropdown Chevron SVGs */
.chevron {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    margin-top: 2px;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

/* --- MEGA DROPDOWN POPUP --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 250px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sophisticated floating shadow */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    padding: 10px;
    z-index: 1010;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Mega Menu for cms-hosting Hosting */
.dropdown-menu-mega {
    width: 700px; /* Wider for three columns */
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.mega-menu-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding: 0 14px;
}

/* Navigation State Actions */
.nav-item.touch-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
}

.nav-item.touch-open .nav-link {
    color: var(--brand-green);
}

.nav-item.touch-open .chevron {
    transform: rotate(180deg);
    stroke: var(--brand-green);
}

/* Individual Dropdown Menu Options */
.dropdown-item {
    display: block;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color:var(--white);
}

.dropdown-item-title-row {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.dropdown-item-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--brand-green);
}

.dropdown-item-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Custom Status Badges (Color adapted to HostDatos palette) */
.badge-discount {
    background-color: rgba(111, 179, 63, 0.12); /* Dynamic green opacity */
    color: #58922f;                              /* Readable dark green */
    font-size: 10px;
    font-weight: 700;
    padding: 1.5px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
}

.badge-premium {
    background-color: #e2e8f0;
    color: #4a5568;
    font-size: 10px;
    font-weight: 700;
    padding: 1.5px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
}

/* My Account Button Style */
.account-btn {
    padding: 9px 22px;
    border: 1px solid var(--brand-green);
    border-radius: 6px;
    background-color: var(--brand-green);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.account-btn:hover {
    border-color: var(--brand-dark);
    background-color: var(--brand-dark);
    color: var(--white);
}



/* --- Header Phone Number --- */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;

}



.header-phone svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    color: var(--brand-green); /* Keep the icon green */
    animation: ring-animation 1.5s ease-in-out infinite;
    transform-origin: center;
}

/* Keyframe animation for the ringing effect */
@keyframes ring-animation {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(8deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0); }
}


/* --- Responsive Triggers for Mobile Elements --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .nav-wrapper, .header-actions .account-btn {
        display: none;
    }
    .hamburger-btn {
        display: flex !important;
    }
    .header-phone {
        display: none;
    }
}







/* --- PERFECT 100% MOBILE NAVIGATION OVERLAY --- */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    padding: 4px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.hamburger-btn:hover {
    background-color: var(--bg-light);
}

.hamburger-btn svg {
    width: 28px;
    height: 28px;
}

/* Backdrop overlay */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.active {
    display: block;
    opacity: 1;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100vw);
    height: 100vh;
    background-color: var(--white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

/* Header inside Mobile Menu */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.mobile-nav-header .logo-img {
    max-height: 40px;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--brand-green);
}

/* Mobile Menu List Container */
.mobile-nav-menu {
    padding: 20px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

/* Main Link Row */
.mobile-nav-item {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-decoration: none;
    flex-grow: 1;
    transition: color 0.2s ease;
}

.mobile-toggle-btn {
    background: transparent;
    border: none;
    color: var(--brand-dark);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle-btn .chevron {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

/* Dropdown Sub-menu Container */
.mobile-dropdown {
    list-style: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.2s ease, padding 0.3s ease;
}

.mobile-dropdown li a {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-dropdown li a:hover {
    color: var(--brand-green);
}

/* Open State Triggers for Accordion */
.mobile-nav-item.open .mobile-dropdown {
    max-height: 1200px; /* Large enough for all cms-hosting items */
    opacity: 1;
    padding-bottom: 15px;
}

.mobile-nav-item.open .mobile-toggle-btn .chevron {
    transform: rotate(180deg);
    color: var(--brand-green);
}

.mobile-nav-item.open .mobile-nav-link {
    color: var(--brand-green);
}

/* 100% Outlined My Account Button */
.mobile-account-wrapper {
    width: 100%;
    margin-top: auto;
    padding-bottom: 20px;
}

.mobile-account-btn {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid var(--brand-green);
    border-radius: 8px;
     background-color: var(--brand-green);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-account-btn:hover {
    background-color: var(--brand-green);
    color: var(--white);
    border-color: var(--brand-green);
}







/* --- HERO SECTION --- */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    /* Resetting properties from old hero section */
    position: static;
    background: var(--white);
    overflow: visible;
    border-bottom: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    /* Resetting properties from old hero section */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    grid-template-columns: none;
    min-height: auto;
}

.hero-content {
    flex: 1;
    max-width: 540px;
    /* Resetting properties from old hero section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    z-index: auto;
}

.tagline {
    display: block;
    color: var(--brand-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* The new hero section redefines some typography, so we scope them */
.hero-section .main-heading {
    font-size: 2.5rem; 
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-section .text-green {
    color: var(--brand-green);
    display: block; 
    margin-top: 0.25rem;
}

.hero-section .hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    margin-bottom: 2rem;
    max-width: 100%; /* Override from old hero-subtitle */
}

.hero-section .hero-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-badges {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.hero-section .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-section .badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-green);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* --- FEATURE INFO GRID --- */
.features-section {
    padding: 40px 40px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--brand-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
}

.icon-wrap {
    background-color: #f1fcf1;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- TRUSTED BRANDS & STATS BANNER --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2.5rem;
}

/* TOP PART: Trusted Brands Strip */
.trusted-brands {
    text-align: center;
    margin-bottom: 2.5rem;
}

.trusted-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) brightness(0.3) opacity(0.6);
    transition: filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
    color: #000;
    text-decoration: none;
}

.brand-item:hover {
    filter: grayscale(0%) brightness(1) opacity(1);
}

.brand-item img {
    height: 24px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.inline-text-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.inline-text-brand svg {
    margin-right: 6px;
    fill: #000;
    height: 24px;
}

/* BOTTOM PART: Dark Stats Banner */
.stats-banner {
    background-color: #11151C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #2A303C;
}

.stat-value-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6FB33F;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.stat-value-row svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #6FB33F;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-label {
    color: #8B949E;
    font-size: 0.8rem;
    font-weight: 500;
}

/* --- PRICING TABLE SECTION --- */
/* Reduced width to remove unwanted space on left and right cards */
.pricing-section {
    padding: 120px 20px;
    max-width: 1200px; /* Reduced from 1300px for a tighter, perfect alignment */
    margin: 0 auto;
}

.pricing-container {
    width: 100%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pricing-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 6px;
}

.toggle-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: transparent;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: var(--white);
    color: var(--brand-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.save-badge {
    background: rgba(111, 179, 63, 0.15); 
    color: var(--brand-green-hover); 
    font-size: 12px; 
    font-weight: 700; 
    padding: 4px 8px; 
    border-radius: 6px; 
    transition: all 0.3s ease; 
    margin-left: 6px;
}

/* --- Pricing Grid Layout --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Keeps cards close and perfectly aligned */
    align-items: start; /* Align to the top so badges sit evenly */
    margin-top: 30px; /* Added slight margin to account for floating badge */
}

.pricing-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px; /* More row gap */
    align-items: start;
    margin-top: 30px;
}

.pricing-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    overflow: visible; /* Changed to visible so the top badge can float outside the border */
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--brand-green);
    transform: translateY(-20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

/* Base top bar hidden, only shows for featured as a floating badge */
.card-top-bar {
    display: none; 
}

/* Floating "Most Popular" Badge exactly on the top border line */
.pricing-card.featured .card-top-bar {
    display: flex;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--brand-green);
    color: var(--white);
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 20px; /* Pill shape */
    white-space: nowrap;
    z-index: 10;
}

/* Shimmer Effect Definition */
.shimmer-effect {
    position: relative;
    overflow: hidden;
    border-radius: 16px; /* Ensure shimmer respects the card's rounded corners */
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%; width: 30%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(35deg);
    animation: shine 6s infinite ease-in-out;
}

@keyframes shine {
    0% { left: -60%; }
    40% { left: 130%; } /* Slower movement across the element */
    100% { left: 130%; } /* Shorter pause after the shine */
}

.card-body {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card-header {
    margin-bottom: 8px;
}

.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* --- New Pricing Elements --- */
.original-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

/* Soft Orange Discount Badge */
.discount-tag, .limited-deal-tag {
    background-color: #fff0eb;
    color: #db3c47;
    border: 1px solid #ffdcd1;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.strike-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    letter-spacing: -1.5px;
    line-height: 1;
}

.price-term {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Promotional 2 Months Free Row */
.promo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    min-height: 26px;
}

.promo-text {
    color: var(--brand-green);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px dashed ;
    padding-bottom: 1px;
}

/* Action Buttons */
.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 30px;
}



.btn-secondary {
    border: 1px solid var(--border-color);
    color: var(--brand-dark);
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    border-color: var(--brand-green-hover);
    color: var(--white);
    background-color: var(--brand-green-hover);
}

.pricing-card:hover .btn-secondary {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--white);
}

.btn-primary {
    background: var(--brand-green);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-1px);
}

@keyframes flash {
    0% { box-shadow: 0 0 0 0 rgba(111, 179, 63, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(111, 179, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(111, 179, 63, 0); }
}

/* --- Features List Block --- */
.pricing-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.2;
}

/* Bold Dashed Items */
.pricing-card-features li strong {
    color: #000000;
    font-weight: 600;
    border-bottom: 1.5px dashed #cbd5e1;
    padding-bottom: 1px;
}

.pricing-card-features svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-green);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

/* Small FREE Badge */
.badge-free {
    background-color: #e4f4ed;
    color: #0f7645;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: auto; 
    letter-spacing: 0.5px;
}
/* --- PROFESSIONAL FOOTER SECTION --- */
.footer-section {
    background-color: #0c061b; /* Enterprise dark purple-blue */
    color: #ffffff;
    padding: 70px 40px 30px 40px;
    border-top: none;
}

.footer-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

/* --- FOOTER GRID LAYOUT --- */
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 0.8fr 1fr 1.3fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* --- BRAND COLUMN (LEFT) --- */
.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    background-color: #ffffff;
    padding: 2px 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-desc {
    color: #c7c1da; /* Light purple-gray text */
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 25px;
    padding-right: 20px;
}

.footer-company-info {
    margin-bottom: 30px;
}

.footer-company-info p {
    color: #a89cbd;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.8;
}

.footer-company-info p:first-child {
    color: #ffffff;
    margin-bottom: 5px;
}

/* --- SOCIAL ICONS --- */
.footer-social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social-btn:hover {
    background-color: rgba(111, 179, 63, 0.1);
    border-color: #6FB33F;
    color: #6FB33F;
}


.footer-region-btn:hover {
    border-color: #6FB33F;
    background-color: rgba(111, 179, 63, 0.1);
}

.footer-region-btn svg {
    width: 16px;
    height: 16px;
}

/* --- LINK COLUMNS --- */
.footer-link-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.footer-sub-heading {
    display: block;
    color: #8c82a3; /* Muted purple subheading */
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-col ul {
    list-style: none;
}

.footer-link-col ul li {
    margin-bottom: 14px;
}

.footer-link-col ul li a {
    color: #c7c1da;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.footer-link-col ul li a:hover {
    color: #6FB33F;
    transform: translateX(2px);
}

/* --- FOOTER DIVIDER --- */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 35px;
}

/* --- FOOTER BOTTOM SECTION --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.footer-copyright strong {
    color: #6FB33F;
}

/* --- PAYMENT METHODS --- */
.footer-payment-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-payment-row > span {
    font-size: 13px;
    font-weight: 600;
    color: #c7c1da;
}

.footer-payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-pay-pill {
    background-color: #ffffff;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-weight: 800;
    font-size: 10px;
    color: #000;
    transition: all 0.3s ease;
}

.footer-pay-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(111, 179, 63, 0.2);
}

.footer-pay-visa {
    color: #1434CB;
    font-style: italic;
    font-size: 11px;
}

.footer-pay-mastercard {
    width: 40px;
    padding: 0;
}

.footer-pay-amex {
   
    color: #1434CB;
    padding: 0 8px;
    font-size: 9px;
}

.footer-pay-paypal {
    color: #003087;
    font-style: italic;
}

.footer-pay-gpay {
   
    color: #003087;
    font-style: italic;
}

.footer-pay-stripe {
    color: #003087;
    font-style: italic;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer-brand-col {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 25px 25px 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand-col {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-brand-desc {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 20px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
    
    .footer-social-row {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-payment-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- COMPARISON TABLE --- */
.comparison-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.comparison-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    font-size: 15px;
}

.comparison-table thead {
    background-color: #f8fafc;
}

.comparison-table th {
    font-weight: 600;
    color: var(--brand-dark);
    text-align: center;
}

.comparison-table tbody tr {
    border-top: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-logo {
    max-height: 32px;
    vertical-align: middle;
}

.check-mark {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 20px;
}

.cross-mark {
    color: #ef4444;
    font-weight: 700;
    font-size: 20px;
}

/* --- DATA CENTER MAP SECTION --- */
.map-section {
    padding: 100px 40px;
    background-color: var(--white);
}

.map-container {
    max-width: 1300px;
    margin: 0 auto;
}

.map-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.map-content h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.map-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.location-icon {
    width: 54px;
    height: 54px;
    background-color: #f1fcf1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    flex-shrink: 0;
}

.flag-icon {
    font-size: 32px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    border-color: var(--brand-green);
}

.location-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
}

.location-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-features {
    list-style: none;
}

.location-features li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.location-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 700;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 80px 40px;
    background-color: var(--brand-dark);
    text-align: center;
    color: var(--white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.cta-container .hero-btn {
    display: inline-block;
}

/* --- Responsive Layout --- */
@media (max-width: 1100px) {
    .nav-wrapper {
        display: none; /* Auto-collapses dropdown system on small tablet/mobile screens */
    }
    .security-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .migration-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .migration-content .section-header {
        text-align: center;
    }
    .migration-graphic {
        order: -1; /* Move image to top on mobile */
    }
    .migration-perks li {
        justify-content: center;
        text-align: left;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-card.featured {
        transform: scale(1); /* Reset scale on mobile */
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px); /* Keep hover effect */
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-table th, .comparison-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    .comparison-logo {
        max-height: 24px;
    }
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* --- COMPARISON TABLE --- */
.comparison-section {
    padding: 100px 40px;
    background-color: var(--white);
}

.comparison-container {
    max-width: 1300px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.comparison-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    padding: 10px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    table-layout: fixed;
}

/* Column Widths */
.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1) {
    width: 22%;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    padding-left: 16px;
}
.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    width: 26%;
}
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3),
.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4),
.comparison-table th:nth-child(5),
.comparison-table td:nth-child(5) {
    width: 17%;
}

.comparison-table th, 
.comparison-table td {
    padding: 22px 14px;
    font-size: 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.comparison-table thead th {
    border-bottom: none;
    padding-bottom: 30px;
}

/* Highlighted Column Styles (HOSTDATOS) */
.highlight-col {
    position: relative;
    background-color: #ffffff;
}

.highlight-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-left: 2px solid var(--brand-green);
    border-right: 2px solid var(--brand-green);
    pointer-events: none;
    z-index: 1;
}

thead th.highlight-col::before {
    top: -10px;
    border-top: 2px solid var(--brand-green);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

tfoot td.highlight-col::before {
    bottom: -10px;
    border-bottom: 2px solid var(--brand-green);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

td.highlight-col {
    font-weight: 600;
    color: var(--text-dark);
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.comparison-logo {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(40%);
    transition: all 0.3s ease;
}

.logo-wrapper.main-brand .comparison-logo {
    max-height: 42px;
    filter: none;
}

.badge-recommended {
    background-color: var(--brand-green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.table-btn {
    display: inline-block;
    background-color: var(--brand-green);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    z-index: 2;
    position: relative;
}

.table-btn:hover {
    background-color: var(--brand-green-hover);
}

/* --- WHY CHOOSE US SECTION --- */
.why-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-container {
    max-width: 1300px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.why-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    border-color: var(--brand-green);
}

.why-icon {
    width: 54px;
    height: 54px;
    background-color: #f1fcf1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Online Journey Section --- */
.online-journey-section {
    padding: 80px 40px;
    background-color: var(--white);
}

.online-journey-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.journey-visual {
    position: relative;
    padding: 40px;
    flex: 1;
    min-width: 350px;
    display: flex;
    justify-content: center;
}

.browser-window {
    background:  #cceeb9;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    border: 1px solid #f3e8ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.window-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-header span:nth-child(1) { background: #ff5f56; }
.window-header span:nth-child(2) { background: #ffbd2e; }
.window-header span:nth-child(3) { background: #27c93f; }

.window-content h3 {
    color: var(--brand-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.window-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.badge-float {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: float-animation 4s ease-in-out infinite;
}

.badge-float img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-float-1 { top: 10px; left: 10px; animation-delay: 0s; }
.badge-float-2 { top: 0px; right: 20px; animation-delay: 1s; }
.badge-float-3 { bottom: 40px; right: 0px; animation-delay: 2s; }
.badge-float-4 { bottom: 10px; left: 30px; animation-delay: 3s; }

.journey-text {
    flex: 1;
    min-width: 350px;
}

.journey-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.journey-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.journey-text p:last-of-type {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .journey-text h2 {
        font-size: 2rem;
    }

    .journey-text p {
        font-size: 1rem;
    }
}

/* --- TECHNOLOGY STACK SECTION --- */
.tech-section { padding: 100px 40px; background-color: var(--bg-light); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }

.tech-container {
    max-width: 1300px;
    margin: 0 auto;
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-header h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.tech-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card { background-color: var(--white); border: 1px solid var(--border-color); border-radius: 12px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; }

.tech-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-4px);
}

.tech-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: #f1fcf1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    margin: 0 auto 20px;
}

.tech-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f1fcf1 0%, #e8f8e0 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.newsletter-content p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-input {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    width: 280px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: var(--white);
}

.newsletter-input:focus {
    border-color: var(--brand-green);
}

.newsletter-btn {
    padding: 12px 24px;
    background-color: var(--brand-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: var(--brand-green-hover);
}

/* --- WEBSITE ANALYSIS SECTION --- */
.analysis-section {
    padding: 80px 40px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.analysis-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.analysis-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.analysis-content p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.6;
}

.analysis-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.analysis-input {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    width: 320px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: var(--white);
}

.analysis-input:focus {
    border-color: var(--brand-green);
}

.analysis-btn {
    padding: 12px 24px;
    background-color: var(--brand-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.analysis-btn:hover {
    background-color: var(--brand-green-hover);
}

/* Responsive for new sections */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-container { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-input { width: 100%; }
    .analysis-container { flex-direction: column; text-align: center; }
    .analysis-form { flex-direction: column; width: 100%; }
    .analysis-input { width: 100%; }
}

@keyframes float-animation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 992px) {
    .online-journey-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .journey-visual {
        order: -1;
    }
}
@media (max-width: 1100px) {
    /* Updates both pricing grids to stack on mobile/tablets */
    .pricing-grid,
    .pricing-grid-2x3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .pricing-grid,
    .pricing-grid-2x3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* --- 2-ROW WALL OF LOVE SECTION --- */
.wall-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.wall-marquee {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 100px;
}

.wall-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 60s linear infinite;
}

.wall-track.reverse {
    animation-name: scrollRight;
}

.wall-marquee:hover .wall-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.rev-card {
    width: 380px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.rev-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.rev-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
}

.rev-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.rev-author { display: flex; align-items: center; gap: 12px; margin-top: 8px; }

.rev-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}

.rev-info h5 { font-size: 14px; font-weight: 600; color: var(--brand-dark); }

.rev-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rev-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 1px;
}

.rev-quote-icon {
    font-size: 48px;
    font-weight: 800;
    color: var(--border-color);
    line-height: 0.5;
}

.rev-job {
    font-size: 10px; /* Reduced font size */
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Responsive for new Hero section */
@media (max-width: 992px) {
    .brand-logos {
        justify-content: center;
        gap: 2.5rem;
    }
    .stats-banner {
        padding: 2rem 1rem;
    }
    .stat-value-row {
        font-size: 1.5rem;
    }
    .stat-value-row svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 1024px) {
    .hero-section .main-heading { font-size: 2.25rem; }
    .hero-container { gap: 2rem; }
}

@media (max-width: 768px) {
    .hero-section { padding-top: 3rem; }
    .stats-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    .stat-divider {
        width: 60%;
        height: 1px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-section .hero-description {
        max-width: 90%;
    }
    .cta-group, .feature-badges { justify-content: center; }
    .hero-image {
        justify-content: center;
        margin-top: 1rem;
    }
}






















 
        /* =========================================
           YOUSTABLE-INSPIRED wordpress-hosting SECTIONS
           ========================================= */
        
        /* 1. Hero Section */
        .wp-hero {
            padding: 80px 40px;
            background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }
        .wp-hero-container {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        .wp-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(111, 179, 63, 0.1); color: var(--brand-green-hover);
            padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 700;
            margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .wp-hero h1 {
            font-size: 3.5rem; font-weight: 800; line-height: 1.1; color: var(--brand-dark);
            margin-bottom: 20px; letter-spacing: -1px;
        }
        .wp-hero h1 span { color: var(--brand-green); }
        .wp-hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; max-width: 90%; }
        .wp-hero-features { list-style: none; margin-bottom: 30px; }
        .wp-hero-features li {
            display: flex; align-items: center; gap: 10px; font-size: 15px;
            color: var(--text-dark); margin-bottom: 12px; font-weight: 500;
        }
        .wp-hero-features svg { width: 20px; height: 20px; stroke: var(--brand-green); fill: none; stroke-width: 2.5; }
        .hero-img-wrap img { width: 100%; max-width: 600px; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08)); }

        /* 2. Trust Rating Bar (YouStable Style) */
        /* 2. Trust Rating Bar (Image Exact Match) */
.rating-section {
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    padding: 40px 20px;
    background: var(--white);
}
.rating-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rating-box {
    display: flex;
    flex-direction: column; /* Stacks logo on top of stars */
    align-items: center;
    justify-content: center;
    gap: 12px; /* Perfect spacing between logo and text */
    flex: 1;
    position: relative;
}
/* Vertical divider lines between columns */
.rating-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background-color: #e5e7eb;
}
.brand-logo {
    height: 35px; /* Fixed height to keep logos aligned */
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}
.rating-details {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}
.rating-stars svg {
    width: 18px;
    height: 18px;
}
.star-filled {
    fill: #F59E0B; /* Exact Orange/Gold from image */
}
.star-empty {
    fill: transparent;
    stroke: #F59E0B;
    stroke-width: 2;
}
.rating-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}
.rating-text strong {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}
.rating-text .divider {
    color: #d1d5db;
    margin: 0 4px;
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .rating-container {
        flex-direction: column;
        gap: 40px;
    }
    .rating-box:not(:last-child)::after {
        display: none; /* Hide vertical lines on mobile */
    }
    .rating-box:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 40px;
        width: 100%;
    }
}

   



        /* 4. Feature Bento Grid */
        .bento-section { padding: 100px 40px; background: var(--white); }
        .bento-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .bento-box { background: var(--bg-light); border-radius: 16px; padding: 40px; border: 1px solid var(--border-color); transition: 0.3s; }
        .bento-box:hover { background: var(--white); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
        .bento-icon { width: 50px; height: 50px; background: #f1fcf1; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .bento-icon svg { width: 24px; height: 24px; stroke: var(--brand-green); fill: none; stroke-width: 2; }
        .bento-box h4 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
        .bento-box p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

        /* 4. Feature Bento Grid (MilesWeb/YouStable Hybrid) */
        .bento-section { padding: 100px 40px; background: var(--white); }
        .bento-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .bento-box {
            background: var(--bg-light); border-radius: 16px; padding: 40px;
            border: 1px solid var(--border-color); transition: 0.3s;
        }
        .bento-box:hover { background: var(--white); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
        .bento-icon {
            width: 50px; height: 50px; background: #f1fcf1; border-radius: 12px;
            display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
        }
        .bento-icon svg { width: 24px; height: 24px; stroke: var(--brand-green); fill: none; stroke-width: 2; }
        .bento-box h4 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
        .bento-box p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

        /* Responsive */
        @media(max-width: 1024px) {
            .wp-hero-container, .migration-container { grid-template-columns: 1fr; text-align: center; }
            .wp-hero-features li, .pricing-card-features li { justify-content: center; text-align: left; }
            .pricing-grid, .bento-grid { grid-template-columns: 1fr; }
            .rating-container { flex-direction: column; gap: 30px; }
        .rating-box:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 30px; width: 100%; }
        .wp-hero .cta-group, .wp-hero .feature-badges { justify-content: center; }
        .wp-hero .hero-text { align-items: center; }
        .wp-hero p { max-width: 100%; }
        }

    /* --- wordpress-hosting Hero Offer Styles --- */
    .wp-hero .offer-price-row {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .wp-hero .tag-limited-offer {
        background-color: #58922f;
        color: #ffe4e6;
        border-color: #ffc2c7;
        font-size: 14px;
        padding: 6px 12px;
    }

    .wp-hero .offer-main-text {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 1.5rem;
    }

    .wp-hero .offer-sub-text {
        font-size: 1rem;
        color: var(--text-muted);
        font-weight: 500;
        margin-top: 5px;
    }

    /* --- wordpress-hosting Hero CTA & Badges --- */
    .wp-hero .cta-group {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .wp-hero .feature-badges {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .wp-hero .badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-muted);
    }

    .wp-hero .badge svg { width: 18px; height: 18px; stroke: var(--brand-green); fill: none; stroke-width: 2; }

    .wp-hero .btn-secondary svg {
        width: 12px;
        height: 12px;
        stroke: var(--brand-green);
        fill: none;
        stroke-width: 3;
    }

        /* 4. 60 Seconds Installation Section */
        .wp-60s-section { padding: 100px 40px; background: var(--white); }
        .wp-60s-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .badge-green { background: rgba(111, 179, 63, 0.1); color: var(--brand-green-hover); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; display: inline-block; margin-bottom: 20px; }
        .wp-60s-text h2 { font-size: 2.5rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
        .wp-60s-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; }
        .wp-60s-list { list-style: none; margin-bottom: 40px; }
        .wp-60s-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 16px; color: var(--text-dark); font-weight: 500;}
        .wp-60s-list svg { width: 22px; height: 22px; fill: var(--brand-green); flex-shrink: 0; }
        .btn-green { background: var(--brand-green); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: 0.3s; }
        .btn-green:hover { background: var(--brand-green-hover); }
        
        .mockup-window { background: #2d3748; border-radius: 16px; padding: 20px; color: #e2e8f0; font-family: monospace; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .mockup-header { display: flex; gap: 8px; margin-bottom: 20px; align-items: center;}
        .mockup-dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
        .dot-r { background: #ff5f56; } .dot-y { background: #ffbd2e; } .dot-g { background: #27c93f; }
        .mockup-title { text-align: center; flex: 1; font-size: 14px; opacity: 0.7; }
        .mockup-body p { margin-bottom: 15px; font-size: 14px; line-height: 1.6; }
        .mockup-success { color: #9ae6b4; margin-bottom: 20px; font-weight: bold; }
        .mockup-card { background: #4a5568; padding: 20px; border-radius: 8px; font-size: 14px; line-height: 1.6;}

        @media(max-width: 1024px) {
            .wp-60s-container { grid-template-columns: 1fr; text-align: center; }
        }

         /* 5. Use Cases Section */
        .usecases-section { padding: 100px 40px; background: var(--white); }
        .usecases-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
        .usecases-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 15px; letter-spacing: -1px; }
        .usecases-header p { font-size: 1.1rem; color: var(--text-muted); }
        .usecases-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .usecase-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; transition: 0.3s; }
        .usecase-card:hover { border-color: var(--brand-green); box-shadow: 0 10px 30px rgba(111, 179, 63, 0.1); transform: translateY(-5px); }
        .usecase-icon { width: 48px; height: 48px; background: rgba(111, 179, 63, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .usecase-icon svg { width: 24px; height: 24px; stroke: var(--brand-green); fill: none; stroke-width: 2; }
        .usecase-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 12px; }
        .usecase-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        @media(max-width: 1024px) {
            .usecases-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media(max-width: 768px) { .usecases-grid { grid-template-columns: 1fr; } }
        .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}












/* --- GUARANTEE BANNER --- */
.guarantee-banner {
    background-color: var(--brand-green);
    padding: 50px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin: 30px auto;
    max-width: 1100px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    flex-shrink: 0;
    width: 190px;
    height: 190px;
    display: block;
}

.badge-text {
    fill: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1.5px;
}

.badge-number {
    fill: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 76px;
}

.badge-days {
    fill: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.guarantee-content {
    max-width: 780px;
    color: white;
}

.guarantee-content h2 {
    margin: 0 0 14px 0;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.guarantee-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 768px) {
    .guarantee-banner {
        flex-direction: column; text-align: center; gap: 24px;
        padding: 50px 30px;
        margin: 80px 20px;
    }
    .guarantee-icon { width: 160px; height: 160px; }
}




 .blog-post-container { max-width: 1100px; margin: 0 auto; padding: 60px 40px; }
        .blog-post-header { margin-bottom: 50px; }
        .blog-post-meta { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; font-size: 14px; color: var(--text-muted); flex-wrap: wrap; }
        .blog-post-meta span { display: flex; align-items: center; gap: 6px; }
        .blog-post-title { font-size: 2.8rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 15px; line-height: 1.2; }
        .blog-post-excerpt { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }
        .blog-post-image { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; margin: 40px 0; }
        .blog-post-content { font-size: 16px; color: var(--text-dark); line-height: 1.8; }
        .blog-post-content h2 { font-size: 1.8rem; font-weight: 700; color: var(--brand-dark); margin: 40px 0 20px 0; }
        .blog-post-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--brand-dark); margin: 30px 0 15px 0; }
        .blog-post-content p { margin-bottom: 18px; }
        .blog-post-content ul, .blog-post-content ol { margin: 20px 0 20px 30px; }
        .blog-post-content li { margin-bottom: 12px; }
        .attack-type { background: var(--bg-light); border-left: 4px solid var(--brand-green); padding: 16px; margin: 20px 0; border-radius: 8px; }
        .attack-type h4 { font-size: 1rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
        .attack-type p { margin: 0; font-size: 14px; color: var(--text-muted); }
        .highlight-box { background: rgba(111, 179, 63, 0.08); border-left: 4px solid var(--brand-green); padding: 20px; margin: 30px 0; border-radius: 8px; }
        .highlight-box strong { color: var(--brand-green); }
        .related-guides { margin-top: 80px; padding-top: 60px; border-top: 2px solid var(--border-color); }
        .related-guides h2 { font-size: 2rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 30px; }
        .guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .guide-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; transition: 0.3s; }
        .guide-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--brand-green); }
        .guide-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .guide-card a { color: var(--brand-green); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
        .guide-card a:hover { text-decoration: underline; }
        @media(max-width: 768px) {
            .blog-post-container { padding: 40px 20px; }
            .blog-post-title { font-size: 2rem; }
            .blog-post-image { height: 250px; }
            .guides-grid { grid-template-columns: 1fr; }
        }






/* 6. Why Build With Us Section */
        .why-build-section { padding: 100px 40px; background: var(--bg-light); border-top: 1px solid var(--border-color); }
        .why-build-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
        .why-build-img-wrap img { width: 100%; max-width: 450px; height: auto; }
        .why-build-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 15px; letter-spacing: -1px; }
        .why-build-header p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; }
        .why-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px 30px; }
        .why-feature-item { display: flex; align-items: flex-start; gap: 15px; }
        .why-feature-icon { flex-shrink: 0; width: 40px; height: 40px; background: #f1fcf1; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
        .why-feature-icon svg { width: 22px; height: 22px; stroke: var(--brand-green); fill: none; stroke-width: 2; }
        .why-feature-text h4 { font-size: 16px; font-weight: 700; color: var(--brand-dark); margin-bottom: 5px; }
        .why-feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

        @media(max-width: 1024px) {
            .why-build-container { grid-template-columns: 1fr; text-align: center; }
            .why-build-img-wrap { display: none; } /* Hide image on mobile for cleaner layout */
            .why-features-grid { grid-template-columns: 1fr; }
        }
/* 8. CTA Banner Section */

        .cta-banner-section { padding: 40px; background: var(--white); display: flex; justify-content: center; margin-bottom: 40px; }

        .cta-banner-container { background: var(--brand-dark); background-image: radial-gradient(var(--brand-dark) 1px, transparent 1px); background-size: 20px 20px; max-width: 1200px; width: 100%; border-radius: 24px; padding: 80px 40px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

        .cta-badge { color: var(--brand-green); border: 1px solid rgba(111, 179, 63, 0.3); background: rgba(111, 179, 63, 0.1); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 20px; }

        .cta-banner-container h2 { font-size: 3.2rem; font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }

        .cta-banner-container p { font-size: 1.1rem; color: #a1a1aa; max-width: 800px; margin: 0 auto 40px auto; line-height: 1.6; }

        .cta-buttons { display: flex; gap: 24px; justify-content: center; align-items: center; }

        .link-light { color: var(--white); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; font-size: 1.1rem; }

        .link-light:hover { color: #d4d4d8; }

       

        @media(max-width: 768px) {

            .cta-banner-container { padding: 60px 25px; }

            .cta-banner-container h2 { font-size: 2.2rem; }

            .cta-buttons { flex-direction: column; }

        }

        @media(max-width: 992px) {
            .legal-container {
                grid-template-columns: 1fr;
            }
            .legal-sidebar {
                position: static;
                margin-bottom: 40px;
            }
        }

        /* --- FAQ Toggle Button --- */
        .faq-toggle-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        .faq-toggle-btn {
            background-color: #6FB33F;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease-in-out;
            cursor: pointer;
            background-color: transparent;
            color: var(--text-dark);
            border: 1px solid var(--border-color);
        }

        .faq-toggle-btn:hover {
            background-color: var(--bg-light);
            border-color: var(--text-muted);
        }

        /* --- FAQ SECTION --- */
        .faq-section {
            padding: 100px 40px;
            background-color: var(--bg-light);
            border-top: 1px solid var(--border-color);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h2 {
            font-size: 38px;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--brand-dark);
            margin-bottom: 12px;
        }

        .faq-header p {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            list-style: none; /* Remove default marker */
        }

        .faq-question::-webkit-details-marker {
            display: none; /* For Chrome/Safari */
        }

        .faq-item[open] .faq-question {
            color: var(--brand-green);
        }

        .faq-item[open] .chevron {
            transform: rotate(180deg);
            stroke: var(--brand-green);
        }

        .faq-answer {
            padding: 0 25px 25px 25px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .faq-more {
            display: none;
        }


        /* --- ABOUT US PAGE --- */
        .about-hero {
            padding: 6rem 2rem;
            background: radial-gradient(circle at top right, rgba(111, 179, 63, 0.05), transparent);
            text-align: center;
        }

        .about-hero-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--brand-dark);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .about-hero h1 span {
            color: var(--brand-green);
        }

        .about-hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 2.5rem;
        }

        .about-hero .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .about-hero .btn-primary {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .about-hero .btn-secondary {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .metric-strip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .metric-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .metric-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brand-green);
            margin-bottom: 0.25rem;
        }

        .metric-label {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
        }

        .location-card.featured {
            border-color: var(--brand-green);
            box-shadow: 0 10px 30px rgba(111,179,63,0.1);
        }

        .architectural-section {
            padding: 100px 40px;
            background: var(--white);
        }

        .architectural-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .architectural-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .architectural-card {
            border-left: 4px solid var(--brand-green);
            padding-left: 1.5rem;
        }

        .architectural-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .architectural-card p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @media (max-width: 992px) {
            .why-build-container {
                grid-template-columns: 1fr;
            }
            .why-build-img-wrap {
                order: -1;
                margin-bottom: 40px;
            }
            .why-build-content {
                text-align: center;
            }
            .why-build-header {
                text-align: center;
            }
            .why-features-grid {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                padding: 4rem 1.5rem;
            }
            .architectural-section, .why-build-section, .map-section {
                padding: 80px 20px;
            }
            .architectural-grid {
                grid-template-columns: 1fr;
            }
        }

        .affiliate-stats-section {
            padding: 0 40px 100px;
            background: var(--white);
        }

        

        /* --- LEGAL/TERMS PAGES --- */
        .legal-section {
            padding: 80px 40px;
            background: var(--white);
        }

        .legal-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
            align-items: flex-start;
        }

        .legal-sidebar {
            position: sticky;
            top: calc(var(--header-height) + 40px); /* Header height + padding */
        }

        .legal-sidebar h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--brand-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }

        .legal-sidebar-nav {
            list-style: none;
        }

        .legal-sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s ease;
            margin-bottom: 4px;
        }

        .legal-sidebar-nav li a:hover {
            background-color: var(--bg-light);
            color: var(--brand-dark);
        }

        .legal-content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--brand-dark);
            margin-bottom: 10px;
            letter-spacing: -1px;
        }

        .legal-last-updated {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
        }

        .legal-text-block {
            margin-bottom: 40px;
        }

        .legal-text-block h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 15px;
            padding-top: 20px; /* For anchor link spacing */
        }

        .legal-text-block p, .legal-text-block li {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .legal-text-block ul, .legal-text-block ol {
            padding-left: 25px;
        }

        .legal-text-block a {
            color: var(--brand-green);
            font-weight: 600;
            text-decoration: none;
        }

        .legal-text-block a:hover {
            text-decoration: underline;
        }

        .sitemap-container { max-width: 1200px; margin: 0 auto; }
        .sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 40px; }
        .sitemap-column h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--brand-dark); }
        .sitemap-column ul { list-style: none; }
        .sitemap-column li a { display: block; padding: 5px 0; color: var(--text-muted); text-decoration: none; }
        .sitemap-column li a:hover { color: var(--brand-green); }



        /* 5. Migration Banner */
        .migration-section { padding: 80px 40px; background: var(--brand-dark); color: var(--white); margin: 60px 40px; border-radius: 24px; }
        .migration-container { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
        .migration-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
        .migration-text p { font-size: 1.1rem; color: #a1a1aa; margin-bottom: 30px; max-width: 500px;}
        .migration-text ul { list-style: none; margin-bottom: 30px; }
        .migration-text li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #e4e4e7; }
        .migration-text li svg { stroke: var(--brand-green); width: 20px; height: 20px; }





/* --- dedicated-hosting FAQ SECTION (wordpress-hosting PAGES) --- */
.wp-faq-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.wp-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

/* --- Left Sidebar (Categories) --- */
.wp-faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.wp-faq-category-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-decoration: none;
}

.wp-faq-category-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.wp-faq-category-card.active {
    border-color: var(--brand-green);
    background-color: #f1fcf1;
    box-shadow: 0 10px 25px rgba(111, 179, 63, 0.1);
}

.wp-faq-cat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #f1f5f9;
    transition: background-color 0.3s ease;
}

.wp-faq-category-card.active .wp-faq-cat-icon {
    background-color: var(--white);
}

.wp-faq-cat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--brand-green);
    stroke-width: 2;
    fill: none;
}

.wp-faq-cat-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.wp-faq-cat-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* --- Right Content Area (Questions) --- */
.wp-faq-content {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.wp-faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.wp-faq-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

/* Accordion Styles */
.wp-faq-accordion-grid {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.wp-faq-accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.wp-faq-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: inherit;
}

.wp-faq-accordion-btn:hover {
    color: var(--brand-green);
}

.wp-faq-toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.wp-faq-accordion-btn[aria-expanded="true"] .wp-faq-toggle-icon {
    transform: rotate(180deg); /* Chevron points up when open */
    color: var(--brand-green);
}

.wp-faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.wp-faq-accordion-inner {
    padding-bottom: 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .wp-faq-container { grid-template-columns: 1fr; }
    .wp-faq-sidebar { position: static; }
}





        /* --- 3. SUPPORT / TECH FRIEND (From Image 6) --- */
        .support-section { padding: 100px 20px; background: var(--bg-light); border-top: 1px solid var(--border-color); }
        .support-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .supp-left h2 { font-size: 2.5rem; font-weight: 800; color: var(--brand-dark); line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
        .supp-left h2 span { color: var(--brand-green); }
        .supp-left > p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
        
        .supp-box { background: var(--white); border: 1px solid var(--border-color); padding: 20px; border-radius: 12px; margin-bottom: 16px; display: flex; align-items: center; gap: 16px; transition: 0.3s; position: relative; }
        .supp-box:hover { border-color: var(--brand-green); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
        .supp-icon { width: 40px; height: 40px; background: #f1f5f9; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--brand-dark); }
        .supp-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
        .supp-text h5 { font-size: 1rem; font-weight: 700; color: var(--brand-dark); }
        .supp-text p { font-size: 13px; color: var(--text-muted); margin: 0; }
        .live-dot { position: absolute; right: 20px; width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); }
        
        .supp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; margin-bottom: 30px; }
        .stat-box { background: rgba(111, 179, 63, 0.05); padding: 16px; border-radius: 12px; text-align: center; border: 1px solid rgba(111, 179, 63, 0.1); }
        .stat-box h4 { font-size: 1.25rem; font-weight: 800; color: var(--brand-green); margin-bottom: 4px; }
        .stat-box p { font-size: 12px; color: var(--text-muted); font-weight: 600; margin: 0; }

        .supp-left .btn-primary {
            padding: 14px 32px;
            font-size: 1rem;
        }

        .chat-ui { background: var(--white); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid var(--border-color); }
        .chat-header { background: var(--brand-green); color: var(--white); padding: 20px; display: flex; align-items: center; gap: 12px; }
        .chat-avatar { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
        .chat-header-text h4 { font-size: 15px; font-weight: 700; margin: 0; }
        .chat-header-text p { font-size: 12px; margin: 0; opacity: 0.9; }
        .chat-body { padding: 24px; background: #f8fafc; display: flex; flex-direction: column; gap: 16px; height: 350px; overflow-y: auto; }
        .msg { background: var(--white); padding: 14px 18px; border-radius: 12px 12px 12px 0; font-size: 14px; max-width: 85%; border: 1px solid var(--border-color); color: var(--text-dark); position: relative; }
        .msg.user { background: var(--brand-dark); color: var(--white); align-self: flex-end; border: none; border-radius: 12px 12px 0 12px; }
        .chat-input { padding: 16px; background: var(--white); border-top: 1px solid var(--border-color); display: flex; align-items: center; gap: 10px; }
        .chat-input input { flex: 1; border: none; outline: none; font-size: 14px; font-family: inherit; }
        .chat-input button { background: var(--brand-green); color: var(--white); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .chat-input button svg { width: 16px; height: 16px; fill: currentColor; }















     


/* =========================================
   BLOG PAGE
   ========================================= */

/* Hero */
.blog-hero {
    padding: 60px 40px 40px;
    background: var(--white);
}
.blog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.blog-hero .wp-badge {
    display: inline-flex;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}
.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 20px;
}
.blog-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section & Layout */
.blog-section { padding: 80px 40px; background: var(--bg-light); }
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    border-color: var(--brand-green);
}

/* Image wrapper + badge */
.blog-card-img-wrap { position: relative; }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #e3a835;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card content */
.blog-card-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-date {
    text-align: right;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 15px; line-height: 1.4; }
.blog-card h3 a { text-decoration: none; color: var(--text-dark); transition: color 0.2s; }
.blog-card:hover h3 a { color: var(--brand-green); }
.blog-card-meta { margin-top: auto; padding-top: 15px; }
.blog-card-read-more {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.blog-card-read-more:hover { color: var(--brand-green); }

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 24px;
}
.sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 18px;
}
.sidebar-search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}
.sidebar-search-bar input {
    border: none;
    outline: none;
    padding: 10px 14px;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: transparent;
}
.sidebar-search-bar button {
    background: transparent;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    color: var(--text-muted);
    flex-shrink: 0;
}
.sidebar-search-bar button:hover { color: var(--brand-green); }

.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li a {
    display: block;
    padding: 9px 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}
.sidebar-cat-list li a:hover { color: var(--brand-green); background: var(--bg-light); }
.sidebar-cat-list li a.active {
    color: var(--brand-dark);
    font-weight: 700;
    background: rgba(111, 179, 63, 0.08);
}

/* Blog newsletter override — centered layout */
.blog-newsletter-container {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.blog-newsletter-container .newsletter-form {
    justify-content: center;
    margin-top: 20px;
}
.blog-newsletter-container .newsletter-content h2 { font-size: 24px; }

/* Blog responsive */
@media(max-width: 992px) {
    .blog-container { grid-template-columns: 1fr; }
    .blog-sidebar { order: -1; }
}
@media(max-width: 820px) {
    .blog-grid { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .blog-section { padding: 50px 20px; }
    .blog-hero { padding: 40px 20px; }
    .blog-hero h1 { font-size: 2.2rem; }
    .blog-newsletter-container .newsletter-form { flex-direction: column; }
    .blog-newsletter-container .newsletter-input { width: 100%; }
}

/* --- DYNAMIC FAQ PANES --- */
.faq-content-pane {
    display: none;
}
.faq-content-pane.active {
    display: block;
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   100% OPTIMIZED FOR ALL DEVICES
   ======================================== */

/* COMPARISON TABLE - HORIZONTAL SCROLL */
@media (max-width: 1024px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .comparison-table {
        min-width: 900px;
        table-layout: auto;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .comparison-logo {
        max-height: 24px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 20px;
    }
    
    .comparison-header h2 {
        font-size: 28px;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .comparison-table {
        min-width: 800px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 10px;
        font-size: 12px;
    }
    
    .comparison-table td:first-child {
        min-width: 120px;
    }
}

/* PRICING CARDS - MOBILE CENTERED */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 20px;
    }
    
    .pricing-header h2 {
        font-size: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card-body {
        padding: 25px 20px;
    }
    
    .pricing-card-header h3 {
        font-size: 20px;
    }
    
    .pricing-card-features {
        gap: 12px;
    }
    
    .pricing-card-features li {
        font-size: 13px;
    }
}

/* HERO SECTION - MOBILE FIRST */
@media (max-width: 768px) {
    .wp-hero {
        padding: 60px 20px;
    }
    
    .wp-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wp-hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .wp-hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-text {
        text-align: center;
        align-items: center;
    }
    
    .wp-hero-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .wp-hero-features li {
        justify-content: center;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    
    .cta-group .btn {
        width: 100%;
        text-align: center;
    }
    
    .feature-badges {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-img-wrap {
        order: -1;
        text-align: center;
    }
    
    .hero-img-wrap img {
        max-width: 100%;
        height: auto;
    }
}

/* BUTTONS - CENTER ALIGNED */
@media (max-width: 768px) {
    .btn, .hero-btn, .pricing-btn, .btn-primary, .btn-secondary {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .btn-green {
        width: 100%;
        justify-content: center;
    }
    
    .table-btn {
        width: 100%;
        text-align: center;
    }
}

/* ICONS - CENTER ALIGNED */
@media (max-width: 768px) {
    .icon-wrap,
    .why-feature-icon,
    .usecase-icon,
    .bento-icon,
    .tech-icon-wrap,
    .location-icon,
    .supp-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-grid,
    .why-grid,
    .usecases-grid,
    .bento-grid,
    .tech-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-card,
    .why-card,
    .usecase-card,
    .bento-box,
    .tech-card,
    .location-card {
        text-align: center;
    }
    
    .why-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* SECTIONS - PADDING OPTIMIZATION */
@media (max-width: 768px) {
    .features-section,
    .why-section,
    .usecases-section,
    .bento-section,
    .tech-section,
    .map-section,
    .faq-section,
    .wp-60s-section,
    .migration-section,
    .cta-banner-section,
    .blog-section,
    .support-section {
        padding: 60px 20px;
    }
    
    .section-header {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}

/* GRID LAYOUTS - MOBILE STACKING */
@media (max-width: 768px) {
    .wp-60s-container,
    .migration-container,
    .support-container,
    .online-journey-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .wp-60s-text,
    .migration-text,
    .supp-left,
    .journey-text {
        text-align: center;
        align-items: center;
    }
    
    .wp-60s-list,
    .migration-text ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .wp-60s-mockup,
    .chat-ui,
    .journey-visual {
        order: -1;
    }
}

/* FAQ SECTIONS - MOBILE LAYOUT */
@media (max-width: 992px) {
    .wp-faq-container {
        grid-template-columns: 1fr;
    }
    
    .wp-faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .wp-faq-sidebar {
        grid-template-columns: 1fr;
    }
    
    .wp-faq-content {
        padding: 25px 20px;
    }
    
    .wp-faq-accordion-btn {
        padding: 18px 0;
        font-size: 14px;
    }
}

/* BLOG LAYOUT - MOBILE FIRST */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-img {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 16px;
    }
}

/* NEWSLETTER & FORMS - MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .newsletter-container,
    .analysis-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form,
    .analysis-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input,
    .analysis-input {
        width: 100%;
    }
    
    .newsletter-btn,
    .analysis-btn {
        width: 100%;
    }
}

/* RATING BAR - MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .rating-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .rating-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 30px;
        width: 100%;
    }
    
    .rating-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .rating-box:not(:last-child)::after {
        display: none;
    }
}

/* GUARANTEE BANNER - MOBILE */
@media (max-width: 768px) {
    .guarantee-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 40px 25px;
        margin: 60px 20px;
    }
    
    .guarantee-icon {
        width: 140px;
        height: 140px;
    }
    
    .guarantee-content h2 {
        font-size: 24px;
    }
    
    .guarantee-content p {
        font-size: 15px;
    }
}

/* CTA BANNER - MOBILE */
@media (max-width: 768px) {
    .cta-banner-container {
        padding: 50px 25px;
    }
    
    .cta-banner-container h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn,
    .cta-buttons .link-light {
        width: 100%;
        text-align: center;
    }
}

/* FOOTER - MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .footer-section {
        padding: 50px 25px 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-payment-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* HEADER - MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .logo-img {
        max-height: 45px;
    }
}

/* GENERAL TEXT CENTERING */
@media (max-width: 768px) {
    .section-header,
    .comparison-header,
    .pricing-header,
    .why-header,
    .usecases-header,
    .faq-header,
    .map-content,
    .blog-hero-container {
        text-align: center;
    }
    
    .section-header h2,
    .comparison-header h2,
    .pricing-header h2,
    .why-header h2,
    .usecases-header h2,
    .faq-header h2,
    .map-content h2,
    .blog-hero h1 {
        font-size: 24px;
    }
    
    .section-header p,
    .comparison-header p,
    .pricing-header p,
    .why-header p,
    .usecases-header p,
    .faq-header p,
    .map-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* IMAGE FIRST ON MOBILE */
@media (max-width: 768px) {
    .why-build-img-wrap,
    .hero-img-wrap,
    .wp-60s-mockup,
    .chat-ui,
    .journey-visual,
    .migration-graphic {
        order: -1;
    }
}

/* ENSURE NO SECTION BREAKS */
@media (max-width: 768px) {
    * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container,
    .section-container,
    .pricing-container,
    .comparison-container,
    .why-container,
    .usecases-container,
    .blog-container,
    .footer-wrapper {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ========================================
   PRIVACY POLICY - MOBILE RESPONSIVE FIX
   ======================================== */

@media (max-width: 992px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-sidebar {
        position: static;
        order: 2;
    }
    
    .legal-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .legal-section {
        padding: 60px 20px;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-sidebar {
        position: static;
        order: 2;
        background-color: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 20px;
    }
    
    .legal-sidebar h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .legal-sidebar-nav li a {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .legal-content {
        order: 1;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-text-block h2 {
        font-size: 1.4rem;
    }
    
    .legal-text-block p,
    .legal-text-block li {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ========================================
   MIGRATION SECTION - IMAGE FIRST LAYOUT
   ======================================== */

@media (max-width: 768px) {
    .migration-section {
        padding: 60px 20px;
        margin: 40px 20px;
    }
    
    .migration-container {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .migration-graphic {
        order: -1;
        text-align: center;
    }
    
    .migration-graphic img {
        max-width: 100%;
        height: auto;
    }
    
    .migration-text {
        order: 1;
        text-align: center;
    }
    
    .migration-text h2 {
        font-size: 2rem;
    }
    
    .migration-text p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .migration-text ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    
    .migration-text li {
        margin-bottom: 12px;
    }
    
    .migration-text .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ========================================
   FREE BADGE - SPACING FIX
   ======================================== */

.badge-free {
    background-color: #e4f4ed;
    color: #0f7645;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 4px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-block;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.2;
    flex-wrap: wrap;
}

.pricing-card-features li .badge-free {
    margin-left: 4px;
    flex-shrink: 0;
}

/* Ensure badge stays on same line as text */
@media (max-width: 768px) {
    .pricing-card-features li {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .badge-free {
        margin-left: 4px;
        padding: 2px 6px;
        font-size: 10px;
    }
}

/* ========================================
   MIGRATION SECTION - FULL RESPONSIVE
   ======================================== */

.migration-section {
    padding: 80px 40px;
    background: var(--brand-dark);
    color: var(--white);
    margin: 60px 40px;
    border-radius: 24px;
}

.migration-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.migration-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.migration-graphic img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.migration-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.migration-text p {
    font-size: 1.1rem;
    color: #a1a1aa;
    margin-bottom: 30px;
    max-width: 500px;
}

.migration-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.migration-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #e4e4e7;
}

.migration-text li svg {
    stroke: var(--brand-green);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.migration-text .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
}

@media (max-width: 1024px) {
    .migration-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .migration-graphic {
        order: -1;
    }
}

@media (max-width: 768px) {
    .migration-section {
        padding: 50px 20px;
        margin: 40px 20px;
        border-radius: 16px;
    }
    
    .migration-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .migration-text h2 {
        font-size: 1.8rem;
    }
    
    .migration-text p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .migration-text ul {
        margin-bottom: 25px;
    }
    
    .migration-text li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .migration-text .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ========================================
   LEGAL SECTION - FULL RESPONSIVE
   ======================================== */

.legal-section {
    padding: 80px 40px;
    background: var(--white);
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.legal-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
}

.legal-sidebar h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.legal-sidebar-nav {
    list-style: none;
}

.legal-sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.legal-sidebar-nav li a:hover {
    background-color: var(--white);
    color: var(--brand-dark);
}

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.legal-last-updated {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.legal-text-block {
    margin-bottom: 40px;
}

.legal-text-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 15px;
    padding-top: 20px;
}

.legal-text-block p,
.legal-text-block li {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-text-block ul,
.legal-text-block ol {
    padding-left: 25px;
}

.legal-text-block a {
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
}

.legal-text-block a:hover {
    text-decoration: underline;
}




















/* =========================================
   MOBILE RESPONSIVE FIXES (CUSTOM OVERRIDES)
   ========================================= */

@media (max-width: 992px) {
    /* 1. Legal / FUP Page Layout Fix (Images 1 & 4) */
    /* Forces the content (Intro) to appear first, and the sidebar to stack neatly below it */
    .legal-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .legal-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    .legal-sidebar {
        position: static !important;
        order: 2 !important;
        width: 100% !important;
        margin-top: 20px !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 768px) {
    /* 2. Checkmark and Text Spacing Fix (Image 2) */
    /* Keeps the block centered on mobile but aligns the text and tick closely together */
    .location-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .location-features {
        display: inline-block !important; /* Forces list to shrink to content size */
        text-align: left !important;      /* Keeps text left-aligned next to tick */
        margin: 0 auto !important;        /* Centers the whole block */
    }

    .location-features li {
        padding-left: 28px !important;    /* Standardize spacing between tick and text */
        text-align: left !important;
    }

    .location-features li::before {
        left: 0 !important;               /* Locks the tick to the left of the text */
    }

    /* 3. Center "Talk to Sales" Link (Image 3) */
    /* Forces flexbox centering on the link to perfectly align it */
    .link-light, 
    .cta-buttons .link-light {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
}