/* ===================================
   CSS Reset & Base
   =================================== */

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

:root {
    /* Colors */
    --coral: #FF6B6B;
    --coral-light: #FF8787;
    --coral-dark: #FF5252;
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --purple-dark: #6D28D9;
    --yellow: #FCD34D;
    --yellow-light: #FDE68A;
    --blue: #3B82F6;
    --teal: #14B8A6;
    --pink: #EC4899;

    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFF;
    --bg-tertiary: #F8F8FC;

    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-tertiary: #8888A8;

    --border-color: #E8E8F0;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 26, 46, 0.16);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    box-sizing: border-box;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 3s ease-in-out 3;
    animation-fill-mode: forwards;
}

.logo-icon.bouncing {
    animation: bounce 2s ease-in-out infinite;
}

.logo-icon.party-mode {
    animation: bounce 0.6s ease-in-out infinite;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    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(--coral);
    transition: width var(--transition-base);
}

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

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

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--pink) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.btn:active {
    transform: translateY(0) !important;
    transition: transform 0.1s ease;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--coral);
    background: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-arrow {
    display: inline-block;
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(180deg, #FAFAFF 0%, #FFFFFF 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--coral-light) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple-light) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow-light) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 540px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-cta {
    margin-bottom: var(--space-xl);
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.social-proof {
    display: flex;
    gap: var(--space-xl);
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
}

.proof-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
    max-width: 100%;
    animation: fadeIn 1s ease-out 0.5s both;
    overflow: hidden;
}

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

.speech-bubble {
    position: absolute;
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
    animation: bubbleFloat 4s ease-in-out 3;
    animation-fill-mode: forwards;
}

.speech-bubble.floating {
    animation: bubbleFloat 4s ease-in-out infinite;
}

.speech-bubble.party-mode {
    animation: bubbleFloat 1s ease-in-out infinite;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.bubble-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-1::before {
    border-width: 0 15px 15px 0;
    border-color: transparent white transparent transparent;
    top: -10px;
    left: 30px;
}

.bubble-2 {
    top: 45%;
    right: 10%;
    animation-delay: -1.5s;
}

.bubble-2::before {
    border-width: 15px 15px 0 0;
    border-color: white transparent transparent transparent;
    bottom: -10px;
    right: 30px;
}

.bubble-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: -3s;
}

.bubble-3::before {
    border-width: 0 0 15px 15px;
    border-color: transparent transparent white transparent;
    top: -10px;
    right: 30px;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.bubble-text {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.bubble-emoji {
    font-size: 1.5rem;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    animation: cardFloat 3s ease-in-out 3;
    animation-fill-mode: forwards;
}

.floating-card.floating {
    animation: cardFloat 3s ease-in-out infinite;
}

.floating-card.party-mode {
    animation: cardFloat 0.8s ease-in-out infinite;
}

.card-1 {
    top: 25%;
    right: 5%;
    animation-delay: -0.5s;
}

.card-2 {
    bottom: 30%;
    left: 0%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    animation-delay: -2s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

.card-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
}

/* ===================================
   Trust Bar
   =================================== */

.trust-bar {
    background: var(--bg-tertiary);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-text {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
}

/* ===================================
   Why Section
   =================================== */

.why-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.why-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.why-card.arrive {
    animation: cardArrive 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: var(--delay);
}

@keyframes cardArrive {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotate(-2deg);
    }
    60% {
        transform: translateY(-10px) scale(1.02) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

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

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

.why-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.why-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Features Section
   =================================== */

.features-section {
    padding: var(--space-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
    animation: slideUp 0.6s ease-out both;
    animation-delay: var(--delay);
}

.feature-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.feature-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--purple);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.features-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    position: relative;
    padding: var(--space-3xl) 0;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%) scale(3);
    background: radial-gradient(
        circle,
        rgba(255, 107, 107, 0.15) 0%,
        rgba(124, 58, 237, 0.1) 30%,
        rgba(236, 72, 153, 0.08) 50%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.features-cta.spotlight::before {
    animation: spotlightShrink 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes spotlightShrink {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
        filter: blur(40px);
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(20px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
        filter: blur(10px);
    }
}

.features-cta .btn {
    position: relative;
    z-index: 1;
}

.features-cta.spotlight .btn {
    animation: btnGlow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 107, 107, 0.6),
                    0 0 60px rgba(124, 58, 237, 0.4);
        transform: translateY(-4px) scale(1.05);
    }
    100% {
        box-shadow: 0 8px 32px rgba(255, 107, 107, 0.5),
                    0 0 40px rgba(124, 58, 237, 0.3);
        transform: translateY(-2px) scale(1);
    }
}

/* ===================================
   How It Works
   =================================== */

.how-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-base);
}

.step.highlight {
    animation: stepHighlight 0.8s ease-out both;
    animation-delay: var(--delay);
}

@keyframes stepHighlight {
    0% {
        opacity: 0;
        transform: translateY(30px);
        box-shadow: var(--shadow-md);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2),
                    0 8px 32px rgba(255, 107, 107, 0.3);
        transform: translateY(-4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        box-shadow: var(--shadow-md);
    }
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--pink) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-arrow {
    font-size: 2rem;
    color: var(--coral);
    flex-shrink: 0;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials-section {
    padding: var(--space-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    animation: slideUp 0.6s ease-out both;
    animation-delay: var(--delay);
    transition: all var(--transition-base);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-meta {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ===================================
   Pricing
   =================================== */

.pricing-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.pricing-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

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

.pricing-featured {
    border: 3px solid var(--coral);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--coral) 0%, var(--pink) 100%);
    color: white;
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--border-color);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--coral);
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.feature-item {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.feature-item::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    margin-right: var(--space-sm);
}

.pricing-note {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 1rem;
}

/* ===================================
   Final CTA
   =================================== */

.final-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cta-title .gradient-text {
    background: linear-gradient(135deg, var(--yellow) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.final-cta .btn-primary {
    background: white;
    color: var(--coral);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-primary:active {
    transform: translateY(-2px) scale(1) !important;
}

.cta-note-small {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-visual {
        height: 350px;
        margin-top: var(--space-lg);
    }

    .how-steps {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

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

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

    /* Adjust features CTA spotlight for tablets */
    .features-cta::before {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 640px) {
    /* Typography adjustments */
    :root {
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

    /* Navigation */
    .nav-container {
        padding: var(--space-sm) var(--space-md);
    }

    .nav-links {
        gap: var(--space-sm);
    }

    .nav-link {
        display: none;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        font-size: 1.75rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 5rem;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: var(--space-sm);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .hero-cta {
        margin-bottom: var(--space-lg);
    }

    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .btn-xl {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        width: 100%;
        justify-content: center;
    }

    .social-proof {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--space-sm);
    }

    .proof-number {
        font-size: 1.5rem;
    }

    .proof-label {
        font-size: 0.75rem;
    }

    /* Hero Visual - Simplify for mobile */
    .hero-visual {
        height: 280px;
        margin-top: var(--space-md);
        overflow: visible;
        position: relative;
        left: 0;
        right: 0;
    }

    .speech-bubble {
        max-width: 160px;
        padding: var(--space-sm) var(--space-md);
        font-size: 0.875rem;
    }

    .bubble-text {
        font-size: 0.875rem;
        margin-bottom: 4px;
    }

    .bubble-emoji {
        font-size: 1.25rem;
    }

    /* Reposition bubbles for mobile - keep within viewport */
    .bubble-1 {
        top: 5%;
        left: 2%;
        right: auto;
    }

    .bubble-2 {
        top: 40%;
        right: 2%;
        left: auto;
    }

    .bubble-3 {
        bottom: 10%;
        left: 5%;
        right: auto;
    }

    .floating-card {
        padding: var(--space-sm) var(--space-md);
    }

    .card-icon {
        font-size: 1.25rem;
    }

    .card-text {
        font-size: 1rem;
    }

    .card-1 {
        top: 20%;
        right: 2%;
        left: auto;
    }

    .card-2 {
        bottom: 25%;
        left: 2%;
        right: auto;
    }

    /* Section spacing */
    .why-section,
    .features-section,
    .how-section,
    .testimonials-section,
    .pricing-section {
        padding: var(--space-2xl) 0;
        overflow-x: hidden;
        width: 100%;
    }

    .final-cta,
    .trust-bar,
    .footer {
        overflow-x: hidden;
        width: 100%;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Grids */
    .features-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Keep pricing side-by-side for comparison */
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
        max-width: 100%;
    }

    /* Cards */
    .why-card,
    .feature-card,
    .testimonial {
        padding: var(--space-lg);
    }

    .why-icon,
    .feature-icon {
        font-size: 2rem;
    }

    .why-title,
    .feature-title {
        font-size: 1.25rem;
    }

    /* Features CTA */
    .features-cta {
        padding: var(--space-xl) 0;
    }

    .features-cta::before {
        width: 400px;
        height: 400px;
    }

    /* Steps */
    .how-steps {
        gap: var(--space-md);
    }

    .step {
        padding: var(--space-lg);
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-arrow {
        margin: var(--space-sm) 0;
    }

    /* Pricing - Compact side-by-side layout */
    .pricing-section .container {
        padding: 0 var(--space-sm);
    }

    .pricing-card {
        padding: var(--space-md) var(--space-sm);
    }

    .pricing-header {
        padding-bottom: var(--space-xs);
        margin-bottom: var(--space-sm);
    }

    .pricing-title {
        font-size: 1.125rem;
        margin-bottom: var(--space-xs);
    }

    .pricing-price {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .price-amount {
        font-size: 2.5rem;
        line-height: 1;
    }

    .price-period {
        font-size: 0.875rem;
    }

    .pricing-features {
        margin-bottom: var(--space-sm);
    }

    .feature-item {
        padding: var(--space-xs) 0;
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .pricing-card .feature-item::before {
        margin-right: 4px;
    }

    .pricing-card .btn {
        width: 100%;
        padding: var(--space-sm) var(--space-xs);
        font-size: 0.875rem;
    }

    .pricing-badge {
        font-size: 0.6875rem;
        padding: 4px var(--space-sm);
        top: -12px;
    }

    .pricing-note {
        font-size: 0.875rem;
        padding: 0 var(--space-xs);
    }

    /* Final CTA */
    .final-cta {
        padding: var(--space-2xl) 0;
    }

    .cta-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 var(--space-md);
    }

    .footer-content {
        gap: var(--space-xl);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    /* Reduce animation complexity on mobile */
    .gradient-orb {
        filter: blur(60px);
    }

    .orb-1 {
        width: 400px;
        height: 400px;
    }

    .orb-2 {
        width: 350px;
        height: 350px;
    }

    .orb-3 {
        width: 300px;
        height: 300px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .proof-item {
        width: 100%;
    }

    .speech-bubble {
        max-width: 150px;
        padding: var(--space-xs) var(--space-sm);
    }

    .hero-visual {
        height: 240px;
    }

    .btn-large,
    .btn-xl {
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
    }

    /* Extra compact pricing for small screens */
    .pricing-section .container {
        padding: 0 var(--space-xs);
    }

    .pricing-grid {
        gap: 6px;
    }

    .pricing-card {
        padding: var(--space-sm) var(--space-xs);
    }

    .pricing-title {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 3px 0;
        line-height: 1.3;
    }

    .pricing-card .feature-item::before {
        margin-right: 3px;
    }

    .pricing-card .btn {
        font-size: 0.8125rem;
        padding: 6px 8px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Utility Classes
   =================================== */

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

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}
