/* ===================================
   Frogs DAO - Premium Web3 Landing Page
   Refined Luxury Design with Lighter Palette
   =================================== */

:root {
    /* Primary Colors - Sophisticated Palette */
    --primary-green: #00d97e;
    --primary-dark: #0f2419;
    --accent-emerald: #10b981;
    --accent-teal: #14b8a6;
    
    /* Neutral Colors - Light & Airy */
    --white: #ffffff;
    --cream: #fdfdf8;
    --cream-dark: #f8f8f3;
    --beige: #f5f3ed;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    
    /* Background */
    --bg-primary: #fdfdf8;
    --bg-secondary: #f8f8f3;
    --bg-cream: #f5f3ed;
    --bg-card: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.95);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 140px;
    --container-max: 1280px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows - Softer, more refined */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(0, 217, 126, 0.2);
}

/* ===================================
   Reset & Base Styles
   =================================== */

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-green);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-to-main:focus {
    top: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Typography Utilities
   =================================== */

.serif {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.serif em {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-green);
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.nav.scrolled {
    background: var(--bg-overlay);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text {
    color: var(--gray-900);
}

.logo-accent {
    color: var(--primary-green);
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-green);
}

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

.btn-connect {
    background: var(--primary-green);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--accent-emerald);
}

.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: var(--gray-600);
    background: var(--bg-cream);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-green);
    background: rgba(0, 217, 126, 0.1);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-900);
    transition: all var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    background: 
        linear-gradient(135deg, 
            #fdfdf8 0%, 
            #f8f8f3 25%,
            #f5f3ed 50%,
            #f8f8f3 75%,
            #fdfdf8 100%
        );
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='%2300d97e' stroke-width='0.5' opacity='0.08'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 1;
    z-index: 1;
    animation: gridMove 60s linear infinite;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 800px at 20% 30%, rgba(0, 217, 126, 0.15), transparent),
        radial-gradient(circle 600px at 80% 70%, rgba(20, 184, 166, 0.12), transparent),
        radial-gradient(circle 400px at 50% 50%, rgba(16, 185, 129, 0.08), transparent);
    pointer-events: none;
    z-index: 2;
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.7;
    mix-blend-mode: soft-light;
    z-index: 2;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
    mix-blend-mode: multiply;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: 
        radial-gradient(circle, rgba(0, 217, 126, 0.3) 0%, rgba(0, 217, 126, 0.1) 50%, transparent 70%);
    top: -400px;
    right: -300px;
    animation-delay: 0s;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: 
        radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, rgba(20, 184, 166, 0.1) 50%, transparent 70%);
    bottom: -350px;
    left: -250px;
    animation-delay: -7s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: 
        radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    33% { 
        transform: translate(40px, -60px) scale(1.15) rotate(5deg); 
    }
    66% { 
        transform: translate(-40px, 40px) scale(0.9) rotate(-5deg); 
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px) saturate(180%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 217, 126, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-label {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.15), rgba(20, 184, 166, 0.12));
    border: 2px solid rgba(0, 217, 126, 0.3);
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 4px 12px rgba(0, 217, 126, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-green);
    position: relative;
}

.title-line.highlight em {
    font-style: italic;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--gray-600);
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-emerald);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--gray-900);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-inline {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-inline:hover {
    background: var(--accent-emerald);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.375rem 2.75rem;
    font-size: 1.0625rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.625rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.8125rem;
    animation: fadeIn 2s ease-out 1.5s both;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
    animation: scrollPulse 2.5s infinite ease-in-out;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(12px); }
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: var(--section-padding) 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='%2300d97e' stroke-width='0.3' opacity='0.04'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 1;
    z-index: 0;
    animation: gridMove 60s linear infinite;
}

.section-header {
    margin-bottom: 4.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 217, 126, 0.08);
    border: 1px solid rgba(0, 217, 126, 0.2);
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 1rem auto 0;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    margin: 2rem auto;
    border-radius: 2px;
}

/* ===================================
   Our Process Section
   =================================== */

.our-process {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.our-process::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle 800px at 50% 50%, rgba(0, 217, 126, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
    animation: breathe 15s ease-in-out infinite;
}

.engine-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

/* Funnel Container */
.funnel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 5rem;
}

.funnel-stage {
    width: 100%;
    max-width: 700px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        var(--shadow-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    transition: all var(--transition-normal);
}

.funnel-stage:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.stage-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stage-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.1), rgba(20, 184, 166, 0.08));
    border-radius: 16px;
    color: var(--primary-green);
    border: 2px solid rgba(0, 217, 126, 0.3);
}

