/* ========================================
   DUCK PROJECT - Main Stylesheet
   Color Theme: Warm Orange (matching box design)
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Vibrant Orange Theme */
    --primary-50: #fff5eb;
    --primary-100: #ffe8d1;
    --primary-200: #ffcf99;
    --primary-300: #ffb361;
    --primary-400: #ff9933;
    --primary-500: #ff8c00; /* Vibrant orange */
    --primary-600: #ff7700;
    --primary-700: #e65c00;
    --primary-800: #cc4400;
    --primary-900: #993300;

    /* Secondary Colors - Yellow/Gold */
    --secondary-50: #fffbeb;
    --secondary-100: #fff3c7;
    --secondary-200: #ffe680;
    --secondary-300: #ffd633;
    --secondary-400: #ffcc00;
    --secondary-500: #ffb800;

    /* Accent Colors */
    --peach: #ffb899;
    --coral: #ff7f66;
    --cream: #fff9f0;
    --warm-white: #fffcf8;
    --light-orange: #fff0e0;

    /* SWOT Card Colors */
    --strength-color: #4caf50;
    --weakness-color: #f44336;
    --opportunity-color: #2196f3;
    --threat-color: #9c27b0;

    /* Neutral Colors */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Typography */
    --font-family: 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 2px 8px rgba(247, 147, 30, 0.15);
    --shadow-md: 0 4px 12px rgba(247, 147, 30, 0.2);
    --shadow-lg: 0 10px 25px rgba(247, 147, 30, 0.25);
    --shadow-xl: 0 20px 40px rgba(247, 147, 30, 0.3);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Base */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
    color: #ff7700;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    border: 3px solid #ffcc66;
    box-shadow:
        0 4px 15px rgba(255, 140, 0, 0.15),
        inset 0 2px 0 rgba(255,255,255,0.8);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* Sun Rays Background Pattern */
.sunburst-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sunburst-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translateX(-50%);
    background: repeating-conic-gradient(
        from 0deg,
        var(--primary-100) 0deg 10deg,
        transparent 10deg 20deg
    );
    opacity: 0.5;
    animation: rotateSlow 120s linear infinite;
}

@keyframes rotateSlow {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,248,240,0.98) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid rgba(255, 153, 51, 0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.99) 0%, rgba(255,245,235,0.99) 100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.logo-icon {
    font-size: 2rem;
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.logo-text {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    filter: drop-shadow(1px 1px 0 rgba(255,204,102,0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-600);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-500));
    border-radius: 3px;
    transition: var(--transition);
}

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

.nav-challenge {
    background: linear-gradient(135deg, #ffcc00 0%, #ff8c00 100%);
    color: #1a1a1a !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border: 2px solid #1a1a1a;
    box-shadow: 3px 3px 0 #1a1a1a;
    transition: all 0.15s ease;
}

.nav-challenge:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 #1a1a1a;
    color: #1a1a1a !important;
}

.nav-challenge::after {
    display: none !important;
}

.nav-cta {
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow:
        0 4px 15px rgba(255, 119, 0, 0.35),
        inset 0 2px 0 rgba(255,255,255,0.2);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.45);
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-600);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg,
        #ff9933 0%,
        #ffb366 20%,
        #ffd199 40%,
        var(--cream) 70%,
        var(--warm-white) 100%
    );
    overflow: hidden;
}

/* Sun rays effect - more prominent */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translateX(-50%);
    background: repeating-conic-gradient(
        from 0deg at 50% 0%,
        rgba(255, 204, 102, 0.8) 0deg 4deg,
        rgba(255, 179, 102, 0.4) 4deg 8deg
    );
    opacity: 0.7;
    pointer-events: none;
    animation: sunRotate 60s linear infinite;
}

@keyframes sunRotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Clouds - fluffy and cute */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    height: 250px;
    background:
        radial-gradient(ellipse 100px 60px at 8% 50%, white 0%, transparent 70%),
        radial-gradient(ellipse 70px 45px at 15% 70%, white 0%, transparent 70%),
        radial-gradient(ellipse 120px 70px at 25% 35%, white 0%, transparent 70%),
        radial-gradient(ellipse 80px 50px at 70% 55%, white 0%, transparent 70%),
        radial-gradient(ellipse 60px 40px at 78% 75%, white 0%, transparent 70%),
        radial-gradient(ellipse 110px 65px at 88% 40%, white 0%, transparent 70%);
    opacity: 1;
    animation: floatClouds 25s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 153, 51, 0.2));
}

@keyframes floatClouds {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(20px) translateY(0); }
    75% { transform: translateX(10px) translateY(5px); }
}

.floating-cards {
    position: absolute;
    inset: 0;
}

