/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    
    /* Soft pastels for liquid glass */
    --glass-purple: rgba(211, 123, 255, 0.15);
    --glass-blue: rgba(128, 169, 252, 0.15);
    --glass-orange: rgba(252, 171, 131, 0.15);
    --glass-pink: rgba(255, 73, 212, 0.15);
    
    /* Neutrals */
    --background: #faf9fc;
    --surface: rgba(255, 255, 255, 0.7);
    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --border: rgba(203, 213, 225, 0.3);
    
    /* Effects */
    --blur-amount: 20px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Liquid Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.3);
}

.liquid-glass-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glass-purple) 0%, var(--glass-blue) 50%, var(--glass-orange) 100%);
    filter: blur(80px);
    opacity: 0.6;
    animation: liquidMove 20s ease-in-out infinite;
}

.liquid-glass-element {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, var(--glass-pink), var(--glass-purple), var(--glass-blue));
    filter: blur(60px);
    border-radius: 50%;
    animation: floatBubble 15s ease-in-out infinite;
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--glass-purple), var(--glass-pink));
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--glass-blue), var(--glass-purple));
    top: 50%;
    right: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--glass-orange), var(--glass-pink));
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.logo-badge {
    font-size: 12px;
    padding: 4px 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 20px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.play-icon {
    font-size: 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--glass-purple), var(--glass-blue));
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glass-purple), var(--glass-blue));
    border-radius: 20px;
    opacity: 0.2;
    filter: blur(20px);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.step-card {
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    opacity: 0.2;
    margin-bottom: -40px;
}

.step-content {
    padding: 32px;
    height: 100%;
}

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

.step-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.step-visual {
    padding: 24px;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        0deg,
        #000 0,
        #000 5px,
        #fff 5px,
        #fff 10px
    ),
    repeating-linear-gradient(
        90deg,
        #000 0,
        #000 5px,
        #fff 5px,
        #fff 10px
    );
    opacity: 0.2;
}

.api-key-visual {
    font-family: 'Courier New', monospace;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.key-prefix {
    color: var(--primary);
    font-weight: 600;
}

.key-value {
    color: var(--text-secondary);
}

.chat-preview {
    width: 100%;
    max-width: 300px;
}

.chat-message {
    padding: 8px 12px;
    border-radius: 16px;
    margin-bottom: 8px;
    font-size: 14px;
}

.chat-message.bot {
    background: white;
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
    margin-left: auto;
    max-width: 80%;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-card {
    padding: 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    max-width: 500px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-note {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-visual {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

/* Footer */
.footer {
    padding: 48px 0 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pilot Section */
.pilot-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.02), transparent);
}

.pilot-hero {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 64px;
    text-align: center;
    position: relative;
}

.pilot-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff9f43);
    color: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
}

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

.pilot-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pilot-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pilot-section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
}

/* Problems Section */
.pilot-problems {
    margin-bottom: 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-item {
    padding: 24px;
    text-align: center;
}

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

.problem-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Offer Packages */
.pilot-offer {
    margin-bottom: 60px;
}

.offer-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-package {
    padding: 32px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.package-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.package-value {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: rgba(124, 58, 237, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

.package-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 24px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.package-example {
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.example-bad {
    color: #ef4444;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.example-good {
    color: #10b981;
    font-size: 0.9rem;
}

/* ROI Calculator */
.pilot-roi {
    padding: 48px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.roi-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.roi-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.roi-column ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.roi-column li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.roi-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.roi-value {
    font-weight: 600;
    color: var(--text-primary);
}

.roi-total {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
}

.roi-total span {
    color: var(--primary);
}

.roi-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(168, 139, 250, 0.05));
    border-radius: 20px;
    text-align: center;
}

.roi-invest, .roi-percent, .roi-payback {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roi-invest span, .roi-percent span, .roi-payback span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.roi-invest strong, .roi-percent strong, .roi-payback strong {
    font-size: 2rem;
    font-weight: 800;
}

/* Pricing Comparison */
.pilot-pricing {
    padding: 48px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.price-column {
    padding: 24px;
    border-radius: 16px;
}

.price-column.featured {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 139, 250, 0.1));
    border: 2px solid var(--primary);
}

.price-column h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.price-old {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.price-after {
    font-size: 1rem;
    color: var(--text-primary);
}

/* Guarantees */
.pilot-guarantees {
    margin-bottom: 60px;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-item {
    padding: 32px;
    position: relative;
    text-align: center;
}

.guarantee-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.guarantee-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-item p {
    color: var(--text-secondary);
}

/* Requirements */
.pilot-requirements {
    background: rgba(124, 58, 237, 0.05);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pilot-requirements h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.pilot-requirements ul {
    list-style: none;
    padding: 0;
}

.pilot-requirements li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.pilot-requirements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* CTA Block */
.pilot-cta-block {
    text-align: center;
    margin-bottom: 40px;
}

.pilot-spots {
    margin-bottom: 40px;
}

.spots-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.spots-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.spots-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.spots-progress {
    max-width: 400px;
    height: 8px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 100px;
    margin: 0 auto;
    overflow: hidden;
}

.spots-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 100px;
    transition: width 0.6s ease;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.pilot-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pilot-note {
    font-size: 14px;
    color: var(--text-secondary);
}

/* PS Block */
.pilot-ps {
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pilot-ps strong {
    color: var(--text-primary);
}

.pilot-link {
    position: relative;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pilot-hero {
        padding: 32px 20px;
    }
    
    .problems-grid,
    .offer-packages,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-columns {
        grid-template-columns: 1fr;
    }
    
    .roi-result {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
    }
    
    .pilot-title {
        font-size: 1.75rem;
    }
    
    .pilot-subtitle {
        font-size: 1rem;
    }
    
    .spots-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes liquidMove {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(1deg) scale(1.05);
    }
    66% {
        transform: rotate(-1deg) scale(0.95);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, -30px) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cta-visual {
        right: -200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 32px;
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .cta-actions {
        align-items: center;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .cta-visual {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
}