﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION HELPERS ===== */
.section-header { margin-bottom: 56px; }
.section-label {
    display: inline-block;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2265A2;
    background: rgba(34,101,162,0.08);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.section-label.light { color: #7FADE0; background: rgba(127,173,224,0.15); }
.section-title {
    font-size: 2.5em;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: #062654;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05em;
    color: #4a5568;
    max-width: 580px;
    line-height: 1.75;
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #2265A2; color: #fff;
    padding: 13px 30px; border-radius: 8px;
    font-weight: 600; font-size: 0.97em;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover { background: #062654; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,101,162,0.32); }
.btn-primary.large { padding: 17px 42px; font-size: 1.05em; border-radius: 10px; }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff; padding: 13px 30px; border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.32);
    font-weight: 500; font-size: 0.97em;
    transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ===== NAVIGATION ===== */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(6,38,84,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s, box-shadow 0.3s;
}
#header.scrolled { background: #062654; box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 70px;
}
.logo { font-size: 1.4em; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.logo span { color: #7FADE0; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.9em; font-weight: 500; color: rgba(255,255,255,0.72); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: #2265A2 !important; color: #fff !important;
    padding: 9px 22px !important; border-radius: 7px !important;
    font-size: 0.88em !important; font-weight: 600 !important;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: #7FADE0 !important; color: #062654 !important; }
.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, #010913 0%, #062654 55%, #0e3d7a 100%);
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; padding: 120px 24px 260px;
    position: relative; overflow: hidden;
}

/* Dot grid */
.hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Floating orbs */
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none; will-change: transform;
}
.orb-1 {
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(127,173,224,0.16) 0%, transparent 70%);
    top: -160px; right: -120px;
    animation: orbFloat1 14s ease-in-out infinite;
}
.orb-2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(34,101,162,0.22) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    animation: orbFloat2 18s ease-in-out infinite;
}
.orb-3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(127,173,224,0.1) 0%, transparent 70%);
    top: 40%; left: 45%;
    animation: orbFloat3 11s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%,100%{ transform: translate(0,0) scale(1); }
    33%    { transform: translate(40px,-30px) scale(1.06); }
    66%    { transform: translate(-20px,20px) scale(0.96); }
}
@keyframes orbFloat2 {
    0%,100%{ transform: translate(0,0) scale(1); }
    40%    { transform: translate(-30px,28px) scale(1.09); }
    70%    { transform: translate(22px,-14px) scale(0.94); }
}
@keyframes orbFloat3 {
    0%,100%{ transform: translate(-50%,-50%) scale(1); }
    50%    { transform: translate(-50%,-50%) translate(18px,22px) scale(1.05); }
}

/* Cursor spotlight */
.hero-cursor-glow {
    position: absolute; width: 400px; height: 400px;
    border-radius: 50%; pointer-events: none; z-index: 1;
    background: radial-gradient(circle, rgba(127,173,224,0.12) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    opacity: 0; transition: opacity 0.4s ease;
    will-change: left, top;
}

.hero-content { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

/* Eyebrow reveal */
.hero-eyebrow {
    display: inline-block; font-size: 0.78em; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #7FADE0; margin-bottom: 28px; overflow: hidden;
    opacity: 0; animation: fadeSlideDown 0.8s cubic-bezier(0.16,1,0.3,1) 0.05s forwards;
}
.eyebrow-line { display: inline-block; }

/* H1 line reveal (Webflow style) */
.hero h1 {
    font-size: 4em; font-weight: 900; color: #fff;
    letter-spacing: -2px; line-height: 1.12; margin-bottom: 30px;
}
.line-wrap { overflow: hidden; display: block; }
.line-reveal {
    display: block;
    opacity: 0;
    transform: translateY(105%);
    animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.line-wrap:nth-child(1) .line-reveal { animation-delay: 0.18s; }
.line-wrap:nth-child(2) .line-reveal { animation-delay: 0.34s; }
.line-accent { color: #7FADE0; }
@keyframes lineReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: 1.12em; color: rgba(255,255,255,0.62);
    max-width: 600px; margin: 0 auto 24px;
    line-height: 1.82; font-weight: 300;
    opacity: 0; animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.52s forwards;
}
.hero-pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(168,85,247,0.18));
    border: 1px solid rgba(168,85,247,0.45);
    color: rgba(255,255,255,0.92);
    font-size: 0.97em; font-weight: 400;
    padding: 10px 22px; border-radius: 50px;
    margin-bottom: 32px;
    opacity: 0; animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}
.hero-pricing-badge strong {
    color: #a78bfa; font-size: 1.18em; font-weight: 700;
}
.hero-actions {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
    margin-bottom: 64px;
    opacity: 0; animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.68s forwards;
}
.hero-stats {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.09); padding-top: 40px;
    opacity: 0; animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.84s forwards;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 40px; }