.floating-cards .card {
    position: absolute;
    width: 65px;
    height: 85px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    box-shadow:
        0 8px 25px rgba(0,0,0,0.15),
        0 0 0 4px rgba(255,255,255,0.9),
        inset 0 2px 0 rgba(255,255,255,0.3);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-cards .card-s {
    background: linear-gradient(145deg, #6dd56d 0%, #4caf50 50%, #3d9140 100%);
    top: 18%;
    left: 6%;
    animation-delay: 0s;
}

.floating-cards .card-w {
    background: linear-gradient(145deg, #ff7b7b 0%, #f44336 50%, #d32f2f 100%);
    top: 12%;
    right: 10%;
    animation-delay: 1.2s;
}

.floating-cards .card-o {
    background: linear-gradient(145deg, #64b5f6 0%, #2196f3 50%, #1976d2 100%);
    bottom: 32%;
    left: 10%;
    animation-delay: 2.4s;
}

.floating-cards .card-t {
    background: linear-gradient(145deg, #ce93d8 0%, #ab47bc 50%, #8e24aa 100%);
    bottom: 22%;
    right: 6%;
    animation-delay: 3.6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(-8deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(-3deg) scale(1.02);
    }
    50% {
        transform: translateY(-25px) rotate(5deg) scale(1.05);
    }
    75% {
        transform: translateY(-10px) rotate(2deg) scale(1.02);
    }
}

/* Bottom decoration */
.hero-ducks {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255,230,200,0.5) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #fff 0%, #fff5eb 100%);
    border: 4px solid var(--primary-400);
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 28px;
    box-shadow:
        0 6px 20px rgba(255, 140, 0, 0.25),
        0 0 0 6px rgba(255, 204, 102, 0.3),
        inset 0 2px 0 rgba(255,255,255,0.8);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-badge::before {
    content: '🦆';
    font-size: 1.75rem;
    animation: duckWiggle 2s ease-in-out infinite;
}

@keyframes duckWiggle {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #4a3000;
    margin-bottom: 32px;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.8);
}

.hero-title .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
    color: #ff6600;
    padding: 8px 24px;
    border-radius: 16px;
    border: 4px solid #ffcc00;
    box-shadow:
        0 8px 30px rgba(255, 140, 0, 0.4),
        inset 0 2px 0 rgba(255,255,255,0.9);
    position: relative;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 44px;
    line-height: 1.9;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,248,240,0.95) 100%);
    padding: 24px 36px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 153, 51, 0.3);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
}

.hero-subtitle strong {
    color: #ff7700;
    font-weight: 700;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons - Modern & Cute */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 50%, #ff6600 100%);
    color: white;
    box-shadow:
        0 8px 25px rgba(255, 119, 0, 0.4),
        0 0 0 4px rgba(255, 204, 102, 0.3),
        inset 0 2px 0 rgba(255,255,255,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 12px 35px rgba(255, 119, 0, 0.5),
        0 0 0 6px rgba(255, 204, 102, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
    color: #ff7700;
    border: 4px solid #ffcc66;
    box-shadow:
        0 6px 20px rgba(255, 140, 0, 0.15),
        inset 0 2px 0 rgba(255,255,255,0.8);
}

.btn-secondary:hover {
    border-color: #ff9933;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.25);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
    padding: 28px 48px;
    border-radius: 28px;
    box-shadow:
        0 10px 40px rgba(255, 140, 0, 0.2),
        0 0 0 5px rgba(255, 204, 102, 0.4),
        inset 0 2px 0 rgba(255,255,255,0.9);
    border: 4px solid #ffcc66;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ffcc66, transparent);
    border-radius: 2px;
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(1px 1px 0 rgba(255,204,102,0.5));
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    margin-top: 6px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--primary-600);
    font-size: 0.875rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, #fff 50%, var(--cream) 100%);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.1);
    border: 3px solid rgba(255, 204, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff9933, #ff7700, #ff9933);
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
    border-color: #ffcc66;
}

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

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.problem-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-direction: column;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--primary-400);
    position: relative;
    overflow: hidden;
}

.problem-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.1) 0deg 10deg,
        transparent 10deg 20deg
    );
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-content h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.highlight-content p {
    font-size: 1.125rem;
    color: var(--primary-100);
}

.highlight-arrow {
    color: white;
    animation: bounce 2s infinite;
    position: relative;
    z-index: 1;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-section {
    background: var(--warm-white);
    position: relative;
}

.solution-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solution-video {
    position: relative;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--primary-400);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.1) 0deg 10deg,
        transparent 10deg 20deg
    );
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4);
}

.video-placeholder span {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.solution-text h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}

.solution-text p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-text strong {
    color: var(--primary-600);
    font-weight: 700;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--gray-700);
    padding: 12px 16px;
    background: var(--primary-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-500);
}

