/* Base Styles & Variables */
:root {
    --primary: #302E93;
    --primary-light: #4A48C9;
    --primary-dark: #1F1D6B;
    --secondary: #00D1FF;
    --accent: #FFD700;
    --bg-light: #302E93;
    /* Sitio ahora con fondo azul */
    --bg-white: rgba(255, 255, 255, 0.05);
    /* Tarjetas semi-transparentes */
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --radius: 1rem;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background Animations */
.bg-animations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.meteorite {
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(to left, var(--secondary), transparent);
    filter: drop-shadow(0 0 5px var(--secondary));
    opacity: 0;
    left: -20%;
    animation: meteor-curved 15s linear infinite;
    top: var(--base-y, 110%);
}

.met-1 {
    animation-delay: 0s;
    --y-offset: 0px;
}

.met-2 {
    animation-delay: 4s;
    --y-offset: -200px;
    animation-duration: 18s;
}

.met-3 {
    animation-delay: 9s;
    --y-offset: 150px;
    animation-duration: 22s;
}

.met-4 {
    animation-delay: 14s;
    --y-offset: -400px;
    animation-duration: 16s;
}

.meteorite::after {
    content: '';
    position: absolute;
    right: 0;
    top: -1.5px;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px 2px var(--secondary);
}

@keyframes meteor-curved {
    0% {
        left: -20%;
        top: calc(110% + var(--y-offset, 0px));
        opacity: 0;
        transform: rotate(-35deg) scale(0.6);
    }

    10% {
        opacity: 0.6;
    }

    50% {
        left: 45%;
        top: calc(45% + var(--y-offset, 0px));
        opacity: 0.8;
        transform: rotate(-40deg) scale(1);
    }

    90% {
        opacity: 0.6;
    }

    100% {
        left: 110%;
        top: calc(-10% + var(--y-offset, 0px));
        opacity: 0;
        transform: rotate(-45deg) scale(0.6);
    }
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
.header {
    background: rgba(48, 46, 147, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 2.25rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    justify-self: start;
    text-decoration: none;
}

.nav-cta {
    justify-self: end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn):hover {
    color: #FFFFFF;
}

.nav-links a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover:after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(48, 46, 147, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 46, 147, 0.35);
}

.hero-btns .btn-primary,
.nav-cta .btn-primary {
    background: rgba(0, 209, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--secondary);
    border: 1px solid rgba(0, 209, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 209, 255, 0.2);
    animation: pulse-glow 2s infinite;
}

.hero-btns .btn-primary {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
}

.nav-cta .btn-primary {
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    text-transform: none;
}

.hero-btns .btn-primary:hover,
.nav-cta .btn-primary:hover {
    background: rgba(0, 209, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 209, 255, 0.4);
    border-color: var(--secondary);
    color: white;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 209, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 209, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 209, 255, 0);
    }
}

.btn-hero-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(0, 209, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: none;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: rgba(0, 209, 255, 0.1);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(0, 209, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--secondary);
    border: 1px solid rgba(0, 209, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.1);
}

.btn-glass:hover {
    background: rgba(0, 209, 255, 0.2);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 209, 255, 0.4);
}

/* Live Phrase Banner */
.live-banner-container {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    margin-bottom: -4rem;
    /* To bring it closer to the hero title or just space it out */
    position: relative;
    z-index: 5;
}

.live-banner {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 209, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--secondary);
    border: 1px solid rgba(0, 209, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.1);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--secondary);
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 8rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(48, 46, 147, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 209, 255, 0.05), transparent 40%);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
}

/* Mockup Animation */
.mockup-container {
    background: linear-gradient(135deg, #F0F4FF 0%, #E0E7FF 100%);
    padding: 1.5rem;
    border-radius: 2.5rem;
    box-shadow: var(--shadow-lg), inset 0 0 40px rgba(48, 46, 147, 0.05);
    position: relative;
    border: 1px solid rgba(48, 46, 147, 0.1);
}

.mockup-content {
    background: white;
    border-radius: 1.5rem;
    height: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.mockup-header {
    height: 48px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}

.mockup-header::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF5F56;
    border-radius: 50%;
    box-shadow: 14px 0 0 #FFBD2E, 28px 0 0 #27C93F;
}

.mockup-body {
    flex: 1;
    display: flex;
}

.mockup-sidebar {
    width: 70px;
    background: #F8FAFF;
    border-right: 1px solid var(--border);
    padding: 1rem 0.5rem;
}

.mockup-main {
    flex: 1;
    padding: 2rem;
}

.mockup-cfe-badge {
    position: absolute;
    top: -25px;
    right: -20px;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 209, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 209, 255, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 209, 255, 0.4);
    }
}

.cfe-receipt {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px dashed #cbd5e1;
}

.cfe-receipt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
    animation: scan 3s infinite ease-in-out;
}

@keyframes scan {
    0% {
        top: 0;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0;
    }
}

.cfe-line {
    height: 8px;
    background: #f1f5f9;
    margin-bottom: 0.75rem;
    border-radius: 2px;
}

