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

:root {
    --primary-color: #2563eb;
    --text-dark: #37352f;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-hover: #f3f4f6;
    --border-color: #e5e7eb;
    --accent-blue: #2563eb;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Fullscreen Section Base */
.fullscreen-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Parallax Background Layer */
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgb(255 255 255 / 80%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-dark);
}

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

.nav-menu .nav-active {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: default;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}

.btn-login:hover {
    color: var(--text-dark);
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

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

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #f0f9ff 0%, #dbeafe 40%, #bfdbfe 70%, #e0f2fe 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-shapes::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 4s ease-in-out infinite;
}

.hero-bg-shapes::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(14, 165, 233, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float-reverse 5s ease-in-out infinite;
}

.hero-shape-1,
.hero-shape-2,
.hero-shape-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.hero-shape-1 {
    top: 15%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.18);
    animation: float-reverse 6s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 20%;
    left: 10%;
    width: 280px;
    height: 280px;
    background: rgba(14, 165, 233, 0.15);
    animation: float 4.5s ease-in-out infinite;
    animation-delay: -1s;
}

.hero-shape-3 {
    top: 50%;
    right: 30%;
    width: 220px;
    height: 220px;
    background: rgba(6, 182, 212, 0.18);
    animation: pulse-glow 3s ease-in-out infinite, float 5.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, 100px) scale(1.1); }
    50% { transform: translate(-60px, 150px) scale(0.9); }
    75% { transform: translate(-100px, 50px) scale(1.05); }
}

@keyframes float-reverse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-100px, -80px) scale(0.9); }
    50% { transform: translate(80px, -120px) scale(1.1); }
    75% { transform: translate(120px, -40px) scale(0.95); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.hero-badge-icon {
    font-size: 16px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #5796fd 0%, #0035b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.hero-steps-title {
    display: none;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.hero-step-text {
    text-align: left;
}

.hero-step-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.hero-step-text p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

a.btn-secondary,
a.btn-secondary:hover,
a.btn-secondary:visited,
a.btn-secondary:active,
.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-muted);
}

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

/* ==================== */
/* ABOUT SECTION */
/* ==================== */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}

.about-section .parallax-bg {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.3) 0%, rgba(237, 233, 254, 0.3) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.about-text-side {
    max-width: 560px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #3b82f6;
}

.about-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-visual-side {
    position: relative;
}

.about-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.3;
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.about-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about-card-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 16px;
}

.about-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==================== */
/* FEATURES SECTION */
/* ==================== */
.features {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, transparent, var(--accent-orange), transparent); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, var(--accent-blue), transparent); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--accent-green), transparent); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, transparent, var(--accent-pink), transparent); }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

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

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Feature icon backgrounds */
.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05)); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05)); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05)); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05)); }

/* ==================== */
/* HOW IT WORKS SECTION */
/* ==================== */
.how-it-works {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}

.how-it-works .container {
    padding: 100px 24px;
}

.how-it-works .section-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 64px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    flex: 1;
    max-width: 320px;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    animation: spin 20s linear infinite;
}

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

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== */
/* PRICING SECTION */
/* ==================== */
.pricing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #dbeafe 50%, #ede9fe 100%);
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

.pricing .section-badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4) border-box;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-badge.soon {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
}

.pricing-icon.static {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
    color: #2563eb;
}