.funnel-stage h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.funnel-stage p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.funnel-arrow {
    color: var(--primary-green);
    margin: -1rem 0;
    z-index: 3;
    position: relative;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* Stage 1 - Social Noise */
.stage-1 {
    max-width: 650px;
}

.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.p1 { top: 20%; left: 15%; animation-delay: 0s; }
.p2 { top: 40%; left: 25%; animation-delay: 0.5s; }
.p3 { top: 60%; left: 35%; animation-delay: 1s; }
.p4 { top: 30%; left: 75%; animation-delay: 1.5s; }
.p5 { top: 70%; left: 65%; animation-delay: 2s; }
.p6 { top: 50%; left: 85%; animation-delay: 2.5s; }
.p7 { top: 80%; left: 20%; animation-delay: 3s; }
.p8 { top: 10%; left: 60%; animation-delay: 3.5s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    25% { transform: translate(-15px, -15px); opacity: 0.7; }
    50% { transform: translate(15px, 15px); opacity: 1; }
    75% { transform: translate(-15px, 15px); opacity: 0.7; }
}

/* Stage 2 - Strategic Capture */
.stage-2 {
    max-width: 600px;
}

.flow-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.flow-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-green), transparent);
    opacity: 0;
    animation: flowDown 2s ease-in-out infinite;
}

.flow-line:nth-child(1) { top: 10%; animation-delay: 0s; }
.flow-line:nth-child(2) { top: 30%; animation-delay: 0.5s; }
.flow-line:nth-child(3) { top: 50%; animation-delay: 1s; }
.flow-line:nth-child(4) { top: 70%; animation-delay: 1.5s; }

@keyframes flowDown {
    0% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Stage 3 - Community Building */
.stage-3 {
    max-width: 550px;
}

.community-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    opacity: 0;
    animation: ringExpand 3s ease-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1s; }
.ring-3 { animation-delay: 2s; }

@keyframes ringExpand {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.8;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Stage 4 - Dominant Brand */
.stage-4 {
    max-width: 500px;
}

.brand-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    width: 80px;
    height: 80px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 217, 126, 0.4);
}

.brand-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(0, 217, 126, 0.3), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Process Metrics */
.process-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.metric-box {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        var(--shadow-md),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all var(--transition-normal);
}

.metric-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.metric-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.counter {
    display: inline-block;
}

.metric-plus {
    font-size: 2.5rem;
    opacity: 0.8;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.4;
}

/* ===================================
   Paradox Section
   =================================== */

.paradox {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.paradox::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: 
        radial-gradient(circle, rgba(20, 184, 166, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: breathe 12s ease-in-out infinite;
    animation-delay: -2s;
}

.paradox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2.5rem;
}

.paradox-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3.5rem;
    transition: all var(--transition-normal);
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.paradox-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--gray-900);
}

.challenge-list {
    list-style: none;
}

.challenge-list li {
    padding: 1rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.challenge-list li:hover {
    color: var(--gray-900);
}

.challenge-list li:before {
    content: '→';
    color: var(--primary-green);
    margin-right: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.challenge-list li:last-child {
    border-bottom: none;
}

.signal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.signal-question {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    font-family: var(--font-serif);
}

.signal-answer h4 {
    font-size: 1.375rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.signal-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ===================================
   About Section
   =================================== */

.about {
    background: white;
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: 
        radial-gradient(circle, rgba(0, 217, 126, 0.06), transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: breathe 14s ease-in-out infinite;
    animation-delay: -4s;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(8px);
    background: var(--beige);
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    color: var(--primary-green);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.1), rgba(20, 184, 166, 0.05));
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-text p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

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

.visual-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.visual-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}

.visual-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.1), rgba(20, 184, 166, 0.05));
    border-radius: 16px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.visual-header h3 {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--gray-900);
}

.visual-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.commitment-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.commitment-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.commitment-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    border-radius: 4px;
    animation: fillBar 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: left;
}

@keyframes fillBar {
    from { width: 0 !important; }
}

.commitment-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.visual-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-100);
}

.visual-footer p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
}

/* ===================================
   Services Section
   =================================== */