.cfe-line:nth-child(2) {
    width: 60%;
}

.cfe-total {
    height: 12px;
    background: #e2e8f0;
    width: 40%;
    margin-top: 1.5rem;
    border-radius: 2px;
}

.mockup-row {
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.25rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.mockup-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.mockup-row:nth-child(2) {
    width: 85%;
}

.mockup-row:nth-child(3) {
    width: 70%;
}

.stats {
    padding: 4.5rem 2rem;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    margin: -3rem auto 4rem;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    animation: stat-pop 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

/* Delay staggered for each number */
.stat-item:nth-child(1) .stat-value {
    animation-delay: 0.3s;
}

.stat-item:nth-child(2) .stat-value {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) .stat-value {
    animation-delay: 0.7s;
}

@keyframes stat-pop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* AI Process Section */
.ai-process {
    padding: 8rem 2rem;
    text-align: center;
}

.process-header {
    margin-bottom: 6rem;
}

.section-concept {
    text-align: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: -2.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem 2.5rem;
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-12px);
    border-color: rgba(0, 209, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.4);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 209, 255, 0.1);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: var(--secondary);
}

.step-icon {
    width: 40px;
    height: 40px;
}

.step-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Features */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.section-concept-center {
    text-align: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: -2.5rem;
    margin-bottom: 5rem;
    font-weight: 500;
    opacity: 0.9;
}

.features {
    padding: 8rem 2rem;
    scroll-margin-top: 100px;
}

.ai-process {
    padding: 8rem 2rem;
    text-align: center;
    scroll-margin-top: 100px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 209, 255, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.feature-link {
    color: var(--secondary);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-link:hover {
    color: #FFFFFF;
}

/* Pricing */
.pricing {
    padding: 8rem 2rem;
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(48, 46, 147, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem 2.5rem;
    border-radius: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn-glass {
    margin-top: auto;
}

.pricing-card h3 {
    font-size: 2.25rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(48, 46, 147, 0.1);
}

.pricing-subtitle {
    display: block;
    max-width: fit-content;
    margin: -3.5rem auto 4rem;
    background: rgba(0, 209, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--secondary);
    border: 1px solid rgba(0, 209, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(48, 46, 147, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.popular::before {
    content: 'MÁS ELEGIDO';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: #FFFFFF;
    letter-spacing: -1px;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0;
}

.price small {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-right: 4px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.pricing-card li svg {
    width: 20px;
    height: 20px;
    color: #00FF94;
    /* Verde neón vibrante */
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(0, 255, 148, 0.3));
}

/* Contact Form */
.contact {
    padding: 8rem 2rem;
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: white;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form button {
    padding: 1.25rem;
    font-size: 1.1rem;
    background: rgba(0, 209, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--secondary);
    border: 1px solid rgba(0, 209, 255, 0.4);
    font-family: 'Questrial', sans-serif;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 209, 255, 0.1);
}

.contact-form button:hover {
    background: rgba(0, 209, 255, 0.25);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 209, 255, 0.3);
}

.contact-form textarea {
    height: 180px;
}

/* Footer */
.footer {
    background: var(--bg-white);
    padding: 6rem 2rem 4rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2.25rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    max-width: 500px;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-muted);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.25rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: white;
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 255, 0.3);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    scroll-margin-top: 100px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(48, 46, 147, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 209, 255, 0.05), transparent 40%);
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 209, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.faq-item:focus-within,
.faq-item:has(details[open]) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
    box-shadow: 0 0 50px rgba(0, 209, 255, 0.1);
}

.faq-item details {
    padding: 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2.5rem;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    color: var(--secondary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--secondary);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    background: rgba(0, 209, 255, 0.1);
    padding: 0.6rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item details[open] summary {
    color: var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item details[open] summary i {
    transform: rotate(180deg);
    background: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.3);
}

.faq-answer {
    padding: 2.5rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.01);
    animation: slideUpFade 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--secondary);
    margin-left: 1.5rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: white;
}

/* Responsive */

/* Tablet: Hide FAQ and Contact from Nav */
@media (max-width: 1100px) {
    .nav-links li:nth-child(n+4) {
        display: none;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-hero-secondary {
        width: 100%;
        max-width: 400px;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 0;
    }

    .feature-grid,
    .process-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Phone: Hamburger Menu */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }

    .nav {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        gap: 0.5rem;
    }

    .logo {
        margin: 0 auto;
        font-size: 1.75rem;
    }

    .btn-hero-secondary {
        display: inline-block;
    }

    .nav-cta {
        margin: 0 auto;
    }

    .menu-toggle {
        display: block;
        margin-left: 0;
    }

    .nav-links {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: rgba(31, 29, 107, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li:nth-child(n+4) {
        display: block;
    }

    .nav-links a {
        font-size: 1.5rem !important;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .nav-cta .btn-primary {
        display: none;
        /* Hide button in mobile header to save space */
    }

    .nav-links .btn-primary {
        display: inline-block;
    }
}