/* ==========================================================================
   AGILEWEB STUDIO - COMPACT & HIGH-IMPACT LIGHT MODE DESIGN SYSTEM (SITE-PREMIUM)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & LIGHT THEME TOKENS (MATCHING EMAIL ENGINE IDENTITY)
   -------------------------------------------------------------------------- */
:root {
    /* Light Mode Palette (100% Harmonized with Cold Email Template) */
    --bg-primary: #FAFCFF;
    --bg-surface: #FFFFFF;
    --bg-card-glass: #FFFFFF;
    --bg-section-alt: #F1F5F9;

    --accent-blue: #0284C7;        /* Electric Sky Blue (Same as Email Logo "AgileWeb") */
    --accent-blue-dark: #0369A1;
    --accent-navy-brand: #0F2B5C;   /* Deep Midnight Navy (Same as Email Header) */
    --accent-whatsapp: #128C7E;
    --accent-whatsapp-hover: #0E7467;

    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;

    --border-glass: rgba(203, 213, 225, 0.6);
    --border-glow: rgba(2, 132, 199, 0.35);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Compact Spacing Scale */
    --space-xs: 0.375rem; /* 6px */
    --space-sm: 0.75rem;  /* 12px */
    --space-md: 1.25rem;  /* 20px */
    --space-lg: 2rem;     /* 32px */
    --space-xl: 3.75rem;  /* 60px */

    /* Container & Radius */
    --container-max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 12px 30px rgba(2, 132, 199, 0.12);
    --shadow-wa: 0 6px 20px rgba(18, 140, 126, 0.25);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. BASE RESET & GLOBAL STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent-blue);
    color: #FFFFFF;
}

:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 4px;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    max-width: 65ch;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Utility Containers & Helpers */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-navy-brand) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* STRICT UNIFORM SECTION SPACING (60px TOP & BOTTOM) */
.section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-blue-dark);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-description {
    font-size: 1.05rem;
    margin: 0 auto;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   3. GLASSMORPHISM CARDS SYSTEM (COMPACT)
   -------------------------------------------------------------------------- */
.glass-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    min-height: 44px;
    transition: all var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-navy-brand) 0%, var(--accent-blue) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--accent-whatsapp) 0%, #0E7467 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-wa);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #0E7467 0%, #09544A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.35);
}

.btn-outline {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: #F8FAFC;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 1.15rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
    min-height: 38px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.shadow-pulse {
    animation: pulse-shadow-light 2.5s infinite;
}

@keyframes pulse-shadow-light {
    0% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(18, 140, 126, 0); }
    100% { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0); }
}

/* --------------------------------------------------------------------------
   5. HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: background-color var(--transition-smooth), padding var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.5);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Brand Logo Styling (Harmonized 1:1 with Email Template) */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0F2B5C 0%, #0B1E40 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-letter {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: #FFFFFF;
    line-height: 1;
}

.arrow-svg {
    position: absolute;
    width: 15px;
    height: 15px;
    color: #00F0FF;
    right: 3px;
    bottom: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent-blue); /* Electric Sky Blue #0284C7 (Exact Email Match) */
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6rem;
    color: var(--accent-navy-brand); /* Deep Navy #0F2B5C (Exact Email Match) */
    letter-spacing: 0.22em;
    line-height: 1.2;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--accent-blue);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    text-align: center;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.mobile-close-btn {
    position: absolute;
    top: -40px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-link:hover {
    color: var(--accent-blue);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (SYMMETRICAL 60px TOP & BOTTOM BALANCE)
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 120px;
    padding-bottom: 50px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.07) 0%, rgba(250, 252, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container-centered {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.22);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-blue);
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-blue-dark);
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.25rem, 4.2vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.12;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 auto 24px;
    max-width: 720px;
}