.solution-list .check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--strength-color) 0%, #388e3c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Differentiators */
.differentiators {
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    padding: 60px;
    border-radius: var(--radius-xl);
    border: 3px solid var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.diff-title {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.diff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.diff-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.diff-card.diff-not {
    border: 3px solid var(--gray-200);
    color: var(--gray-500);
}

.diff-card.diff-yes {
    border: 3px solid var(--primary-300);
    background: linear-gradient(135deg, var(--primary-50) 0%, white 100%);
    color: var(--primary-700);
}

.diff-icon {
    font-size: 1.5rem;
}

/* ========================================
   GAMEPLAY SECTION
   ======================================== */
.gameplay-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--primary-50) 50%, var(--warm-white) 100%);
    position: relative;
}

.gameplay-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.gameplay-timeline::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-300), var(--primary-500), var(--secondary-400), var(--strength-color));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    border: 4px solid white;
}

.timeline-item.surprise .timeline-number {
    background: linear-gradient(135deg, var(--secondary-400) 0%, var(--secondary-500) 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
}

.timeline-item.result .timeline-number {
    background: linear-gradient(135deg, var(--strength-color) 0%, #388e3c 100%);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--gray-100);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.timeline-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.timeline-time {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    color: var(--primary-700);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--primary-300);
}

.timeline-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary-100) 0%, var(--secondary-200) 100%);
    color: var(--secondary-500);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--secondary-300);
}

.timeline-item.result .timeline-badge {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.2) 100%);
    color: var(--strength-color);
    border-color: var(--strength-color);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.step:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    transform: translateX(5px);
}

.step-icon {
    font-size: 1.5rem;
}

.surprise-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.surprise-text strong {
    color: var(--primary-600);
}

.surprise-cards {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.mini-card {
    width: 55px;
    height: 75px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}

.mini-card:hover {
    transform: scale(1.1) rotate(5deg);
}

.mini-card.opportunity {
    background: linear-gradient(135deg, var(--opportunity-color) 0%, #1976d2 100%);
}

.mini-card.threat {
    background: linear-gradient(135deg, var(--threat-color) 0%, #7b1fa2 100%);
}

.result-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--strength-color);
}

.result-box p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.result-highlight {
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: var(--strength-color) !important;
    margin-bottom: 0 !important;
}

/* ========================================
   AUDIENCE SECTION
   ======================================== */
.audience-section {
    background: var(--warm-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.audience-card {
    background: white;
    padding: 44px 36px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 3px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.audience-card.primary {
    border-color: var(--primary-300);
    background: linear-gradient(to bottom, var(--primary-50) 0%, white 100%);
}

.audience-card.primary:hover {
    border-color: var(--primary-500);
}

.audience-card.secondary {
    border-color: var(--secondary-300);
    background: linear-gradient(to bottom, var(--secondary-50) 0%, white 100%);
}

.audience-card.secondary:hover {
    border-color: var(--secondary-500);
}

.audience-card.organization {
    border-color: var(--blue-dark);
    background: linear-gradient(to bottom, rgba(79, 195, 247, 0.1) 0%, white 100%);
}

.audience-card.organization:hover {
    border-color: var(--opportunity-color);
}

.audience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audience-card.primary .audience-badge {
    background: var(--primary-100);
    color: var(--primary-700);
    border: 2px solid var(--primary-300);
}

.audience-card.secondary .audience-badge {
    background: var(--secondary-100);
    color: var(--secondary-500);
    border: 2px solid var(--secondary-300);
}

.audience-card.organization .audience-badge {
    background: rgba(33, 150, 243, 0.1);
    color: var(--opportunity-color);
    border: 2px solid var(--blue-dark);
}

.audience-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.audience-card ul {
    margin-bottom: 24px;
}

.audience-card li {
    font-size: 1rem;
    color: var(--gray-600);
    padding: 10px 0;
    border-bottom: 2px dashed var(--gray-200);
}

.audience-card li:last-child {
    border-bottom: none;
}

.audience-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: italic;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.persona-box {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    padding: 52px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 4px solid var(--primary-400);
}

.persona-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.1) 0deg 10deg,
        transparent 10deg 20deg
    );
}

.persona-box h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.persona-traits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.trait {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.trait:hover {
    background: white;
    color: var(--primary-600);
    transform: translateY(-3px);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.benefits-tabs {
    max-width: 950px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 16px 32px;
    background: white;
    border: 3px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    border-color: var(--primary-300);
    color: var(--primary-600);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-color: var(--primary-400);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 3px solid var(--gray-100);
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   PRODUCT SECTION
   ======================================== */
.product-section {
    background: var(--warm-white);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.product-box {
    aspect-ratio: 0.75;
    max-width: 380px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
    border: 6px solid var(--primary-300);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.product-box:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.product-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg at 50% 30%,
        rgba(255,255,255,0.15) 0deg 8deg,
        transparent 8deg 16deg
    );
}

.box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.duck-icon {
    font-size: 6rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.box-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.box-tagline {
    font-size: 0.9rem;
    color: var(--primary-100);
    text-align: center;
    max-width: 200px;
}

.product-details h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.product-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.product-item:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    transform: translateX(5px);
}

.item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.item-icon.card-s {
    background: linear-gradient(135deg, var(--strength-color) 0%, #388e3c 100%);
}

.item-icon.card-w {
    background: linear-gradient(135deg, var(--weakness-color) 0%, #d32f2f 100%);
}

.item-icon.card-o {
    background: linear-gradient(135deg, var(--opportunity-color) 0%, #1976d2 100%);
}

.item-icon.card-t {
    background: linear-gradient(135deg, var(--threat-color) 0%, #7b1fa2 100%);
}

.item-icon.card-target {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    font-size: 1.375rem;
}

.item-icon.card-sheet {
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-700) 100%);
    font-size: 1.375rem;
}

.item-icon.card-manual {
    background: linear-gradient(135deg, var(--secondary-400) 0%, var(--secondary-500) 100%);
    font-size: 1.375rem;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: var(--radius);
    border: 3px solid var(--primary-200);
    box-shadow: var(--shadow);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.spec-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-600);
}

.what-you-get {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--secondary-100) 100%);
    padding: 64px;
    border-radius: var(--radius-xl);
    border: 3px solid var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.what-you-get h3 {
    text-align: center;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 36px;
}

.get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.get-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.get-item:hover {
    border-color: var(--primary-300);
    transform: translateY(-5px);
}

.get-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.get-item p {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* ========================================
   USE CASES SECTION
   ======================================== */
.usecases-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    position: relative;
    overflow: hidden;
}

.usecases-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.05) 0deg 10deg,
        transparent 10deg 20deg
    );
}

.usecases-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.usecases-section .section-title {
    color: white;
}

.usecases-section .section-subtitle {
    color: var(--primary-200);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.usecase-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.usecase-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.usecase-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.usecase-card p {
    font-size: 0.9375rem;
    color: var(--primary-100);
    line-height: 1.6;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
    background: linear-gradient(135deg, var(--secondary-400) 0%, var(--primary-500) 100%);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.08) 0deg 10deg,
        transparent 10deg 20deg
    );
}