.pricing-icon.app {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.pricing-icon.database {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    color: #f59e0b;
}

.pricing-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark), var(--text-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-price .period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-upgrades {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 24px;
}

.pricing-upgrades summary {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}

.pricing-upgrades summary:hover {
    color: var(--text-dark);
}

.pricing-upgrades summary::-webkit-details-marker {
    display: none;
}

.pricing-upgrades summary::after {
    content: '+';
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.pricing-upgrades[open] summary::after {
    content: '−';
}

.pricing-upgrades ul {
    list-style: none;
    padding: 0 18px 14px;
}

.pricing-upgrades li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    color: var(--text-dark);
}

.pricing-upgrades li span:last-child {
    color: var(--text-light);
    font-weight: 600;
}

.pricing-cta {
    width: 100%;
    margin-top: auto;
    padding: 14px 24px;
}

.pricing-cta.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.cta-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--bg-white);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    padding: 80px 0 32px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-column p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-white);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-step {
        flex: 1 1 calc(50% - 10px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-wrap: wrap;
        gap: 24px;
    }

    .steps-container::before {
        display: none;
    }

    .step-card {
        flex: 1 1 calc(50% - 12px);
        max-width: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu, .nav-auth {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-steps {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-steps-title {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 12px;
        text-align: center;
    }

    .hero-step {
        flex: 1;
        padding: 16px 20px;
    }

    .hero-step-num {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-section {
        min-height: auto;
    }

    .about-content {
        padding: 80px 0;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-visual-side {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features {
        min-height: auto;
    }

    .features .container {
        padding: 80px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 32px 24px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    .feature-icon {
        margin: 0;
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .how-it-works {
        min-height: auto;
    }

    .how-it-works .container {
        padding: 80px 20px;
    }

    .steps-container {
        flex-direction: column;
        margin-top: 40px;
    }

    .step-card {
        flex: 1;
        padding: 32px 24px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pricing {
        min-height: auto;
    }

    .pricing .container {
        padding: 80px 20px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    .cta-section {
        min-height: auto;
    }

    .cta-content {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }

    .footer {
        padding: 60px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Animations for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* INNOVATION HOSTING SECTION */
/* ==================== */
.innovation-section {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.innovation-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left column */
.innovation-hero {
    position: relative;
}

.innovation-badge {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.innovation-badge-icon {
    font-size: 16px;
}

.innovation-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.innovation-subtitle {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 520px;
}

/* Stats strip */
.innovation-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.stat-pill {
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
    border: 1px solid #e0e4f5;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.stat-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-val small {
    font-size: 1rem;
    font-weight: 600;
}

.stat-lbl {
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Right column — bento grid */
.innovation-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.bento-card {
    position: relative;
    background: #fafbfc;
    border: 1px solid #eaedf3;
    border-radius: 20px;
    padding: 36px 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.bento-card:hover .bento-glow {
    opacity: 1;
}

.bento-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.bento-speed .bento-glow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.06), rgba(245, 158, 11, 0.02));
    box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.3);
}

.bento-ssl .bento-glow {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(22, 163, 74, 0.02));
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.3);
}

.bento-scale .bento-glow {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(79, 70, 229, 0.02));
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.3);
}

.bento-domains .bento-glow {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(2, 132, 199, 0.02));
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.3);
}

.bento-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bento-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.bento-card p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .innovation-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }
    .innovation-title {
        font-size: 2.5rem;
    }
    .innovation-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .innovation-section {
        padding: 80px 0;
    }
    .innovation-title {
        font-size: 2rem;
    }
    .innovation-bento {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .bento-card {
        padding: 24px 20px;
    }
    .bento-icon {
        font-size: 2.2rem;
    }
    .stat-val {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .innovation-bento {
        grid-template-columns: 1fr;
    }
    .innovation-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== */
/* AI INTEGRATION SECTION */
/* ==================== */
.ai-integration {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #f0f7ff 0%, #e0effe 30%, #dbeafe 60%, #eff6ff 100%);
    overflow: hidden;
    color: #1e293b;
}

.ai-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Floating orbs */
.ai-bg-pattern::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: ai-orb-float 8s ease-in-out infinite;
}

.ai-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: ai-orb-float 10s ease-in-out infinite reverse;
}

/* Neural network SVG background */
.ai-bg-neural {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none'%3E%3C!-- Connections --%3E%3Cline x1='120' y1='80' x2='300' y2='200' stroke='rgba(59,130,246,0.2)' stroke-width='1'/%3E%3Cline x1='300' y1='200' x2='500' y2='120' stroke='rgba(59,130,246,0.18)' stroke-width='1'/%3E%3Cline x1='500' y1='120' x2='680' y2='240' stroke='rgba(139,92,246,0.15)' stroke-width='1'/%3E%3Cline x1='300' y1='200' x2='400' y2='380' stroke='rgba(6,182,212,0.2)' stroke-width='1'/%3E%3Cline x1='120' y1='80' x2='200' y2='320' stroke='rgba(59,130,246,0.15)' stroke-width='1'/%3E%3Cline x1='200' y1='320' x2='400' y2='380' stroke='rgba(139,92,246,0.18)' stroke-width='1'/%3E%3Cline x1='400' y1='380' x2='600' y2='350' stroke='rgba(59,130,246,0.18)' stroke-width='1'/%3E%3Cline x1='600' y1='350' x2='680' y2='240' stroke='rgba(6,182,212,0.15)' stroke-width='1'/%3E%3Cline x1='200' y1='320' x2='150' y2='520' stroke='rgba(6,182,212,0.18)' stroke-width='1'/%3E%3Cline x1='150' y1='520' x2='350' y2='580' stroke='rgba(59,130,246,0.2)' stroke-width='1'/%3E%3Cline x1='350' y1='580' x2='400' y2='380' stroke='rgba(139,92,246,0.12)' stroke-width='1'/%3E%3Cline x1='350' y1='580' x2='550' y2='550' stroke='rgba(6,182,212,0.2)' stroke-width='1'/%3E%3Cline x1='550' y1='550' x2='600' y2='350' stroke='rgba(59,130,246,0.18)' stroke-width='1'/%3E%3Cline x1='550' y1='550' x2='700' y2='500' stroke='rgba(139,92,246,0.12)' stroke-width='1'/%3E%3Cline x1='700' y1='500' x2='680' y2='240' stroke='rgba(6,182,212,0.15)' stroke-width='1'/%3E%3Cline x1='150' y1='520' x2='100' y2='700' stroke='rgba(59,130,246,0.15)' stroke-width='1'/%3E%3Cline x1='100' y1='700' x2='300' y2='720' stroke='rgba(139,92,246,0.15)' stroke-width='1'/%3E%3Cline x1='300' y1='720' x2='350' y2='580' stroke='rgba(6,182,212,0.15)' stroke-width='1'/%3E%3Cline x1='300' y1='720' x2='500' y2='700' stroke='rgba(59,130,246,0.2)' stroke-width='1'/%3E%3Cline x1='500' y1='700' x2='550' y2='550' stroke='rgba(139,92,246,0.15)' stroke-width='1'/%3E%3Cline x1='500' y1='700' x2='700' y2='680' stroke='rgba(6,182,212,0.15)' stroke-width='1'/%3E%3Cline x1='700' y1='680' x2='700' y2='500' stroke='rgba(59,130,246,0.15)' stroke-width='1'/%3E%3Cline x1='500' y1='120' x2='400' y2='380' stroke='rgba(139,92,246,0.15)' stroke-width='0.8'/%3E%3Cline x1='120' y1='80' x2='400' y2='380' stroke='rgba(6,182,212,0.1)' stroke-width='0.7'/%3E%3Cline x1='680' y1='240' x2='550' y2='550' stroke='rgba(59,130,246,0.15)' stroke-width='0.7'/%3E%3Cline x1='100' y1='700' x2='500' y2='700' stroke='rgba(139,92,246,0.15)' stroke-width='0.7'/%3E%3C!-- Neurons (nodes) --%3E%3Ccircle cx='120' cy='80' r='4' fill='rgba(59,130,246,0.6)'/%3E%3Ccircle cx='120' cy='80' r='8' fill='rgba(59,130,246,0.15)'/%3E%3Ccircle cx='300' cy='200' r='5' fill='rgba(6,182,212,0.7)'/%3E%3Ccircle cx='300' cy='200' r='10' fill='rgba(6,182,212,0.15)'/%3E%3Ccircle cx='500' cy='120' r='4' fill='rgba(139,92,246,0.6)'/%3E%3Ccircle cx='500' cy='120' r='8' fill='rgba(139,92,246,0.15)'/%3E%3Ccircle cx='680' cy='240' r='5' fill='rgba(59,130,246,0.7)'/%3E%3Ccircle cx='680' cy='240' r='10' fill='rgba(59,130,246,0.15)'/%3E%3Ccircle cx='200' cy='320' r='4' fill='rgba(139,92,246,0.6)'/%3E%3Ccircle cx='200' cy='320' r='8' fill='rgba(139,92,246,0.15)'/%3E%3Ccircle cx='400' cy='380' r='6' fill='rgba(6,182,212,0.8)'/%3E%3Ccircle cx='400' cy='380' r='12' fill='rgba(6,182,212,0.15)'/%3E%3Ccircle cx='600' cy='350' r='4' fill='rgba(59,130,246,0.6)'/%3E%3Ccircle cx='600' cy='350' r='8' fill='rgba(59,130,246,0.15)'/%3E%3Ccircle cx='150' cy='520' r='5' fill='rgba(139,92,246,0.7)'/%3E%3Ccircle cx='150' cy='520' r='10' fill='rgba(139,92,246,0.15)'/%3E%3Ccircle cx='350' cy='580' r='4' fill='rgba(6,182,212,0.6)'/%3E%3Ccircle cx='350' cy='580' r='8' fill='rgba(6,182,212,0.15)'/%3E%3Ccircle cx='550' cy='550' r='5' fill='rgba(59,130,246,0.7)'/%3E%3Ccircle cx='550' cy='550' r='10' fill='rgba(59,130,246,0.15)'/%3E%3Ccircle cx='700' cy='500' r='4' fill='rgba(139,92,246,0.6)'/%3E%3Ccircle cx='700' cy='500' r='8' fill='rgba(139,92,246,0.15)'/%3E%3Ccircle cx='100' cy='700' r='4' fill='rgba(6,182,212,0.6)'/%3E%3Ccircle cx='100' cy='700' r='8' fill='rgba(6,182,212,0.15)'/%3E%3Ccircle cx='300' cy='720' r='5' fill='rgba(59,130,246,0.7)'/%3E%3Ccircle cx='300' cy='720' r='10' fill='rgba(59,130,246,0.15)'/%3E%3Ccircle cx='500' cy='700' r='4' fill='rgba(139,92,246,0.6)'/%3E%3Ccircle cx='500' cy='700' r='8' fill='rgba(139,92,246,0.15)'/%3E%3Ccircle cx='700' cy='680' r='5' fill='rgba(6,182,212,0.7)'/%3E%3Ccircle cx='700' cy='680' r='10' fill='rgba(6,182,212,0.15)'/%3E%3C/g%3E%3C/svg%3E") repeat;
    background-size: 800px 800px;
}

/* Pulse animation on neurons */
.ai-bg-neural-pulse {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none'%3E%3Ccircle cx='300' cy='200' r='20' fill='rgba(6,182,212,0.08)'/%3E%3Ccircle cx='400' cy='380' r='25' fill='rgba(59,130,246,0.08)'/%3E%3Ccircle cx='550' cy='550' r='18' fill='rgba(139,92,246,0.08)'/%3E%3Ccircle cx='680' cy='240' r='18' fill='rgba(59,130,246,0.06)'/%3E%3Ccircle cx='150' cy='520' r='20' fill='rgba(6,182,212,0.06)'/%3E%3C/g%3E%3C/svg%3E") repeat;
    background-size: 800px 800px;
    animation: ai-pulse 3s ease-in-out infinite alternate;
}

/* Center glow */
.ai-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6) 0%, rgba(59, 130, 246, 0.04) 40%, transparent 70%);
    z-index: 1;
}

@keyframes ai-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes ai-pulse {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.ai-integration .container {
    position: relative;
    z-index: 2;
    padding: 100px 24px;
}

.ai-badge {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #3b82f6;
}

.ai-badge-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.ai-integration .section-header h2 {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ai-integration .section-header p {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.ai-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 80px 0;
}

/* AI Conversation Demo */
.ai-demo-side {
    position: relative;
}

.ai-conversation {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.ai-conversation::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 26px;
    z-index: -1;
}

.ai-message {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.ai-message:last-child {
    margin-bottom: 0;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.ai-avatar {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.message-avatar svg {
    width: 20px;
    height: 20px;
    color: white;
}

.message-content {
    flex: 1;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.user-message .message-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04));
    border-color: rgba(59, 130, 246, 0.2);
}

.ai-response .message-content {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(6, 182, 212, 0.04));
    border-color: rgba(6, 182, 212, 0.2);
}

.message-text {
    color: #334155;
    line-height: 1.5;
    font-size: 15px;
}

.deployment-progress {
    margin-top: 20px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-step:last-child {
    margin-bottom: 16px;
}

.step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.step-text {
    color: #475569;
}

.deployment-url {
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.deployment-url a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.deployment-url a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* AI Features Grid */
.ai-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.1);
}

.ai-feature-card:hover::before {
    opacity: 1;
}

.ai-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ai-feature-icon.auto-deploy {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2));
}

.ai-feature-icon.domain-purchase {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
}

.ai-feature-icon.zero-config {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.2));
}

