/* ============================================
   DESIGN TOKENS (from Automatia design spec)
   ============================================ */
:root {
    --accent-cyan: #00E5FF;
    --accent-cyan-dim: rgba(0, 229, 255, 0.125);
    --accent-green: #22C55E;
    --accent-violet: #7C3AED;
    --accent-violet-dim: rgba(124, 58, 237, 0.145);
    --bg-card: #0D1526;
    --bg-dark: #050A14;
    --bg-elevated: #111E35;
    --border: #1E2D45;
    --border-bright: #2A3D5C;
    --text-muted: #475569;
    --text-secondary: #94A3B8;
    --text-white: #FFFFFF;
    --gap-section: 120px;
    --pad-section: 160px;
    --r-btn: 8px;
    --r-card: 16px;
    --gradient-main: linear-gradient(90deg, #00E5FF, #7C3AED);
    --gradient-btn: linear-gradient(135deg, #00E5FF, #7C3AED);
    --green-wa: #25D366;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover { opacity: 0.85; }

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ============================================
   UTILITIES
   ============================================ */
.icon-14 { width: 14px; height: 14px; flex-shrink: 0; }
.icon-16 { width: 16px; height: 16px; flex-shrink: 0; }
.icon-18 { width: 18px; height: 18px; flex-shrink: 0; }
.icon-20 { width: 20px; height: 20px; flex-shrink: 0; }

.text-cyan { color: var(--accent-cyan); }
.text-violet { color: var(--accent-violet); }
.text-green { color: var(--accent-green); }
.text-green-wa { color: var(--green-wa); }

.fw-600 { font-weight: 600; }

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(5, 10, 20, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 4vw, 160px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-btn);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-white);
    opacity: 1;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-demo {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--r-btn);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-demo:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
    opacity: 1;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px clamp(20px, 4vw, 160px) 80px;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.06) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-cyan-dim);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-cyan);
    position: relative;
    z-index: 1;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(16px, 1.4vw, 20px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--r-btn);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
    opacity: 1;
}

.btn-secondary {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: var(--r-btn);
    border: 1px solid var(--border-bright);
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-white);
    opacity: 1;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 4vw, 160px);
    height: 96px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    gap: 16px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 2.5vw, 36px);
}

.stat-number.cyan { color: var(--accent-cyan); }
.stat-number.violet { color: var(--accent-violet); }

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-tag.cyan { color: var(--accent-cyan); }
.section-tag.violet { color: var(--accent-violet); }

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.2;
    color: var(--text-white);
}

.section-desc {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--text-secondary);
}

/* ============================================
   SECTORES
   ============================================ */
.sectores {
    background: var(--bg-dark);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
}

.sectores-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.sector-card {
    width: 180px;
    height: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    cursor: default;
}

.sector-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-bright);
}

.sector-card.active {
    background: var(--accent-cyan-dim);
    border-color: rgba(0, 229, 255, 0.31);
}

.sector-card.active .sector-name {
    color: var(--accent-cyan);
}

.sector-emoji {
    font-size: 36px;
    line-height: 1;
}

.sector-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

/* ============================================
   SERVICIOS
   ============================================ */
.servicios {
    background: var(--bg-card);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.cyan-badge {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.19);
    color: var(--accent-cyan);
}

.green-badge {
    background: rgba(37, 211, 102, 0.125);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: var(--green-wa);
}

.violet-badge {
    background: rgba(124, 58, 237, 0.125);
    border: 1px solid rgba(124, 58, 237, 0.375);
    color: var(--accent-violet);
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.15;
    color: var(--text-white);
}

.service-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.service-divider {
    height: 1px;
    background: var(--border);
    margin: 80px 0;
}

.service-visual {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    border: 1px solid var(--border-bright);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,10,20,0.3) 0%, rgba(5,10,20,0.7) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(5, 10, 20, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 16px;
}

.visual-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.visual-icon-circle.cyan-bg {
    background: var(--accent-cyan-dim);
}

.visual-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visual-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
}

.visual-card-sub {
    font-size: 12px;
}

.visual-card-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 229, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 12px;
}

/* Service 3 - Panel visual */
.service-visual-panel {
    width: 100%;
    height: 380px;
    background: #0D1425;
    border-radius: 20px;
    border: 1px solid var(--border-bright);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.panel-live {
    background: rgba(124, 58, 237, 0.19);
    color: var(--accent-violet);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.panel-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.panel-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-time {
    width: 60px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    flex-shrink: 0;
}

.violet-time { background: rgba(124, 58, 237, 0.125); color: var(--accent-violet); }
.cyan-time { background: rgba(0, 229, 255, 0.06); color: var(--accent-cyan); }
.muted-time { background: rgba(255, 255, 255, 0.04); color: var(--text-secondary); }

.panel-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panel-info-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
}

.panel-info-sub {
    font-size: 11px;
    color: var(--text-secondary);
}

.panel-total {
    background: rgba(124, 58, 237, 0.125);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
}

.panel-total-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-violet);
}

