:root {
    --navy: #050d1a;
    --navy-mid: #0a1628;
    --navy-light: #0f2040;
    --cyan: #00d4ff;
    --cyan-dim: #00a8cc;
    --cyan-glow: rgba(0, 212, 255, 0.15);
    --electric: #0066ff;
    --teal: #007a8a;
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-30: rgba(255, 255, 255, 0.3);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --success: #00e676;
    --error: #ff4757;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 2px;
}

.grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.logo-text {
    font-family: var(--font-display);
    padding-top: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    color: var(--white-60);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-cta {
    background: linear-gradient(135deg, var(--teal), var(--electric)) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4) !important;
    transform: translateY(-1px);
}

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 120, 160, 0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 80% 30%, rgba(0, 66, 204, 0.1) 0%, transparent 60%), linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.badge-cyan {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan);
}

.badge-blue {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: #4d9fff;
}

.badge-green {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--success);
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

h1 .accent {
    color: var(--cyan);
    font-size: clamp(2.3rem, 4.3vw, 3.8rem);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--electric) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center !important;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    gap: 8px;
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.35);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    padding: 14px 28px;
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

/* MOCKUP */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s 0.5s forwards;
}

.mockup-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mockup-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.mockup-frame {
    background: var(--navy-mid);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.05);
}

.mockup-bar {
    background: var(--navy-light);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-r {
    background: #ff5f57;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #28ca41;
}

.mockup-url {
    flex: 1;
    background: var(--navy);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--white-30);
    margin-left: 8px;
}

.mockup-body {
    padding: 20px;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mockup-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

.mockup-active {
    font-size: 0.65rem;
    padding: 3px 8px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--success);
    border-radius: 20px;
    font-family: var(--font-mono);
}

.mockup-tabs {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 16px;
}

.mtab {
    padding: 8px 16px;
    font-size: 0.75rem;
    color: var(--white-30);
    cursor: pointer;
    position: relative;
}

.mtab.active {
    color: var(--cyan);
}

.mtab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

.mockup-upload {
    background: var(--navy);
    border: 1px dashed rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    margin-bottom: 12px;
}

.up-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--cyan);
}

.up-text {
    font-size: 0.75rem;
    color: var(--white-60);
}

.up-sub {
    font-size: 0.65rem;
    color: var(--white-30);
    margin-top: 2px;
}

.mock-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--teal), var(--electric));
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mstat {
    background: var(--navy);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 10px 8px;
    text-align: center;
}

.mstat-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cyan);
}

.mstat-val.g {
    color: var(--success);
}

.mstat-val.r {
    color: var(--error);
}

.mstat-lbl {
    font-size: 0.6rem;
    color: var(--white-30);
    margin-top: 2px;
}

.mockup-frame-2 {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 280px;
    background: var(--navy-mid);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
    animation-delay: -3s;
}

.m2-bar {
    background: var(--navy-light);
    padding: 8px 12px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white-60);
}

.m2-body {
    padding: 10px;
}

.mrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.65rem;
}

.mrow-n {
    color: var(--white-60);
    font-family: var(--font-mono);
}

.mrow-s {
    color: var(--success);
    font-weight: 600;
}

.mrow-e {
    color: var(--error);
    font-weight: 600;
}

/* SECTIONS */
section {
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

h2 .accent {
    color: var(--cyan);
}

.section-sub {
    text-align: left;
    font-size: 1rem;
    color: var(--white-60);
    line-height: 1.7;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    max-width: 1200px;
    margin: 0 auto;
}

/* HOW IT WORKS */
#how {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
}

.step-connector {
    position: absolute;
    top: 54px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.08);
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--electric));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 16px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.step-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step-desc {
    text-align: left;
    font-size: 0.8rem;
    color: var(--white-60);
    line-height: 1.6;
}

.step-micro {
    font-size: 0.7rem;
    color: var(--cyan);
    margin-top: 8px;
    font-family: var(--font-mono);
}

/* STATS */
#stats {
    background: var(--navy-mid);
}

.stats-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.stats-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-real {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--cyan);
    border-radius: 10px;
    padding: 20px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--white-60);
    line-height: 1.6;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card.hl {
    background: linear-gradient(135deg, rgba(0, 122, 138, 0.15), rgba(0, 66, 204, 0.1));
    border-color: rgba(0, 212, 255, 0.2);
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number.g {
    color: var(--success);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--white-60);
}

.stat-sub {
    font-size: 0.7rem;
    color: var(--white-30);
    margin-top: 2px;
}

.stat-icon-big {
    font-size: 2rem;
}

/* BENEFITS */
#benefits {
    background: var(--navy);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover::before {
    opacity: 1;
}

