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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.block {
    display: block;
}

.highlight {
    color: #00E0A0;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #0044FF, #00E0A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Background Patterns */
.tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 224, 160, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 224, 160, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.noise-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.geometric-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 224, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 68, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 224, 160, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 224, 160, 0.6);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.glow-effect {
    animation: glow 3s ease-in-out infinite;
}

/* Delay Classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    height: 18px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0044FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0044FF;
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1f2937;
    cursor: pointer;
}

/* Buttons */
.btn {
    width: 400px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    width: 160px;
    background: linear-gradient(to right, #0044FF, #0033CC);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-cta {
    background: linear-gradient(to right, #00E0A0, #00B080);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-cta:hover {
    background: linear-gradient(to right, #00B080, #00E0A0);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-cta-large {
    width: 520px;
    background: linear-gradient(to right, #00E0A0, #00B080);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-cta-large:hover {
    background: linear-gradient(to right, #00B080, #00E0A0);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 224, 160, 0.5);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0044FF 0%, #0033CC 50%, #001A66 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 6rem;;
}

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

.floating-element {
    position: absolute;
    pointer-events: none;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    border: 1px solid rgba(0, 224, 160, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    top: 10rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(0, 224, 160, 0.2), transparent);
    border-radius: 0.5rem;
    animation: rotate 20s linear infinite;
}

.floating-3 {
    bottom: 10rem;
    left: 5rem;
    width: 3rem;
    height: 3rem;
    border: 2px solid rgba(0, 224, 160, 0.4);
    transform: rotate(45deg);
    animation: bounceGentle 3s ease-in-out infinite;
}

.floating-4 {
    top: 15rem;
    right: 10rem;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 224, 160, 0.3);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

.floating-5 {
    top: 2.5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    border: 1px solid rgba(0, 224, 160, 0.2);
    border-radius: 1rem;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.floating-6 {
    bottom: 5rem;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: rgba(0, 224, 160, 0.1);
    border-radius: 50%;
    animation: bounceGentle 3s ease-in-out infinite;
}

.floating-7 {
    top: 5rem;
    left: 5rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(0, 224, 160, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-8 {
    bottom: 5rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(0, 224, 160, 0.1);
    border-radius: 1rem;
    transform: rotate(45deg);
    animation: bounceGentle 3s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    space-y: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    display: block;
    margin-top: 0.5rem;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-container {
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 224, 160, 0.2), rgba(0, 68, 255, 0.2));
    border-radius: 1.5rem;
    filter: blur(3rem);
    transform: scale(1.1);
    animation: glow 2s ease-in-out infinite;
}

.phone-glow-2 {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(0, 224, 160, 0.3), transparent);
    border-radius: 50%;
    filter: blur(2rem);
}

.phone-glow-3 {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(0, 68, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(2rem);
}

.phone-mockup {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 37.5rem;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
    color: #00E0A0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-white {
    background: white;
    color: #333;
}

.section-blue {
    background: linear-gradient(135deg, #0044FF 0%, #0033CC 50%, #001A66 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-white .section-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #374151;
}

.section-blue .section-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
    opacity: 0.9;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0, 68, 255, 0.2);
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    border-bottom-left-radius: 1.5rem;
}

.card-decoration.red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.card-decoration.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.card-decoration.red-dark {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.card-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.card-icon.red-dark {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.card-text {
    text-align: center;
    color: #6b7280;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(0, 224, 160, 0.2), transparent);
    border-bottom-left-radius: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #00E0A0, #00B080);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
}

.feature-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    position: relative;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #00E0A0, #00B080);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 20;
    animation: glow 3s ease-in-out infinite;
}

.step-content {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
    transition: all 0.3s ease;
}

.step-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    border-bottom-left-radius: 1.5rem;
}

.step-decoration.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.step-decoration.green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.step-decoration.purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.step-decoration.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #1f2937;
}

.step-text {
    text-align: center;
    color: #6b7280;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, rgba(0, 224, 160, 0.2), transparent);
    border-bottom-left-radius: 1.5rem;
}

.benefit-content {
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #00E0A0, #00B080);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Table */
.table-container {
    overflow-x: auto;
}

.comparison-table {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

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

.table-header-highlight {
    background: linear-gradient(to right, #0044FF, #0033CC);
    color: white;
}

.table-row {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: rgba(249, 250, 251, 0.5);
}

.table-cell {
    padding: 1.5rem;
    color: #6b7280;
}

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

.table-cell.bold {
    font-weight: 600;
    color: #1f2937;
}

.table-cell-highlight {
    background: linear-gradient(to right, rgba(0, 68, 255, 0.05), rgba(0, 224, 160, 0.05));
    font-weight: 700;
    color: #0044FF;
}

/* CTA Section */
.cta-content {
    text-align: center;
}

.cta-description {
    font-size: 1.25rem;
    max-width: 32rem;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-button {
    margin-bottom: 2rem;
}

.cta-features {
    padding: 2rem;
    border-radius: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.cta-feature {
    display: flex;
    align-items: flex-start;
}

.cta-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #00E0A0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.cta-feature p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo svg {
    height: 18px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    padding: 0.75rem;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #0044FF;
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0044FF;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-content {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 1rem;
    }
    
    .cta-features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-cta-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-animate.fade-in-left {
    transform: translateX(-30px);
}

.scroll-animate.fade-in-right {
    transform: translateX(30px);
}

.scroll-animate.visible.fade-in-left,
.scroll-animate.visible.fade-in-right {
    transform: translateX(0);
}

.scroll-animate.scale-in {
    transform: scale(0.95);
}

.scroll-animate.visible.scale-in {
    transform: scale(1);
}