/* Google Fonts import for Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors - DataGride Theme */
    --c-bg-body: #ffffff;
    --c-text-primary: #1B1B1B;
    --c-text-secondary: #545455;
    --c-accent-blue: #004682;
    --c-accent-blue-hover: #003366;
    --c-accent-green: #5CC019;
    --c-white: #ffffff;
    --c-nav-bg: rgba(255, 255, 255, 0.75);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

    /* Spacing */
    --spacing-container: 1100px;
    --spacing-container-wide: 1380px;

    /* Transitions */
    --transition-standard: cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--c-bg-body);
    color: var(--c-text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: -0.01em;
    font-size: 16px;
    position: relative;
}

/* Animated Mesh Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background-image:
        linear-gradient(rgba(0, 70, 130, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 70, 130, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 25s linear infinite;
}

/* Gradient Glow Overlay - Removed for pure white background */
body::after {
    display: none;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}




/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--transition-standard);
}

/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(92, 192, 25, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(92, 192, 25, 0.6);
    }
}

/* Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Scale In */
@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Slide In From Left */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.typography-hero-headline {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--c-accent-blue);
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #0066cc 50%, var(--c-accent-green) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    padding-bottom: 20px;
}

.typography-section-headline {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--c-accent-blue);
}

.typography-body {
    font-size: 18px;
    font-weight: 400;
}

/* ============================================
   NAVBAR - Liquid Glass
   ============================================ */

.global-nav {
    position: sticky;
    top: 0;
    height: 100px;
    background: var(--c-nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 9999;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--transition-standard);
}

.global-nav.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
}

.global-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--transition-spring);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--c-accent-blue);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent-green);
    transition: width 0.3s var(--transition-spring);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--c-accent-green);
}

.nav-links a.active {
    color: var(--c-accent-green);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #0066cc 100%);
    color: var(--c-white) !important;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s var(--transition-spring);
    box-shadow: 0 4px 15px rgba(0, 70, 130, 0.3);
    padding: 0;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 70, 130, 0.4);
    background: linear-gradient(135deg, var(--c-accent-green) 0%, #4da816 100%);
}

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

.hero-section {
    padding-top: 60px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(92, 192, 25, 0.05) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

.hero-subheadline {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 30px;
    color: var(--c-text-secondary);
}

.hero-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--transition-spring);
    text-decoration: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #0066cc 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 70, 130, 0.35);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 70, 130, 0.45);
    background: linear-gradient(135deg, #003366 0%, var(--c-accent-blue) 100%);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--c-accent-green);
    border: 2px solid var(--c-accent-green);
    box-shadow: 0 4px 15px rgba(92, 192, 25, 0.2);
}

.hero-btn-secondary:hover {
    background: var(--c-accent-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(92, 192, 25, 0.35);
}

.cta-link,
.link {
    color: var(--c-accent-green);
    position: relative;
    padding: 10px 0;
    transition: all 0.3s var(--transition-standard);
}

.cta-link:hover,
.link:hover {
    color: var(--c-accent-blue);
    transform: translateX(5px);
}

.hero-image-container {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-image {
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25));
    animation: float 6s ease-in-out infinite;
    transition: transform 0.5s var(--transition-standard);
}

.hero-image:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

/* ============================================
   BENTO GRID - Premium Cards
   ============================================ */

.bento-section {
    padding: 120px 0;
    background-color: #f9f9fb;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 28px;
    margin-top: 70px;
}