.btn-violet {
    background: var(--accent-violet);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    width: fit-content;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-violet:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
    opacity: 1;
}

/* ============================================
   INTEGRACIONES
   ============================================ */
.integraciones {
    background: var(--bg-dark);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
}

.integ-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.integ-card {
    width: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}

.integ-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-bright);
}

.integ-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integ-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
}

.integ-desc {
    font-size: 11px;
    color: var(--text-secondary);
}

.integ-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.125);
    border-radius: 12px;
    padding: 16px 24px;
}

.integ-note p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card.featured {
    border-color: rgba(0, 229, 255, 0.19);
}

.stars {
    display: flex;
    gap: 4px;
}

.star-fill {
    color: #FBBF24;
    fill: #FBBF24;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.grad-1 { background: linear-gradient(135deg, #00E5FF, #7C3AED); }
.grad-2 { background: linear-gradient(135deg, #7C3AED, #00E5FF); }
.grad-3 { background: linear-gradient(135deg, #FA541C, #7C3AED); }

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.author-role {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    background: var(--bg-dark);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    background: var(--bg-dark);
    border: 2px solid var(--accent-cyan);
}

.pricing-card.enterprise {
    background: var(--bg-card);
}

.pricing-popular-badge {
    background: var(--accent-cyan);
    color: #050A14;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 0;
}

.pricing-top {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.price-amount.cyan { color: var(--accent-cyan); }
.price-amount.custom { font-size: 36px; }

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
    padding-bottom: 8px;
}

.btn-pricing-outline {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-bright);
    background: var(--bg-dark);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}

.btn-pricing-outline:hover {
    border-color: var(--text-secondary);
    color: var(--text-white);
    opacity: 1;
}

.btn-pricing-cyan {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    background: var(--accent-cyan);
    color: #050A14;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pricing-cyan:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
    opacity: 1;
}

.btn-pricing-violet {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    background: var(--accent-violet);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pricing-violet:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
    opacity: 1;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
}

.pricing-divider.cyan-div {
    background: rgba(0, 229, 255, 0.19);
}

.pricing-features {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
}

.faq-list {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    color: var(--text-secondary);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 32px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    min-height: 560px;
    background: linear-gradient(135deg, #050A14, #0D1A3A 50%, #050A14);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.05) 0%, rgba(124, 58, 237, 0.03) 40%, transparent 70%);
    pointer-events: none;
}

.cta-final .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-cyan-dim);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan);
}

.cta-titles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    color: var(--text-white);
}

.cta-sub {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cta-primary {
    background: var(--accent-cyan);
    color: #050A14;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
    opacity: 1;
}

.btn-cta-secondary {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    padding: 18px 36px;
    border-radius: 10px;
    border: 1px solid var(--border-bright);
    transition: border-color 0.2s;
}

.btn-cta-secondary:hover {
    border-color: var(--text-secondary);
    opacity: 1;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: var(--bg-dark);
    padding: var(--gap-section) clamp(20px, 4vw, 160px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.contact-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    background: #09111F;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: var(--text-muted);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.08);
}

.field-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.contact-legal {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #030810;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 64px;
    padding: 64px clamp(20px, 4vw, 160px);
    max-width: 1440px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background 0.2s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-white);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(20px, 4vw, 160px);
    border-top: 1px solid var(--border);
    max-width: 1440px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-legal a:hover {
    color: var(--text-white);
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --gap-section: 80px;
        --pad-section: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .proof-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav, .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-inner {
        padding: 0 20px;
    }

    /* Mobile menu open */
    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 10, 20, 0.97);
        backdrop-filter: blur(20px);
        padding: 40px 20px;
        gap: 24px;
        z-index: 999;
    }

    .nav.open .nav-link {
        font-size: 20px;
    }

    .nav-cta.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 40px;
        left: 20px;
        right: 20px;
        z-index: 1000;
        gap: 12px;
    }

    .nav-cta.open .btn-demo {
        text-align: center;
        padding: 16px 24px;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .stats-bar {
        padding: 24px 20px;
        height: auto;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        width: calc(50% - 12px);
    }

    .sector-card {
        width: calc(50% - 8px);
    }

    .integ-card {
        width: calc(50% - 10px);
    }

    .service-visual,
    .service-visual-panel {
        height: 280px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .sector-card {
        width: 100%;
        height: 120px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 24px;
        gap: 16px;
    }

    .integ-card {
        width: 100%;
        flex-direction: row;
        padding: 16px 20px;
        gap: 16px;
    }

    .integ-card .integ-name {
        text-align: left;
    }
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
