/* ══════════════════════════════════════════════════════
   LIMOSCHEDULE — Custom Styles
   Color palette: #0A0A0A · #3B82F6 · #FFFFFF
══════════════════════════════════════════════════════ */

*, *::before, *::after { font-family: 'Inter', sans-serif; box-sizing: border-box; }

/* ── Page base ── */
html { scroll-behavior: smooth; }
body { background: #0A0A0A; color: #fff; -webkit-font-smoothing: antialiased; }

/* ══════════════════════════════════════════════════════
   SECTION 1 — NAVBAR
══════════════════════════════════════════════════════ */

/* Scroll-state: darken navbar */
#navbar { transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    border-bottom-color: rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

/* Nav link — blue underline slide */
.nav-link {
    position: relative;
    transition: color 0.2s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #3B82F6;
    border-radius: 99px;
    transition: width 0.25s ease, left 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Logo badge glow on hover */
.logo-badge {
    transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.logo-badge:hover {
    box-shadow: 0 0 0 1px rgba(59,130,246,0.3), 0 0 20px rgba(59,130,246,0.2);
    transform: translateY(-1px);
}

/* CTA Button: blue glow pulse */
.btn-cta {
    position: relative;
    transition: background 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #3B82F6, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-cta:hover {
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15), 0 0 28px rgba(59,130,246,0.35);
    transform: translateY(-1px);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta span { position: relative; z-index: 1; }
.btn-cta svg  { position: relative; z-index: 1; }
.btn-cta:active { transform: translateY(0); }

/* Mobile menu slide-in */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0.3s ease;
    opacity: 0;
    transform: translateY(-6px);
    visibility: hidden;
}
.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Hamburger → X morph */
.hb-line { transition: transform 0.3s ease, opacity 0.2s ease, width 0.25s ease; transform-origin: center; }
#hamburger.open .hb-top { transform: translateY(7.5px) rotate(45deg); }
#hamburger.open .hb-mid { opacity: 0; transform: scaleX(0); }
#hamburger.open .hb-bot { transform: translateY(-7.5px) rotate(-45deg); width: 18px; }

/* Mobile nav item hover */
.mob-nav-item { transition: background 0.15s ease, color 0.15s ease, padding-left 0.2s ease; }
.mob-nav-item:hover { padding-left: 1.25rem; }

/* ══════════════════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════════════════ */

/* Hero subtle grid */
.hero-grid {
    background-image: linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
}

/* Glow orb */
.glow-orb {
    background: radial-gradient(circle at center, rgba(59,130,246,0.14) 0%, rgba(59,130,246,0.04) 40%, transparent 70%);
    animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.08); opacity: 0.8; }
}

/* Badge ping dot */
@keyframes ping {
    0%       { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(2); opacity: 0; }
}
.ping-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #3B82F6;
    animation: ping 1.6s ease-out infinite;
}