.stat-number { font-size: 1.85em; font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.76em; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.stat-divider { width: 1px; height: 42px; background: rgba(255,255,255,0.1); }

/* Shimmer on primary CTA */
.btn-primary {
    position: relative; overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: shimmer 3.5s ease-in-out 1.6s infinite;
}
@keyframes shimmer { to { left: 160%; } }

.hero-scroll-indicator {
    position: absolute; bottom: 250px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 3; opacity: 0; animation: fadeSlideUp 1s ease 1.4s forwards;
}
.hero-scroll-indicator span { font-size: 0.68em; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.scroll-line {
    width: 1px; height: 38px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.35;} 50%{opacity:1;} }
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(-16px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeSlideUp   { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn        { from{opacity:0;}to{opacity:1;} }

/* ===== HERO CAR SCENE ===== */
.hero-road-scene {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 240px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

/* Road surface */
.road-surface {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 38px;
    background: linear-gradient(180deg, #081c36 0%, #040e1e 100%);
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
}
.road-line {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    height: 3px;
    width: 80px;
    background: rgba(127,173,224,0.45);
    border-radius: 2px;
    animation: roadLines 1.1s linear infinite;
}
.road-line:nth-child(1) { left: -80px; animation-delay: 0s; }
.road-line:nth-child(2) { left: calc(20% - 80px); animation-delay: -0.22s; }
.road-line:nth-child(3) { left: calc(40% - 80px); animation-delay: -0.44s; }
.road-line:nth-child(4) { left: calc(60% - 80px); animation-delay: -0.66s; }
.road-line:nth-child(5) { left: calc(80% - 80px); animation-delay: -0.88s; }

@keyframes roadLines {
    0%   { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(calc(100vw + 80px)); }
}

/* Car wrapper — drives in from right, then loops */
.hero-car-wrap {
    position: absolute;
    bottom: 38px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: carDriveIn 1.2s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}
@keyframes carDriveIn {
    from { transform: translateX(80vw); }
    to   { transform: translateX(0); }
}

.hero-car-svg {
    width: min(420px, 80vw);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(34,101,162,0.5));
    animation: carFloat 3.2s ease-in-out 2.2s infinite;
}
@keyframes carFloat {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-7px); }
}

/* Wheel spin via SVG group — handled by rotating the SVG circles */
.hero-car-svg circle.rim {
    transform-origin: center;
    animation: wheelSpin 0.5s linear infinite;
}
@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* Speed lines — appear during drive-in, fade out */
.speed-lines {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    animation: speedLinesFade 1.8s ease 0.8s forwards;
    opacity: 0;
}
@keyframes speedLinesFade {
    0%   { opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 0.7; }
    100% { opacity: 0; }
}
.speed-lines span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, transparent, rgba(127,173,224,0.6), transparent);
    animation: speedSlide 0.4s linear infinite;
}
.speed-lines span:nth-child(1) { width: 70%; margin-left: auto; animation-delay: 0s; }
.speed-lines span:nth-child(2) { width: 55%; margin-left: auto; animation-delay: -0.07s; }
.speed-lines span:nth-child(3) { width: 80%; margin-left: auto; animation-delay: -0.14s; }
.speed-lines span:nth-child(4) { width: 45%; margin-left: auto; animation-delay: -0.21s; }
.speed-lines span:nth-child(5) { width: 65%; margin-left: auto; animation-delay: -0.28s; }
.speed-lines span:nth-child(6) { width: 50%; margin-left: auto; animation-delay: -0.35s; }
@keyframes speedSlide {
    from { transform: translateX(15%); }
    to   { transform: translateX(-15%); }
}