.services {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: 
        radial-gradient(circle, rgba(16, 185, 129, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: breathe 16s ease-in-out infinite;
    animation-delay: -6s;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 1;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 126, 0.03) 0%, transparent 70%);
    pointer-events: none;
    transition: all var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.04) 0%, rgba(20, 184, 166, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: scale(1.1);
    opacity: 0.8;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(0, 217, 126, 0.15);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.125rem;
    color: var(--gray-900);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-size: 1.0625rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.service-features li {
    color: var(--gray-600);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.service-features li:hover {
    color: var(--gray-900);
}

.service-features li:before {
    content: '✓';
    color: var(--primary-green);
    margin-right: 0.875rem;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Service Background Icons */
.service-bg-icon {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.04;
    pointer-events: none;
    transition: all var(--transition-slow);
    z-index: 0;
}

.service-bg-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-green);
}

.service-card:hover .service-bg-icon {
    opacity: 0.08;
    transform: translateY(-50%) scale(1.1) rotate(5deg);
}

.service-number {
    position: relative;
    z-index: 2;
}

.service-title {
    position: relative;
    z-index: 2;
}

.service-description {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Service Tags */
.service-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.service-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 126, 0.08);
    border: 1px solid rgba(0, 217, 126, 0.2);
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.service-tags .tag:hover {
    background: rgba(0, 217, 126, 0.15);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* ===================================
   Results Showcase Section
   =================================== */

.results-showcase {
    background: white;
    position: relative;
    overflow: hidden;
}

.results-showcase::after {
    content: '';
    position: absolute;
    top: -10%;
    right: 10%;
    width: 800px;
    height: 800px;
    background: 
        radial-gradient(circle, rgba(20, 184, 166, 0.07), transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: breathe 11s ease-in-out infinite;
    animation-delay: -3s;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.result-card {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all var(--transition-normal);
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.result-card:hover .result-icon {
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.15), rgba(20, 184, 166, 0.1));
    color: var(--primary-green);
    transform: scale(1.05);
}

.result-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 16px;
    color: var(--gray-700);
    transition: all var(--transition-normal);
}

.result-icon svg {
    width: 40px;
    height: 40px;
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-stat {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.result-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   Momentum Section
   =================================== */

.momentum {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.momentum::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 900px;
    height: 900px;
    background: 
        radial-gradient(circle, rgba(0, 217, 126, 0.06), transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: breathe 13s ease-in-out infinite;
    animation-delay: -5s;
}

.momentum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.momentum-point {
    display: flex;
    gap: 1.75rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.momentum-point:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.point-number {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: rgba(0, 217, 126, 0.3);
    flex-shrink: 0;
    line-height: 1;
}

.point-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.point-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.framework-section {
    margin-top: 5rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 
        var(--shadow-md),
        0 0 0 1px rgba(0, 217, 126, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    z-index: 1;
}

.framework-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3.5rem;
}

.framework-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: flex-start;
    gap: 2rem;
}

.framework-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.1), rgba(20, 184, 166, 0.05));
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    color: var(--primary-green);
    transition: all var(--transition-normal);
}

.framework-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.15), rgba(20, 184, 166, 0.1));
}

.step-label {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
}

.step-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.framework-arrow {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 700;
    padding-top: 2rem;
}

/* ===================================
   CTA Section
   =================================== */

.cta {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--cream-dark) 100%);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: 
        radial-gradient(circle, rgba(0, 217, 126, 0.12), transparent 60%);
    animation: breathe 9s ease-in-out infinite;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 217, 126, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

.cta-subtitle {
    font-size: 1.375rem;
    color: var(--gray-600);
    margin-bottom: 3.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-note {
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-300);
    margin-top: 2.5rem;
}

.cta-note p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    border-top: 1px solid var(--gray-800);
    padding: 5rem 0 2.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-green);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-social-link:hover {
    color: var(--primary-green);
    background: rgba(0, 217, 126, 0.05);
    transform: translateX(4px);
}

.footer-social-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-meta span {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-style: italic;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .momentum-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-steps {
        grid-template-columns: 1fr;
    }
    
    .framework-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: 0.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-overlay);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2.5rem;
        gap: 1.75rem;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 3rem 2rem;
        border-radius: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 3rem;
    }
    
    .paradox-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: auto;
        padding: 2.5rem 2rem;
    }
    
    .service-bg-icon {
        width: 150px;
        height: 150px;
        right: -20px;
        opacity: 0.06;
    }
    
    .service-tags {
        margin-top: 1.25rem;
    }
    
    .service-tags .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .section-intro {
        text-align: center;
    }
    
    .result-card {
        flex-direction: column;
        text-align: center;
    }
    
    .momentum-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-section {
        padding: 2.5rem 1.5rem;
    }
    
    .framework-steps {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .framework-arrow {
        transform: rotate(90deg);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .paradox-card,
    .service-card,
    .visual-card {
        padding: 2.25rem 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .stat {
        width: 100%;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.5);
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
    }
    
    .momentum-point {
        padding: 1.75rem 1.5rem;
    }
    
    .framework-section {
        padding: 2rem 1.25rem;
    }
    
    .cta-content {
        padding: 3rem 2rem;
        border-radius: 30px;
    }
    
    .funnel-stage {
        max-width: 100% !important;
        padding: 2.5rem 2rem;
    }
    
    .process-metrics {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metric-box {
        padding: 2.5rem 2rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
}