.hero-bullets-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-bottom: 28px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.bullet-icon {
    width: 20px;
    height: 20px;
    background: rgba(18, 140, 126, 0.12);
    color: var(--accent-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

/* Strictly Centered Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-top: 24px;
    margin: 28px auto 0;
    max-width: 620px;
    width: 100%;
    border-top: 1px solid rgba(203, 213, 225, 0.5);
    text-align: center;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-badge-item strong {
    color: var(--text-primary);
}

.trust-divider {
    color: rgba(203, 213, 225, 0.8);
}

/* --------------------------------------------------------------------------
   7. POR QUÉ ELEGIRNOS (COMPACT COMPARATIVE GRID - 60px PADDING)
   -------------------------------------------------------------------------- */
.section-why {
    background: var(--bg-section-alt);
    padding: 60px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.comparison-card {
    padding: 28px;
    position: relative;
    background: #FFFFFF;
}

.agileweb-card {
    border-color: var(--accent-blue);
    background: #FFFFFF;
    box-shadow: var(--shadow-hover);
}

.card-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.825rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.badge-traditional {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.badge-agileweb {
    background: rgba(2, 132, 199, 0.1);
    color: var(--accent-blue-dark);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-list li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
}

.icon-cross {
    color: #DC2626;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-check {
    color: var(--accent-whatsapp);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. SERVICIOS GRID (EXACTLY 6 CARDS IN 3x2 LAYOUT - 60px PADDING)
   -------------------------------------------------------------------------- */
.section-services {
    padding: 60px 0;
}

.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #FFFFFF;
}

.service-icon {
    font-size: 2.2rem;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.service-desc {
    font-size: 0.9rem;
    flex: 1;
    color: var(--text-secondary);
}

.service-tag-pill {
    align-self: flex-start;
    padding: 3px 10px;
    background: rgba(2, 132, 199, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--accent-blue-dark);
}

/* --------------------------------------------------------------------------
   9. PROCESO EN 3 PASOS (60px PADDING)
   -------------------------------------------------------------------------- */
.section-process {
    background: var(--bg-section-alt);
    padding: 60px 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-step-card {
    padding: 24px;
    position: relative;
    background: #FFFFFF;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    color: rgba(2, 132, 199, 0.2);
    line-height: 1;
    margin-bottom: 6px;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   10. FAQ ACCORDION (60px PADDING)
   -------------------------------------------------------------------------- */
.section-faq {
    padding: 60px 0;
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: border-color var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.35rem;
    color: var(--accent-blue);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 180px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   11. FINAL CTA BANNER
   -------------------------------------------------------------------------- */
.section-cta-banner {
    padding: 60px 0;
}

.cta-banner-card {
    padding: 42px 28px;
    background: linear-gradient(135deg, #0F2B5C 0%, #0369A1 100%);
    color: #FFFFFF;
    border: none;
}

.cta-banner-card .cta-banner-title {
    color: #FFFFFF;
}

.cta-banner-card .cta-banner-desc {
    color: #E2E8F0;
}

.cta-banner-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner-desc {
    font-size: 1.05rem;
    margin: 0 auto 24px;
}

.cta-actions-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* --------------------------------------------------------------------------
   12. ENHANCED PREMIUM FOOTER (3 COLUMNS WITH DIRECT CONTACT BADGES)
   -------------------------------------------------------------------------- */
.site-footer {
    background: #F8FAFC;
    border-top: 1px solid var(--border-glass);
    padding: 50px 0 24px;
}

.footer-grid-3cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 380px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-icon {
    font-size: 1rem;
}

.contact-item a {
    color: var(--accent-blue-dark);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-navy-brand);
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    font-size: 0.825rem;
    color: var(--text-muted);
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto !important;
    text-align: center !important;
}

/* --------------------------------------------------------------------------
   13. ANIMATIONS & RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
.animate-fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-in.is-visible,
.animate-slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.22s; }
.delay-4 { transition-delay: 0.28s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .comparison-grid, .process-steps-grid, .footer-grid-3cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .btn-header-email {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav, .btn-header {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 380px;
        margin: 0 auto 28px;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .cta-actions-flex {
        flex-direction: column;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        gap: 12px;
    }
    .cta-actions-flex .btn {
        width: 100%;
    }
    .services-grid-6 {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 40px 0;
    }
    .hero-bullets-grid {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-trust-bar {
        flex-direction: column;
        gap: 6px;
    }
    .trust-divider {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