.bento-card {
    background-color: var(--c-white);
    border-radius: 24px;
    padding: 45px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--transition-spring);
    box-shadow: 0 20px 50px rgba(0, 70, 130, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 192, 25, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.bento-card:hover::before {
    opacity: 1;
}

.card-large {
    grid-column: span 12;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-medium {
    grid-column: span 6;
    min-height: 400px;
}

.bento-overline {
    color: var(--c-accent-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(92, 192, 25, 0.1);
    border-radius: 20px;
}

.bento-headline {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    max-width: 600px;
    color: var(--c-accent-blue);
}

.bento-text {
    font-size: 18px;
    color: var(--c-text-secondary);
    max-width: 500px;
    line-height: 1.6;
}

.dark-card {
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #003366 100%);
    color: white;
}

.dark-card .bento-text {
    color: rgba(255, 255, 255, 0.85);
}

.dark-card .bento-headline {
    color: white;
}

.dark-card .bento-overline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ============================================
   BUY SECTION
   ============================================ */

.buy-section {
    padding: 120px 0;
    background-color: var(--c-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.buy-container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    display: flex;
    gap: 80px;
    padding: 0 20px;
    align-items: center;
}

.buy-gallery {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-gallery img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 5s ease-in-out infinite;
    transition: transform 0.5s var(--transition-spring);
}

.buy-gallery img:hover {
    transform: scale(1.08) rotate(-2deg);
}

.buy-config {
    flex: 1;
}

.buy-headline {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 45px;
    color: var(--c-accent-blue);
}

.option-group {
    margin-bottom: 35px;
}

.option-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s var(--transition-spring);
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--c-accent-green);
    transform: scaleY(0);
    transition: transform 0.3s var(--transition-spring);
}

.option-btn:hover {
    border-color: var(--c-accent-blue);
    transform: translateX(8px);
    background: #fff;
}

.option-btn:hover::before {
    transform: scaleY(1);
}

.option-btn.selected {
    border-color: var(--c-accent-blue);
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 70, 130, 0.15);
}

.option-btn.selected::before {
    transform: scaleY(1);
    background: var(--c-accent-blue);
}

.option-title {
    font-size: 18px;
    font-weight: 600;
}

.option-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-accent-blue);
}

.add-to-bag-btn {
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #0066cc 100%);
    color: white;
    width: 100%;
    padding: 22px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s var(--transition-spring);
    box-shadow: 0 8px 30px rgba(0, 70, 130, 0.3);
    position: relative;
    overflow: hidden;
}

.add-to-bag-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.add-to-bag-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 70, 130, 0.4);
    background: linear-gradient(135deg, var(--c-accent-green) 0%, #4da816 100%);
}

/* ============================================
   STICKY BAR
   ============================================ */

.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transform: translateY(-100%);
    transition: transform 0.4s var(--transition-spring);
    z-index: 9998;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.sticky-bar.visible {
    transform: translateY(100px);
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.sticky-bar-title {
    font-weight: 600;
    font-size: 21px;
}

.sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sticky-buy-btn {
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #0066cc 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-spring);
    box-shadow: 0 4px 15px rgba(0, 70, 130, 0.3);
}

.sticky-buy-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--c-accent-green) 0%, #4da816 100%);
}

/* ============================================
   SPECS SECTION
   ============================================ */

.specs-section {
    padding: 120px 0;
    background-color: #f9f9fb;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.spec-item {
    background: var(--c-white);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 15px 40px rgba(0, 70, 130, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--transition-spring);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--c-accent-blue) 0%, var(--c-accent-green) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--transition-spring);
}

.spec-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.spec-item:hover::before {
    transform: scaleY(1);
}

.spec-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--c-accent-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(92, 192, 25, 0.1);
    border-radius: 20px;
}

.spec-value {
    font-size: 17px;
    color: var(--c-text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.spec-value:last-child {
    margin-bottom: 0;
}


/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--transition-standard), transform 0.8s var(--transition-standard);
}

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

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* ============================================
   HOW IT WORKS - SIMPLE HOVER EFFECTS
   ============================================ */

/* Pulse ring animation keyframe */
@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Step card base styles */
.step-card {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover effects */
.step-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    background: rgba(0, 70, 130, 0.04);
    box-shadow: 0 20px 50px rgba(0, 70, 130, 0.15);
    border-radius: 20px;
}

.step-card:hover .step-icon {
    transform: scale(1.15) translateY(-5px) !important;
}

.step-card:hover .step-badge {
    transform: scale(1.1);
}

.step-card:hover .step-title {
    color: var(--c-accent-green) !important;
}