.b-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.benefit-card:hover .b-icon {
    background: rgba(0, 212, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.b-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.b-desc {
    font-size: 0.82rem;
    color: var(--white-60);
    line-height: 1.6;
}

/* DATA */
#data-fields {
    background: var(--navy-mid);
}

.data-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.data-intro p {
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.data-hl {
    background: linear-gradient(135deg, rgba(0, 122, 138, 0.12), rgba(0, 66, 204, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--white-60);
    line-height: 1.6;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.field-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.25s;
}

.field-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
}

.f-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--cyan);
}

.f-name {
    font-size: 0.78rem;
    color: var(--white-60);
    font-family: var(--font-mono);
}

/* TECH */
#tech {
    background: var(--navy);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tech-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-3px);
}

.tc-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.tc-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.tc-desc {
    text-align: left;
    font-size: 0.75rem;
    color: var(--white-60);
    line-height: 1.5;
}

/* SECURITY */
#security {
    background: var(--navy-mid);
}

.security-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 1.5rem;
}

.pillar {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.pillar:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.p-icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.p-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.p-desc {
    font-size: 0.75rem;
    color: var(--white-60);
    line-height: 1.5;
}

.sec-shield {
    background: linear-gradient(135deg, rgba(0, 122, 138, 0.1), rgba(0, 66, 204, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.sh-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.sh-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sh-desc {
    font-size: 0.85rem;
    color: var(--white-60);
    line-height: 1.6;
    text-align: left;
}

.sh-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.sh-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 4px;
    color: var(--cyan);
    font-family: var(--font-mono);
}

/* COMPARE */
#compare {
    background: var(--navy);
}

.compare-table {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
}

.compare-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--navy-light);
    border-bottom: 1px solid var(--glass-border);
}

.ch {
    padding: 16px 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
}

.ch.neg {
    color: var(--white-30);
}

.ch.pos {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cc {
    padding: 14px 24px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc.feat {
    color: var(--white-80);
}

.cc.neg {
    color: var(--error);
    font-size: 0.8rem;
}

.cc.pos {
    color: var(--success);
    font-size: 0.8rem;
    background: rgba(0, 230, 118, 0.02);
}

/* IDEAL */
#ideal {
    background: var(--navy-mid);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ideal-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s;
}

.ideal-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.ic-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.ic-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.ic-desc {
    font-size: 0.8rem;
    color: var(--white-70);
    line-height: 1.5;
}

/* FAQ */
#faq {
    background: var(--navy);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white-60);
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--cyan);
}

.faq-arrow {
    font-size: 0.7rem;
    color: var(--cyan);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.875rem;
    color: var(--white-60);
    line-height: 1.7;
}

.faq-ans-inner {
    color: var(--white);
    background: rgba(0, 255, 255, 0.05);
    border-radius: 14px;
    padding: 15px;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.open .faq-ans {
    max-height: 200px;
}

/* CTA FINAL */
#cta-final {
    background: var(--navy-mid);
    position: relative;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 102, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: span 2;
}

label {
    font-size: 0.78rem;
    color: var(--white-60);
    font-weight: 500;
}

input,
textarea {
    background: var(--navy);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s;
    width: 100%;
}

input:focus,
textarea:focus {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 1rem;
}

/* FOOTER */
footer {
    background: var(--navy);
    border-top: 1px solid var(--glass-border);
    padding: 48px 5% 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 40px;
}

.fb h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.fb h3 span {
    color: var(--cyan);
}

.fb p {
    font-size: 0.82rem;
    color: var(--white-60);
    line-height: 1.6;
    max-width: 300px;
}

.fc h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--white-80);
}

.fc ul {
    list-style: none;
}

.fc li {
    margin-bottom: 8px;
}

.fc a {
    font-size: 0.8rem;
    color: var(--white-60);
    text-decoration: none;
    transition: color 0.2s;
}

.fc a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--white-60);
}

.footer-dev {
    display: inline-flex;
    font-size: 0.75rem;
    color: var(--white-60);
    gap: 4px;
}

.footer-dev a {
    color: var(--cyan);
    text-decoration: none;
}

.footer-legal {
    font-size: 0.72rem;
    color: var(--white-60);
    max-width: 560px;
    line-height: 1.5;
}

/* WHATSAPP */
.wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-wa 3s ease-in-out infinite;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.title-description {
    color: var(--white-80);
}

.emphasis-box {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-layout,
    .data-layout {
        grid-template-columns: 1fr;
    }

    .ideal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .stats-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .ideal-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compare-header,
    .compare-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .cc {
        padding: 12px 10px;
        font-size: 0.72rem;
    }

    .ch {
        padding: 12px 10px;
        font-size: 0.78rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .stat-card.hl {
        flex-direction: column;
    }

    .section-inner {
        padding: 60px 5%;
    }
}