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

:root {
    /* FunnelFox brand colors - Orange accent only */
    --primary-color: #f97316; /* Orange */
    --primary-dark: #ea580c;
    --secondary-color: #10b981; /* Teal/Green */
    --secondary-dark: #059669;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Gradient colors */
    --gradient-purple: #a78bfa;
    --gradient-pink: #f9a8d4;
    --gradient-orange: #fb923c;
    --gradient-blue: #60a5fa;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
}

.mobile-menu-content {
    padding: 24px 48px;
}

.mobile-menu-section {
    margin-bottom: 20px;
}

.mobile-menu-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 16px;
}

.mobile-menu-link {
    display: block;
    padding: 12px 0;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--bg-light);
    transition: color 0.2s;
}

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

.mobile-menu-section .mobile-menu-link {
    padding-left: 16px;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-cta {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-cta:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

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

/* Hero Section */
.hero {
    background: #fafafa;
    padding: 80px 0;
    overflow: hidden;
    overflow-x: clip;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-title {
    font-size: 96px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 48px;
}

.title-line {
    display: block;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--text-dark);
}

.feature-icon-svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-feature:hover .feature-icon-svg {
    transform: scale(1.1);
}

.hero-right {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-background {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, 
        var(--gradient-purple) 0%, 
        var(--gradient-pink) 35%, 
        var(--gradient-orange) 70%, 
        var(--gradient-orange) 100%);
    border-radius: 50% 0% 50% 50%;
    opacity: 0.9;
    transform: rotate(-15deg);
    animation: gradientFloat 8s ease-in-out infinite;
}

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

.checkout-mockup {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 380px;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.checkout-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

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

.cart-section,
.payment-section {
    margin-bottom: 24px;
}

.cart-section h3,
.payment-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    animation: slideIn 0.5s ease-out;
    animation-delay: var(--delay);
    animation-fill-mode: backwards;
}

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

.cart-item-color {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.item-line.long {
    width: 140px;
}

.item-line.short {
    width: 80px;
}

.item-price {
    width: 32px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.cart-total {
    padding: 16px 0;
}

.total-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 4px;
    width: 100px;
    margin-left: auto;
}

.payment-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    text-align: right;
}

.payment-btn {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-btn:hover {
    border-color: var(--text-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-btn:active {
    transform: translateY(0);
}

.payment-btn.paypal {
    background: #ffc439;
    border-color: #ffc439;
}

.paypal-logo {
    color: #003087;
    font-weight: 700;
}

.payment-btn.apple-pay {
    background: #000;
    border-color: #000;
    color: white;
}

.apple-logo::before {
    content: "";
    font-size: 18px;
}

.payment-divider {
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
    margin: 16px 0;
    cursor: pointer;
}

.payment-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: inherit;
}

.payment-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.payment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-input.small {
    margin-bottom: 0;
}

.save-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-medium);
    margin: 16px 0;
    cursor: pointer;
}

.save-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.payment-btn.pay-now {
    background: #000;
    color: white;
    border: none;
    font-size: 16px;
    padding: 16px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

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

.payment-btn.pay-now:hover::before {
    width: 300px;
    height: 300px;
}

.payment-btn.pay-now:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cursor-icon {
    position: absolute;
    right: 24px;
    width: 18px;
    height: 18px;
    animation: cursorBounce 2s ease-in-out infinite;
    z-index: 1;
    stroke-width: 2;
}

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

/* Partners Section */
.partners {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-white);
}

.partners h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.partners p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.partner-logos {
    max-width: 800px;
    margin: 0 auto;
}

.partners-image {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Feature Highlight Section */
.feature-highlight {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.large-text {
    font-size: 24px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    font-size: 18px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.mockup-placeholder {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 32px;
    color: white;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
    }
}

.notification-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon i {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.notification-title {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.notification-amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.notification-status {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.comparison h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 64px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: left;
}

.comparison-card h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.comparison-card.old-way {
    border: 2px solid var(--border-color);
}

.comparison-card.new-way {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.comparison-card.new-way::before {
    content: "✓";
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 12px 0;
    font-size: 16px;
    padding-left: 28px;
    position: relative;
}

.comparison-card.old-way ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.comparison-card.new-way ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Steps Section */
.steps {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.steps-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.step-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.step-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.step-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.step-btn:active {
    transform: translateY(0);
}

.step-content {
    display: none;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: 16px;
}

.step-content.active {
    display: block;
}

.step-content h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.step-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

/* Main Features Section */
.main-features {
    padding: 100px 0;
    background: var(--bg-white);
}

.main-features h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}

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

.feature-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    background: white;
}

.feature-card .feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.feature-card .feature-icon i {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-card ul {
    list-style: none;
}

.feature-card ul li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 15px;
}

/* Deep Dive Section */
.deep-dive {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.deep-dive h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.deep-dive .large-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.feature-list-detailed {
    display: grid;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-item-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.feature-item:hover .feature-item-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Cards Section */
.cta-cards {
    padding: 100px 0;
    background: var(--bg-light);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cta-card {
    background: white;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.cta-emoji {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.cta-emoji i {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.cta-card:hover .cta-emoji {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(96, 165, 250, 0.4);
}

.cta-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

.cta-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.cta-card:hover .cta-link::after {
    width: 20px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.email-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-brand h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    line-height: 1.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 64px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-right {
        height: 600px;
    }
    
    .gradient-background {
        width: 500px;
        height: 500px;
    }
    
    .checkout-mockup {
        width: 340px;
        padding: 24px;
    }
    
    .features-grid,
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-login {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-content {
        padding: 24px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-title {
        font-size: 56px;
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 28px;
    }
    
    .hero-features {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .hero-feature {
        font-size: 16px;
    }
    
    .hero-right {
        height: auto;
        min-height: 500px;
        order: 2;
        position: relative;
        margin-top: 40px;
        width: 100%;
        overflow: hidden;
    }
    
    .gradient-background {
        width: 90%;
        max-width: 400px;
        height: 400px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-15deg);
    }
    
    .checkout-mockup {
        width: 100%;
        max-width: 320px;
        padding: 20px;
        position: relative;
        margin: 0 auto;
    }
    
    .cart-section h3,
    .payment-section h3 {
        font-size: 18px;
    }
    
    .payment-input {
        padding: 10px;
        font-size: 13px;
    }
    
    /* Sections */
    .feature-highlight,
    .comparison,
    .steps,
    .main-features,
    .deep-dive,
    .cta-cards,
    .final-cta {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Typography */
    h2,
    .feature-content h2,
    .comparison h2,
    .steps h2,
    .main-features h2,
    .deep-dive h2,
    .final-cta h2 {
        font-size: 32px !important;
        margin-bottom: 32px;
    }
    
    .large-text {
        font-size: 18px;
    }
    
    /* Grids */
    .features-grid,
    .cta-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-grid {
        gap: 40px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .footer-brand h3 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    /* Steps */
    .steps-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .step-btn {
        width: 100%;
        text-align: center;
    }
    
    .step-content {
        padding: 32px 24px;
    }
    
    .step-content h3 {
        font-size: 28px;
    }
    
    /* Email Form */
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
    
    /* Feature Cards */
    .feature-card,
    .cta-card {
        padding: 32px 24px;
    }
    
    /* Mockup */
    .mockup-placeholder {
        padding: 40px 24px;
    }
    
    .notification-card {
        min-width: 240px;
        padding: 24px;
    }
    
    /* Deep Dive */
    .feature-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-item h4 {
        font-size: 20px;
    }
    
    /* Partners */
    .partners h3 {
        font-size: 28px;
    }
    
    .partners p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-right {
        height: auto;
        min-height: 480px;
        margin-top: 40px;
    }
    
    .gradient-background {
        width: 90%;
        max-width: 320px;
        height: 320px;
    }
    
    .checkout-mockup {
        width: 100%;
        max-width: 280px;
        padding: 16px;
    }
    
    .cart-item-color {
        width: 36px;
        height: 36px;
    }
    
    .item-line {
        height: 6px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    h2,
    .feature-content h2,
    .comparison h2,
    .steps h2,
    .main-features h2,
    .deep-dive h2,
    .final-cta h2 {
        font-size: 26px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .nav-right .nav-link {
        display: none;
    }
    
    .comparison-card {
        padding: 32px 20px;
    }
}