.step-card:hover .pulse-ring {
    animation: pulseRing 2s ease-out infinite !important;
    opacity: 0.6 !important;
}

/* Icon smooth transitions */
.step-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.step-badge {
    transition: all 0.3s ease !important;
}

.step-title {
    transition: all 0.3s ease !important;
}

/* Mobile responsive for steps */
@media (max-width: 900px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }

    .connection-line-bg,
    .connection-line-progress {
        display: none !important;
    }

    .step-card {
        padding: 15px !important;
    }
}

@media (max-width: 600px) {
    .steps-timeline {
        grid-template-columns: 1fr !important;
    }

    .step-icon-wrapper {
        width: 90px !important;
        height: 90px !important;
    }

    .step-icon {
        width: 90px !important;
        height: 90px !important;
        font-size: 32px !important;
    }
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, #0066cc 100%);
    backdrop-filter: blur(10px);
    border: none;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 70, 130, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(150%);
    transition: transform 0.5s var(--transition-spring);
    z-index: 10000;
    color: white;
}

.toast-notification.active {
    transform: translateX(0);
}

.toast-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    color: var(--c-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    animation: scaleIn 0.4s var(--transition-spring);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .typography-hero-headline {
        font-size: 44px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-large {
        grid-column: span 2;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    .typography-hero-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    .typography-section-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

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

    .hero-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-image {
        max-width: 280px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-medium,
    .card-large {
        grid-column: span 1;
    }

    .bento-section {
        padding: 60px 0;
    }

    .bento-card {
        padding: 30px 25px;
    }

    .buy-container {
        flex-direction: column;
        gap: 30px;
    }

    .buy-gallery {
        max-width: 100%;
    }

    .buy-config {
        padding: 0 20px;
    }

    /* Navigation - Hide links, show hamburger space */
    .nav-links {
        display: none;
    }

    .global-nav-content {
        justify-content: center;
    }

    .nav-logo img {
        height: 50px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    /* Footer - Stack columns */
    footer .container>div:first-child {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    footer h3,
    footer h4 {
        text-align: center;
    }

    footer p {
        max-width: 100% !important;
        text-align: center;
    }

    /* Pricing cards stack */
    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Step cards */
    [style*="display: grid"][style*="gap: 30px"] {
        grid-template-columns: 1fr !important;
    }

    /* CTA section */
    [style*="padding: 120px"] {
        padding: 80px 20px !important;
    }

    [style*="font-size: 48px"] {
        font-size: 32px !important;
    }

    [style*="font-size: 42px"] {
        font-size: 28px !important;
    }

    /* Contact form columns */
    [style*="grid-template-columns: 1.2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Form field columns */
    [style*="grid-template-columns: 1fr 1fr"][style*="gap: 20px"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    .typography-hero-headline {
        font-size: 24px;
    }

    .typography-section-headline {
        font-size: 24px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .bento-card {
        padding: 25px 20px;
    }

    .bento-headline {
        font-size: 22px;
    }

    .bento-text {
        font-size: 14px;
    }

    /* Feature icon boxes smaller */
    [style*="width: 80px"][style*="height: 80px"] {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
    }

    /* Pricing cards */
    .price-card {
        padding: 35px 25px !important;
    }

    [style*="font-size: 52px"],
    [style*="font-size: 56px"] {
        font-size: 40px !important;
    }

    /* Footer smaller text */
    footer {
        padding: 40px 0 20px !important;
    }

    footer h3 {
        font-size: 22px !important;
    }

    footer h4 {
        font-size: 12px !important;
    }

    footer a,
    footer p {
        font-size: 13px !important;
    }

    /* Trust badges stack */
    [style*="display: flex"][style*="gap: 40px"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* Button full width */
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--c-accent-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .global-nav-content {
        position: relative;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        gap: 15px;
        border-radius: 0 0 20px 20px;
    }

    .nav-links.mobile-open a {
        padding: 12px 20px;
        border-radius: 10px;
        background: #f9f9fb;
    }

    .nav-links.mobile-open .nav-cta {
        background: var(--c-accent-blue);
        color: white;
    }
}