/* Stat counter fade-up */
.stat-item { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stat-item.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   SECTION 2 — FEATURES GRID
══════════════════════════════════════════════════════ */

/* No-JS fallback: show all animated elements if JavaScript hasn't loaded */
html:not(.js-ready) .section-fade,
html:not(.js-ready) .stat-item,
html:not(.js-ready) .voice-result-reveal,
html:not(.js-ready) .voice-panel-reveal,
html:not(.js-ready) .ai-call-fade,
html:not(.js-ready) .ai-call-left-reveal,
html:not(.js-ready) .ai-call-right-reveal,
html:not(.js-ready) .ai-bubble-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* Section fade-up reveal */
.section-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.section-fade.visible { opacity: 1; transform: translateY(0); }

/* Feature card base */
.feature-card {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 28px 28px 26px;
    position: relative;
    overflow: hidden;
    transition:
        background   0.35s cubic-bezier(0.4,0,0.2,1),
        border-color 0.35s cubic-bezier(0.4,0,0.2,1),
        transform    0.3s  cubic-bezier(0.4,0,0.2,1),
        box-shadow   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Top shimmer line */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.75) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Inner radial glow */
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(ellipse at 50% -10%, rgba(59,130,246,0.07) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

/* Hover state */
.feature-card:hover {
    background: rgba(59,130,246,0.032);
    border-color: rgba(59,130,246,0.22);
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(59,130,246,0.10),
        0 16px 56px rgba(59,130,246,0.09),
        0 4px 20px rgba(0,0,0,0.45);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }

/* Icon wrapper */
.feat-icon-wrap {
    width: 46px; height: 46px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.feature-card:hover .feat-icon-wrap {
    background: rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.32);
    box-shadow: 0 0 18px rgba(59,130,246,0.22);
}

/* Arrow indicator */
.feat-arrow {
    position: absolute;
    bottom: 22px; right: 24px;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.feature-card:hover .feat-arrow { opacity: 1; transform: translate(0,0); }

/* Featured card (AI + Voice) — accent border */
.feature-card.featured {
    background: rgba(59,130,246,0.04);
    border-color: rgba(59,130,246,0.18);
}
.feature-card.featured:hover {
    background: rgba(59,130,246,0.07);
    border-color: rgba(59,130,246,0.32);
    box-shadow:
        0 0 0 1px rgba(59,130,246,0.18),
        0 20px 64px rgba(59,130,246,0.14),
        0 4px 24px rgba(0,0,0,0.5);
}
.feature-card.featured::before { opacity: 0.5; }

/* ══════════════════════════════════════════════════════
   SECTION 3 — VOICE SEARCH BOOKING
══════════════════════════════════════════════════════ */

/* Voice waveform bars */
@keyframes voiceWave {
    0%, 100% { transform: scaleY(0.12); opacity: 0.25; }
    50%       { transform: scaleY(1);   opacity: 1; }
}
.vw-bar {
    width: 3px;
    height: 32px;
    background: linear-gradient(180deg, #60a5fa 0%, #3B82F6 100%);
    border-radius: 99px;
    transform-origin: bottom;
    flex-shrink: 0;
    animation: voiceWave 1.1s ease-in-out infinite;
}

/* Mic pulse rings */
@keyframes micRingExpand {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(2.6); opacity: 0; }
}
.mic-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.45);
    animation: micRingExpand 2.1s ease-out infinite;
    pointer-events: none;
}

/* Cursor blink */
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
.cursor-blink { animation: cursorBlink 0.9s step-end infinite; }

/* Voice result cards */
.voice-result-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.voice-result-card:hover {
    background: rgba(59,130,246,0.04);
    border-color: rgba(59,130,246,0.22);
    transform: translateX(5px);
    box-shadow: -5px 0 0 rgba(59,130,246,0.35), 0 8px 32px rgba(59,130,246,0.09);
}

/* Slide-in reveal */
.voice-result-reveal {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.voice-result-reveal.visible { opacity: 1; transform: translateX(0); }

/* Left panel slide-in */
.voice-panel-reveal {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.voice-panel-reveal.visible { opacity: 1; transform: translateX(0); }

/* Scan line across panel */
@keyframes vsScanLine {
    0%   { top: 0%;   opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}
.vs-scan-line {
    position: absolute;
    left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.55) 50%, transparent 100%);
    animation: vsScanLine 4s linear infinite;
    pointer-events: none;
}

/* Mic button listening state */
.mic-btn-listening {
    box-shadow: 0 0 0 1px rgba(59,130,246,0.12), 0 0 48px rgba(59,130,246,0.28), inset 0 1px 0 rgba(255,255,255,0.07) !important;
}

/* AI chip tag */
.vs-chip {
    cursor: default;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.vs-chip:hover {
    background: rgba(59,130,246,0.08) !important;
    border-color: rgba(59,130,246,0.2) !important;
}

/* ══════════════════════════════════════════════════════
   SECTION 4 — AI LIMO CALL AGENT
══════════════════════════════════════════════════════ */

@keyframes ai-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.85); }
}

@keyframes aiCallWave {
    0%, 100% { transform: scaleY(0.14); opacity: 0.22; }
    50%       { transform: scaleY(1);   opacity: 1; }
}

.ai-call-bar {
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, #60a5fa 0%, #3B82F6 100%);
    border-radius: 99px;
    transform-origin: center;
    flex-shrink: 0;
    animation: aiCallWave 1s ease-in-out infinite;
}

/* Section header fade-up */
.ai-call-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.ai-call-fade.visible { opacity: 1; transform: translateY(0); }

/* Left panel slide-in */
.ai-call-left-reveal {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.ai-call-left-reveal.visible { opacity: 1; transform: translateX(0); }

/* Right panel slide-in */
.ai-call-right-reveal {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.ai-call-right-reveal.visible { opacity: 1; transform: translateX(0); }

/* Conversation bubbles */
.ai-bubble-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.ai-bubble-reveal.visible { opacity: 1; transform: translateY(0); }

/* Step icon hover */
.ai-step-item:hover .ai-step-icon {
    background: rgba(59,130,246,0.14) !important;
    border-color: rgba(59,130,246,0.35) !important;
    box-shadow: 0 0 18px rgba(59,130,246,0.2);
}

/* Call card inner glow on hover */
.ai-call-card {
    transition: box-shadow 0.4s ease;
}
.ai-call-card:hover {
    box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(59,130,246,0.12), 0 0 48px rgba(59,130,246,0.06) !important;
}

/* Typing indicator dots */
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30%            { transform: translateY(-4px); opacity: 1; }
}
.typing-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(59,130,246,0.7);
    animation: typingDot 1.2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   SECTION — ADMIN PANEL SHOWCASE
══════════════════════════════════════════════════════ */

/* Tab buttons */
.admin-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}
.admin-tab:hover {
    color: #d1d5db;
    background: rgba(255,255,255,0.04);
}
.admin-tab.active-tab {
    color: #fff;
    background: rgba(59,130,246,0.14);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.25);
}
.admin-tab.active-tab svg { stroke: #3B82F6; }

/* Sidebar nav items */
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}
.sidebar-nav-item:hover {
    color: #d1d5db;
    background: rgba(255,255,255,0.04);
}
.sidebar-nav-item.active-nav {
    color: #fff;
    background: rgba(59,130,246,0.12);
}
.sidebar-nav-item.active-nav svg { stroke: #3B82F6; }

/* Panel visibility */
.admin-panel { display: block; }
.admin-panel.hidden { display: none; }

/* Smooth panel fade-in */
.admin-panel:not(.hidden) {
    animation: apFadeIn 0.2s ease;
}
@keyframes apFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar inside admin mockup */
.admin-content-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.admin-content-scroll::-webkit-scrollbar { width: 4px; }
.admin-content-scroll::-webkit-scrollbar-track { background: transparent; }
.admin-content-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
}
.admin-content-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.14);
}