/* Shadow breathes with float */
.car-shadow {
    animation: shadowPulse 3.2s ease-in-out 2.2s infinite;
}
@keyframes shadowPulse {
    0%,100% { rx: 150; opacity: 1; }
    50%      { rx: 130; opacity: 0.6; }
}

/* Headlight beam pulse */
.headlight-beam {
    animation: beamPulse 2s ease-in-out infinite;
}
@keyframes beamPulse {
    0%,100% { opacity: 0.18; }
    50%      { opacity: 0.32; }
}

@media (max-width: 768px) {
    .hero-road-scene { height: 190px; }
    .hero-scroll-indicator { bottom: 200px; }
}
@media (max-width: 480px) {
    .hero-road-scene { height: 170px; }
    .hero-scroll-indicator { bottom: 180px; }
    .hero-car-svg { width: min(300px, 85vw); }
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pillar {
    background: #EAF0F7; border-radius: 16px; padding: 36px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(34,101,162,0.11); }
.pillar-icon {
    width: 44px; height: 44px; background: #2265A2; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; margin-bottom: 20px;
}
.pillar h3 { font-size: 1.15em; font-weight: 700; color: #062654; margin-bottom: 10px; }
.pillar p { font-size: 0.93em; color: #4a5568; line-height: 1.72; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: #EAF0F7; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card {
    background: #fff; border-radius: 12px; padding: 26px 22px;
    border: 1px solid rgba(34,101,162,0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(34,101,162,0.11); border-color: #7FADE0; }
.feature-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #2265A2, #062654);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    color: #fff; margin-bottom: 16px;
}
.feature-card h3 { font-size: 0.97em; font-weight: 700; color: #062654; margin-bottom: 8px; }
.feature-card p { font-size: 0.86em; color: #718096; line-height: 1.65; }
.feature-card--coming-soon { position: relative; opacity: 0.82; }
.feature-card-badge {
    position: absolute; top: 14px; right: 14px;
    background: linear-gradient(135deg, #2265A2, #062654);
    color: #fff; font-size: 0.68em; font-weight: 700; letter-spacing: 0.06em;
    padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}

/* ===== PRICING ===== */
.pricing { padding: 100px 0; background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 800px; margin: 0 auto; }
.price-card {
    background: #EAF0F7; border-radius: 20px; padding: 42px 38px;
    border: 2px solid transparent; position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(34,101,162,0.13); }
.price-card.featured { background: linear-gradient(155deg, #062654 0%, #2265A2 100%); border-color: #7FADE0; }
.plan-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #7FADE0; color: #062654;
    font-size: 0.7em; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 16px; border-radius: 100px;
}
.plan-tag { font-size: 0.78em; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #2265A2; margin-bottom: 10px; }
.price-card.featured .plan-tag { color: #7FADE0; }
.plan-price { font-size: 2.4em; font-weight: 900; color: #062654; letter-spacing: -1px; line-height: 1; margin-bottom: 10px; }
.plan-price span { font-size: 0.38em; font-weight: 400; color: #718096; letter-spacing: 0; }
.price-card.featured .plan-price { color: #fff; }
.price-card.featured .plan-price span { color: rgba(255,255,255,0.5); }
.plan-desc { font-size: 0.9em; color: #4a5568; margin-bottom: 28px; line-height: 1.65; }
.price-card.featured .plan-desc { color: rgba(255,255,255,0.68); }
.plan-features { list-style: none; margin-bottom: 34px; }
.plan-features li {
    font-size: 0.9em; color: #062654;
    padding: 9px 0 9px 26px; position: relative;
    border-bottom: 1px solid rgba(34,101,162,0.07);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: "\2713"; position: absolute; left: 0; color: #2265A2; font-weight: 700; }
.price-card.featured .plan-features li { color: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.1); }
.price-card.featured .plan-features li::before { color: #7FADE0; }
.btn-plan {
    display: block; text-align: center; padding: 13px;
    border-radius: 9px; font-weight: 700; font-size: 0.95em;
    background: #2265A2; color: #fff;
    transition: background 0.25s, transform 0.2s;
}
.btn-plan:hover { background: #062654; transform: translateY(-1px); }
.price-card.featured .btn-plan { background: #7FADE0; color: #062654; }
.price-card.featured .btn-plan:hover { background: #EAF0F7; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: #062654; }
.how-it-works .section-title { color: #fff; }
.how-it-works .section-sub { color: rgba(255,255,255,0.58); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step { flex: 1; max-width: 230px; text-align: center; padding: 0 16px; }
.step-num {
    font-size: 3em; font-weight: 900;
    color: rgba(127,173,224,0.18); letter-spacing: -2px;
    line-height: 1; margin-bottom: 18px;
    transition: color 0.3s;
}
.step:hover .step-num { color: #7FADE0; }
.step h3 { font-size: 1.05em; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step p { font-size: 0.88em; color: rgba(255,255,255,0.52); line-height: 1.72; }
.step-arrow { font-size: 1.6em; color: rgba(255,255,255,0.18); flex-shrink: 0; align-self: flex-start; margin-top: 28px; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 100px 0; background: #EAF0F7; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.cta-text h2 { font-size: 2.1em; font-weight: 800; color: #062654; letter-spacing: -0.5px; margin-bottom: 14px; line-height: 1.22; }
.cta-text p { font-size: 1em; color: #4a5568; line-height: 1.72; margin-bottom: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-row { display: flex; align-items: center; gap: 16px; font-size: 0.93em; }
.contact-label { font-weight: 700; color: #2265A2; min-width: 78px; font-size: 0.82em; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-row a { color: #062654; font-weight: 600; transition: color 0.2s; }
.contact-row a:hover { color: #2265A2; }
#phone-btn { color: #2265A2; font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.cta-action { text-align: center; flex-shrink: 0; }
.cta-note { font-size: 0.8em; color: #718096; margin-top: 14px; }

/* ===== FOOTER ===== */
.site-footer { background: #030d1e; color: rgba(255,255,255,0.58); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-size: 1.3em; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 14px; }
.footer-logo span { color: #7FADE0; }
.footer-brand p { font-size: 0.88em; line-height: 1.72; margin-bottom: 14px; color: rgba(255,255,255,0.42); max-width: 270px; }
.footer-flag { font-size: 0.78em; color: rgba(255,255,255,0.3); }
.footer-col h4 { font-size: 0.78em; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.82); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul li a { font-size: 0.87em; color: rgba(255,255,255,0.42); transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover, .footer-col ul li:hover { color: #7FADE0; }
#footer-phone-btn { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 0.8em; color: rgba(255,255,255,0.26); flex-wrap: wrap; gap: 10px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    width: 58px; height: 58px; background: #25D366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.38); z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatWA 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 28px rgba(37,211,102,0.48); animation: none; }
@keyframes floatWA { 0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);} }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        background: #062654; flex-direction: column; gap: 0;
        padding: 8px 0 16px;
        max-height: 0; overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        opacity: 0;
        z-index: 998;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    }
    .nav-links.open { max-height: 420px; opacity: 1; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 24px; font-size: 0.97em; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-cta { margin: 12px 16px 4px !important; display: block; text-align: center; border-radius: 7px !important; border-bottom: none !important; }
    .mobile-toggle { display: flex; }
    .hero { padding: 100px 20px 200px; }
    .hero h1 { font-size: 2.6em; }
    .stat { padding: 14px 18px; }
    .stat-divider { display: none; }
    .section-title { font-size: 1.95em; }
    .pillars { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .steps { flex-direction: column; align-items: center; gap: 24px; }
    .step { max-width: 100%; }
    .step-arrow { display: none; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .cta-action { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2em; }
    .features-grid { grid-template-columns: 1fr; }
    .stat { padding: 10px 14px; }
}