.quote-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 7rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    position: absolute;
}

.quote-mark:first-of-type {
    top: -30px;
    left: -20px;
}

.quote-mark.close {
    bottom: -60px;
    right: -20px;
}

blockquote {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.quote-highlight {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 20px;
    border-radius: var(--radius);
    display: inline-block;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.contact-benefits {
    margin-bottom: 44px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    font-size: 1.0625rem;
    color: var(--gray-700);
    border-bottom: 2px dashed var(--gray-200);
}

.cb-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--strength-color) 0%, #388e3c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-direct h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: var(--gray-700);
    font-size: 1.0625rem;
    transition: var(--transition);
    background: white;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 2px solid var(--gray-100);
}

.contact-link:hover {
    color: var(--primary-600);
    border-color: var(--primary-200);
    background: var(--primary-50);
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background: white;
    padding: 44px;
    border-radius: var(--radius-xl);
    border: 3px solid var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    border: 3px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    background: white;
    box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea {
    resize: vertical;
    min-height: 130px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    padding: 70px 24px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.03) 0deg 10deg,
        transparent 10deg 20deg
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
}

.footer-logo .logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--primary-200);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--primary-100);
    opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--primary-100);
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact li {
    color: var(--primary-100);
    font-size: 1rem;
}

.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--primary-200);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .solution-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-box {
        max-width: 320px;
        transform: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 3px solid var(--primary-200);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
        padding: 20px 24px;
    }

    .floating-cards .card {
        width: 45px;
        height: 62px;
        font-size: 1.125rem;
    }

    .gameplay-timeline::before {
        left: 24px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-number {
        width: 55px;
        height: 55px;
        font-size: 1.375rem;
    }

    .timeline-content {
        padding: 24px;
    }

    .differentiators {
        padding: 40px 24px;
    }

    .persona-box {
        padding: 36px 24px;
    }

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

    .what-you-get {
        padding: 40px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 16px 20px;
    }

    .hero-badge {
        font-size: 0.875rem;
        padding: 10px 20px;
    }

    .problem-card,
    .benefit-card,
    .usecase-card {
        padding: 28px;
    }

    .tab-buttons {
        gap: 10px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-30deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 90px;
}

/* Selection styling */
::selection {
    background: var(--primary-300);
    color: var(--primary-900);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--primary-400);
    outline-offset: 3px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-400), var(--primary-500));
    border-radius: 6px;
    border: 3px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--primary-500), var(--primary-600));
}

/* Print styles */
@media print {
    .navbar,
    .hero-scroll,
    .contact-form-wrapper {
        display: none;
    }

    .section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
}
