:root {
    --primary: #1E3A5F;
    --accent: #00B4D8;
    --accent-glow: rgba(0, 180, 216, 0.3);
    --warm: #FF6B35;
    --success: #10B981;
    --dark: #0D1B2A;
    --navy: #1B263B;
    --light: #F7F9FC;
    --lighter: #FFFFFF;
    --text: #1F2937;
    --text-light: #64748B;
    --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 50%, #00B4D8 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FF8A5B 100%);
    --gradient-accent: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--lighter);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--lighter);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--lighter);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--lighter);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.ai-hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.ai-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(0,180,216,0.3)'/%3E%3C/svg%3E");
    background-size: 50px 50px;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.ai-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.ai-badge-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.ai-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--lighter);
    line-height: 1.1;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.ai-hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #90E0EF 50%, var(--warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.ai-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-white {
    background: var(--lighter);
    color: var(--primary);
}

.ai-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.ai-stat {
    text-align: center;
}

.ai-stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
}

.ai-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* AI Features Grid */
.ai-features-section {
    padding: 120px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(30, 58, 95, 0.1));
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ai-feature-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.ai-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.ai-feature-card:hover::before {
    transform: scaleX(1);
}

.ai-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.ai-feature-icon.blue {
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
}

.ai-feature-icon.green {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
}

.ai-feature-icon.orange {
    background: linear-gradient(135deg, #FFEDD5, #FED7AA);
}

.ai-feature-icon.purple {
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
}

.ai-feature-icon.pink {
    background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
}

.ai-feature-icon.teal {
    background: linear-gradient(135deg, #CCFBF1, #99F6E4);
}

.ai-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.ai-feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 180, 216, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

/* Comparison Section */
.comparison-section {
    padding: 120px 0;
    background: var(--lighter);
}

.comparison-table {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary);
    color: var(--lighter);
    font-weight: 700;
}

.comparison-header>div {
    padding: 24px 32px;
    text-align: center;
}

.comparison-header>div:first-child {
    text-align: left;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--light);
    transition: var(--transition);
}

.comparison-row:hover {
    background: var(--light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row>div {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-row>div:first-child {
    justify-content: flex-start;
    font-weight: 500;
}

.time-saved {
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.time-manual {
    color: var(--text-light);
}

/* Beta Program */
.beta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
}

.beta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.beta-content h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--lighter);
    margin-bottom: 24px;
}

.beta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.beta-benefits {
    list-style: none;
}

.beta-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter);
    font-size: 14px;
    flex-shrink: 0;
}

.beta-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.beta-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--lighter);
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--lighter);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.beta-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-accent);
    color: var(--lighter);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.beta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--lighter);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.footer-logo:hover {
    transform: translateX(5px);
}

.footer-logo img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
    transition: all 0.4s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.4);
}

.footer-brand .logo-text {
    font-size: 32px;
    color: var(--lighter);
    font-weight: 800;
    background: linear-gradient(135deg, var(--lighter) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand>p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-column h4 {
    color: var(--lighter);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1200px) {
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--lighter);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .beta-grid {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }

    .ai-stats {
        flex-direction: column;
        gap: 32px;
    }

    .comparison-header,
    .comparison-row {
        font-size: 14px;
    }

    .comparison-header>div,
    .comparison-row>div {
        padding: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}