/* KPI card hover lift */
.admin-kpi-card {
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.admin-kpi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59,130,246,0.2) !important;
}

/* Live dot pulse */
.admin-live-dot {
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}

/* ── How It Works ───────────────────────────────────────── */
.hiw-step-inner {
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}
.hiw-step-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.07) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.hiw-step:hover .hiw-step-inner {
    border-color: rgba(59,130,246,0.28);
    background: rgba(255,255,255,0.03);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.1);
}
.hiw-step:hover .hiw-step-inner::before { opacity: 1; }

.hiw-step-icon {
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hiw-step:hover .hiw-step-icon {
    background: rgba(59,130,246,0.18) !important;
    border-color: rgba(59,130,246,0.45) !important;
    box-shadow: 0 0 24px rgba(59,130,246,0.3);
}

.hiw-connector-line {
    position: absolute;
    top: 68px;
    left: calc(16.666% + 42px);
    right: calc(16.666% + 42px);
    height: 1px;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(59,130,246,0.45) 0,
        rgba(59,130,246,0.45) 6px,
        transparent 6px,
        transparent 16px
    );
    pointer-events: none;
}

/* ── Contact / Lead Gen Section ─────────────────────────── */
.contact-form-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 22px;
    padding: 36px 36px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.035);
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(59,130,246,0.6) 50%, transparent 95%);
    pointer-events: none;
}
.contact-form-card::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 200px;
    background: radial-gradient(ellipse at top center, rgba(59,130,246,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.contact-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.contact-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.contact-input::placeholder { color: rgba(255,255,255,0.2); }
.contact-input:hover { border-color: rgba(255,255,255,0.18); }
.contact-input:focus {
    border-color: rgba(59,130,246,0.6);
    background: rgba(255,255,255,0.055);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.contact-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 38px;
    cursor: pointer;
}

.contact-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.contact-trust-item:hover .contact-trust-icon {
    background: rgba(59,130,246,0.18);
    box-shadow: 0 0 16px rgba(59,130,246,0.2);
}

/* ── FAQ Accordion ── */
.faq-item {
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    background: rgba(255,255,255,0.045) !important;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.12);
}
.faq-trigger {
    cursor: pointer;
    transition: background 0.2s ease;
}
.faq-trigger:hover {
    background: rgba(255,255,255,0.02);
}
.faq-body {
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-chevron {
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, border-color 0.2s ease;
    color: rgba(156,163,175,1);
}
.faq-trigger[aria-expanded="true"] .faq-chevron {
    background: rgba(59,130,246,0.12) !important;
    border-color: rgba(59,130,246,0.3) !important;
    color: #3B82F6;
}
.faq-trigger[aria-expanded="true"] .faq-num {
    background: rgba(59,130,246,0.2) !important;
    box-shadow: 0 0 14px rgba(59,130,246,0.25);
}

/* ── Final CTA ── */
.cta-final-btn-primary {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-final-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.6), 0 16px 48px rgba(59,130,246,0.45) !important;
}
.cta-final-btn-primary:active {
    transform: translateY(0);
}
.cta-final-btn-ghost {
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cta-final-btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,255,255,0.2) !important;
}
.cta-final-btn-ghost:active {
    transform: translateY(0);
}

/* ── Footer ── */
.footer-nav-link {
    position: relative;
    display: inline-block;
}
.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3B82F6;
    transition: width 0.22s ease;
}
.footer-nav-link:hover::after {
    width: 100%;
}
.footer-social {
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer-social:hover {
    transform: translateY(-3px);
    background: rgba(59,130,246,0.12) !important;
    border-color: rgba(59,130,246,0.35) !important;
}
.footer-contact-link span {
    transition: background 0.2s ease, border-color 0.2s ease;
}