.ai-feature-icon.continuous-updates {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
}

.ai-feature-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.ai-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.ai-feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* AI Integrations */
.ai-integrations {
    text-align: center;
    margin: 80px 0 40px;
}

.ai-integrations h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
}

.ai-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ai-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.6);
    transition: all 0.3s ease;
    min-width: 120px;
}

.ai-logo:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.08);
}

.ai-logo svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.ai-logo span {
    color: #475569;
    font-weight: 600;
    font-size: 14px;
}

/* AI CTA */
.ai-cta {
    text-align: center;
}

.ai-cta-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-cta-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.6s ease;
}

.ai-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-integration .section-header h2 {
        font-size: 2.5rem;
    }
    
    .ai-content-grid {
        gap: 60px;
    }
    
    .ai-features-grid {
        gap: 20px;
    }
    
    .ai-logos {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .ai-integration {
        min-height: auto;
    }
    
    .ai-integration .container {
        padding: 80px 20px;
    }
    
    .ai-integration .section-header h2 {
        font-size: 2rem;
    }
    
    .ai-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ai-conversation {
        padding: 24px;
    }
    
    .ai-feature-card {
        padding: 24px 20px;
    }
    
    .ai-logos {
        gap: 16px;
        justify-content: center;
    }
    
    .ai-logo {
        min-width: 100px;
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .ai-integration .section-header p {
        font-size: 1.1rem;
    }
    
    .ai-message {
        flex-direction: column;
        gap: 12px;
    }
    
    .message-avatar {
        width: 32px;
        height: 32px;
        align-self: flex-start;
    }
    
    .ai-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


/* ====================
 * SEO & Accessibility Enhancements
 * ==================== */

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 6px;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* ====================
 * FAQ Section
 * ==================== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 48px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.02);
}


.faq-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question:hover .faq-icon {
    color: #3b82f6;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 300px;
    opacity: 1;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Mobile FAQ adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
        margin-left: 12px;
    }
}

/* ====================
 * Language Switcher
 * ==================== */
.language-switcher {
    position: relative;
    margin-right: 24px;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-current:hover {
    border-color: #3b82f6;
    background: #f0f7ff;
}

.language-code {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.language-arrow {
    transition: transform 0.2s ease;
    width: 12px;
    height: 12px;
    color: #6b7280;
}

.language-current:hover .language-arrow {
    color: #3b82f6;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 6px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    min-width: 140px;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.15s ease;
}

.language-option:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.language-option .language-code {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 12px;
    }
    
    .language-current {
        padding: 5px 8px;
    }
    
    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 120px;
    }
}