/* ============================================================
   PREVYRA — PREMIUM REDESIGN v2.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    /* Brand Colors */
    --primary: #00A3FF;
    --primary-dark: #007ACC;
    --primary-light: #E0F2FE;
    --primary-glow: rgba(0, 163, 255, 0.35);
    --accent: #38BDF8;
    --accent-cyan: #22D3EE;
    --accent-emerald: #10B981;

    /* Text */
    --text-dark: #0F172A;
    --text-body: #475569;
    --text-muted: #94A3B8;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #F8FAFF;
    --bg-subtle: #F1F5F9;
    --border: #E2E8F0;
    --border-light: rgba(226, 232, 240, 0.6);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.12), 0 10px 24px rgba(0,0,0,0.06);
    --shadow-primary: 0 10px 40px var(--primary-glow);

    /* Layout */
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.18s ease;
}

/* Dark Theme Tokens */
body.dark-theme {
    --text-dark: #F1F5F9;
    --text-body: #94A3B8;
    --text-muted: #64748B;
    --bg-white: #080C14;
    --bg-light: #0F172A;
    --bg-subtle: #1E293B;
    --border: #1E293B;
    --border-light: rgba(30, 41, 59, 0.8);
    --primary-light: #1E1B4B;
    background-color: var(--bg-white);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

p {
    font-size: 1.05rem;
    color: var(--text-body);
    transition: color 0.4s ease;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    position: relative;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #007ACC 100%);
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(0, 163, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -8px rgba(0, 163, 255, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 16px;
}

.btn-block { width: 100%; }

.btn-massive {
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 0.75rem;
    border-radius: 14px;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #007ACC 100%);
    color: #fff;
    box-shadow: 0 12px 30px -10px rgba(0, 163, 255, 0.5);
}

.btn-gradient:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 18px 45px -12px rgba(0, 163, 255, 0.6);
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.header {
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.4s ease;
}

body:not(.dark-theme) .header {
    background: rgba(9, 14, 27, 0.92);
}

.header.scrolled {
    background: rgba(8, 12, 20, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-crop {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 163, 255, 0.5));
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-wrapper-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-wrapper-footer .logo-img { height: 38px; }

.header-center {
    display: flex;
    gap: 2.5rem;
}

.header-right {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 0.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 1.25rem;
}

.icon-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.icon-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.lang-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.header-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
    letter-spacing: -0.01em;
}
.header-link:hover { color: #fff; }

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 820px) {
    .header-center,
    .header-right { display: none; }
    .mobile-menu { display: block; }
}

/* ============================================================
   5. HERO SECTION — PREMIUM REDESIGN
   ============================================================ */
.hero {
    padding: 6rem 0 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animated gradient background mesh */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 163, 255, 0.12) 0%, transparent 65%);
    animation: hero-glow-1 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.10) 0%, transparent 65%);
    animation: hero-glow-2 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes hero-glow-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 3%) scale(1.1); }
}

@keyframes hero-glow-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-4%, -3%) scale(1.08); }
}

/* Floating grid overlay */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 163, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.6;
}

body.dark-theme .hero-grid-bg {
    background-image:
        linear-gradient(rgba(0, 163, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 255, 0.07) 1px, transparent 1px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: auto;
}

.hero .container {
    max-width: 1280px;
    padding: 0 2rem;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

/* Hero badge — Signature Premium Style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 163, 255, 0.15);
    border-radius: 100px;
    padding: 0.6rem 1.5rem 0.6rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2.25rem;
    width: fit-content;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    box-shadow: 
        0 4px 20px rgba(0, 163, 255, 0.08),
        inset 0 0 10px rgba(0, 163, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

body.dark-theme .hero-badge {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(0, 163, 255, 0.3);
    color: #a5b4fc;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-dot::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    animation: badge-pulse 2s infinite radial;
}

@keyframes badge-pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 900px) {
    .hero-badge { margin-left: auto; margin-right: auto; }
}

.hero-text h1 {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    animation: fade-in-up 0.7s 0.1s ease both;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
    animation: fade-in-up 0.7s 0.2s ease both;
}

@media (max-width: 900px) {
    .hero-text p { margin: 0 auto 2.5rem; }
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fade-in-up 0.7s 0.3s ease both;
}

@media (max-width: 900px) {
    .hero-cta-group { justify-content: center; }
}

.hero-cta-secondary {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}
.hero-cta-secondary:hover { color: var(--primary); }
/* Hero Impact Teaser (Above Marquee) */
.hero-impact-teaser {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.hero-impact-teaser p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.hero-impact-teaser p span {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .hero-impact-teaser { margin-top: 3rem; padding: 0 1.5rem; }
    .hero-impact-teaser p { font-size: 1rem; }
    .hero-impact-teaser p span { font-size: 0.9rem; }
}

.hero-marquee-bottom {
    margin-top: auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 163, 255, 0.06);
    background: linear-gradient(to bottom, transparent, rgba(0, 163, 255, 0.02));
}

@media (max-width: 900px) {
    .hero-market-info { text-align: center; }
    .hero-mini-badges { justify-content: center; }
    .hero-market-info .trust-text { margin-left: auto; margin-right: auto; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    animation: fade-in-up 0.7s 0.4s ease both;
}

@media (max-width: 900px) {
    .hero-stats { justify-content: center; }
}

@media (max-width: 500px) {
    .hero-stats { gap: 1rem; flex-wrap: wrap; }
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-dark);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    animation: fade-in-scale 0.8s 0.2s ease both;
}

@keyframes fade-in-scale {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-visual-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.22) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.hero-image {
    max-width: 1000px; /* Adjusted size */
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    animation: float-3d 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(0, 163, 255, 0.15));
    transition: transform 0.3s ease;
}

@keyframes float-3d {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

body.dark-theme .hero-image {
    mix-blend-mode: normal;
    filter: drop-shadow(0 30px 60px rgba(0, 163, 255, 0.4)) brightness(1.2); /* Updated filter */
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   6. TRUST BAR (MARQUEE)
   ============================================================ */
.trust {
    padding: 3.5rem 0 3rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trust-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll-left 28s linear infinite;
    width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    transition: all 0.3s ease;
    filter: grayscale(1) opacity(0.5);
}

.marquee-item:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.marquee-logo {
    max-height: 45px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   7. METHODOLOGY TABS
   ============================================================ */
.methodology {
    padding: 4rem 0 8rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}

body.dark-theme .methodology {
    background: #080C14;
}

/* Subtle background blobs for methodology */
.methodology::before,
.methodology::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 60%;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.methodology::before {
    top: -10%; left: -10%;
    background: var(--primary);
    animation: blob-float 20s infinite alternate;
}

.methodology::after {
    bottom: -10%; right: -10%;
    background: #a78bfa;
    animation: blob-float 25s infinite alternate-reverse;
}

@keyframes blob-float {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(10%, 15%) scale(1.1); }
}

.methodology-header {
    max-width: 950px;
    margin: 0 0 3rem 0;
    position: relative;
    z-index: 1;
}

.methodology-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-dark) 20%, var(--primary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
}

.methodology-header p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 880px;
    opacity: 0.9;
    /* Force 2 lines if possible on larger screens */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 163, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.04);
    backdrop-filter: blur(4px);
}

body.dark-theme .section-chip {
    background: rgba(0, 163, 255, 0.15);
    border-color: rgba(0, 163, 255, 0.3);
}

.tabs-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tabs-nav {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 0.75rem;
    margin-bottom: 4rem;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 1.25rem;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

body.dark-theme .tabs-nav {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
    padding: 1.4rem 3.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 163, 255, 0.45);
    transform: scale(1.05);
}

body.dark-theme .tab-btn.active {
    background: var(--primary);
    box-shadow: 0 12px 24px var(--primary-glow);
}

.tab-pane {
    display: none;
    animation: tab-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes tab-reveal {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.tab-pane.active { display: block; }

.tab-pane-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08);
}

body.dark-theme .tab-pane-grid {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 820px) {
    .tab-pane-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.tab-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.tab-text p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-body);
    opacity: 0.9;
}

.tab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tab-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
}

.tab-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 163, 255, 0.2);
}

.tab-image {
    display: flex;
    justify-content: center;
    perspective: 1500px;
}

.tab-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    object-fit: contain;
    padding: 1rem;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.35), 0 10px 30px -10px var(--primary-glow);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotateY(-15deg) rotateX(8deg);
}

body.dark-theme .tab-image img {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.4);
}

.tab-image img:hover {
    transform: rotateY(0) rotateX(0) translateY(-15px) scale(1.05);
    box-shadow: 0 60px 120px -25px rgba(0, 163, 255, 0.35), 0 20px 50px -15px var(--primary-glow);
}

/* ============================================================
   8. VALUE PROP STEPS
   ============================================================ */
.value-prop-steps-section {
    padding: 1.5rem 0;
    background: linear-gradient(160deg, #F8FAFF 0%, #EEF2FF 50%, #F5F3FF 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.value-prop-steps-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(91,79,255,0.06) 0%, transparent 65%);
    pointer-events: none;
}

body.dark-theme .value-prop-steps-section {
    background: linear-gradient(160deg, #0F172A 0%, #0D1226 50%, #130F23 100%);
}

body.dark-theme .value-prop-steps-section::before {
    background: radial-gradient(ellipse, rgba(91,79,255,0.10) 0%, transparent 65%);
}

.value-prop-grid {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    align-items: center;
    text-align: center;
    position: relative;
}

.vp-text {
    max-width: 660px;
}

.vp-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    font-weight: 800;
}

.vp-header-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
    margin-bottom: 1.25rem;
    width: 100%;
}

.vp-text {
    max-width: 100%;
}

.vp-text h2 {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.vp-text p {
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0;
    line-height: 1.5;
    color: var(--text-body);
}

.vp-note-wrapper {
    display: flex;
    align-items: center;
}

.vp-note {
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.05) 0%, rgba(0, 163, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 163, 255, 0.15);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 163, 255, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.vp-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 6px 0 0 6px;
}

.vp-note i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(0, 163, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 163, 255, 0.2);
    animation: light-pulse 3s infinite ease-in-out;
}

@keyframes light-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px var(--primary-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 12px var(--primary-glow)); }
}

.vp-note span {
    line-height: 1.65;
    font-weight: 500;
}

.vp-note strong {
    color: var(--primary);
    font-weight: 800;
}

body.dark-theme .vp-note {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(0, 163, 255, 0.3);
    color: #e2e8f0 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

body.dark-theme .vp-note i {
    background: rgba(0, 163, 255, 0.2);
}

.vp-steps-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.vp-step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-white);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 25px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.vp-step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vp-step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 163, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 163, 255, 0.1);
}

.vp-step-card:hover::after {
    opacity: 1;
}

body.dark-theme .vp-step-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    position: relative;
    box-shadow: 0 12px 24px var(--primary-glow);
    z-index: 2;
}

.step-num-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 2px solid var(--bg-white);
}

body.dark-theme .step-num-badge {
    border-color: var(--bg-subtle);
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    z-index: 2;
    width: 100%;
}

.step-info h3 {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
}

.step-info p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-body);
}

.step-outcome {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(0, 163, 255, 0.06);
    padding: 0.6rem 1.15rem;
    border-radius: 100px;
    margin-top: auto;
    width: fit-content;
    border: 1px solid rgba(0, 163, 255, 0.12);
    transition: 0.3s ease;
}

.vp-step-card:hover .step-outcome {
    background: var(--primary);
    color: #fff;
    transform: scale(1.03);
}

body.dark-theme .step-outcome {
    background: rgba(0, 163, 255, 0.12);
    color: #a5b4fc;
    border-color: rgba(0, 163, 255, 0.2);
}

@media (max-width: 1150px) {
    .vp-header-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .vp-text p { margin: 0 auto; }
    .vp-note { margin: 0 auto; max-width: 600px; }
}

@media (max-width: 950px) {
    .vp-steps-list {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
        gap: 2rem;
    }
    .vp-step-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 500px) {
    .vp-step-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================================
   9. DATA / STATS SECTION (PREMIUM)
   ============================================================ */
.data-heavy-section {
    padding: 10rem 0;
    background: #020617; /* Deepest blue/black */
    color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

/* Cinematic background effects */
.data-heavy-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 163, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Floating light streak */
.data-heavy-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.3), transparent);
    transform: rotate(-15deg);
    filter: blur(80px);
    z-index: 0;
    animation: flow-light 15s infinite linear;
}

@keyframes flow-light {
    0% { transform: rotate(-15deg) translateY(-200px); }
    100% { transform: rotate(-15deg) translateY(200px); }
}

.data-heavy-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.data-header {
    margin-bottom: 3rem;
}

.data-header h2 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.source-text {
    font-size: 0.82rem;
    color: #64748B;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.data-group {
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.data-group:first-of-type { border-top: none; padding-top: 0; }

.group-title {
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.group-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.data-grid {
    display: grid;
    gap: 1rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
    .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.data-card {
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.data-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.6;
}

.data-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 163, 255, 0.1);
}

/* Card Stat Icon */
.data-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

/* Keep existing card color classes */
.bg-red-solid { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.15); }
.bg-red-solid::before { background: linear-gradient(90deg, transparent, #EF4444, transparent); opacity: 0.3; }

.bg-orange-solid { background: rgba(249, 115, 22, 0.08); border: 1px solid rgba(249, 115, 22, 0.15); }
.bg-orange-solid::before { background: linear-gradient(90deg, transparent, #F97316, transparent); opacity: 0.3; }

.bg-brown-solid { background: rgba(234, 179, 8, 0.08); border: 1px solid rgba(234, 179, 8, 0.15); }
.bg-brown-solid::before { background: linear-gradient(90deg, transparent, #EAB308, transparent); opacity: 0.3; }

.bg-gray-solid { background: rgba(148, 163, 184, 0.08); border: 1px solid rgba(148, 163, 184, 0.15); }
.bg-gray-solid::before { background: linear-gradient(90deg, transparent, #94A3B8, transparent); opacity: 0.3; }

.data-highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -0.05em;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.border-red .data-highlight { color: #FC8181; }
.border-orange .data-highlight { color: #FBD38D; }
.border-brown .data-highlight { color: #F6AD55; }
.border-gray .data-highlight { color: #A0AEC0; }

.text-md .data-highlight,
.data-highlight.text-md {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.data-main {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    line-height: 1.4;
}

.data-source {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.data-conclusion {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(0, 163, 255, 0.25);
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.data-conclusion::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 163, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.data-conclusion h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #F87171;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.data-conclusion p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================
   10. TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-white);
}

.testimonials > .container > h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.subtitle-test {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 163, 255, 0.2);
}

body.dark-theme .testimonial-box {
    background: var(--bg-subtle);
    border-color: rgba(0, 163, 255, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-box p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
    flex: 1;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.author-info strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* ============================================================
   11. ECOSYSTEM (LOGOS)
   ============================================================ */
.ecosystem-section {
    padding: 5rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ecosystem-section .trust-text {
    margin-bottom: 2.5rem;
    font-size: 0.82rem;
}

.ecosystem-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.eco-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.eco-logo-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

body.dark-theme .eco-logo-img {
    filter: grayscale(100%) opacity(0.4) brightness(1.6);
}
body.dark-theme .eco-logo-img:hover {
    filter: grayscale(0%) opacity(0.9) brightness(1.1);
}

/* ============================================================
   12. CTA FORM SECTION
   ============================================================ */
.cta-final {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 55%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(0, 163, 255, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

body.dark-theme .cta-final::before {
    background: radial-gradient(ellipse, rgba(0, 163, 255, 0.10) 0%, transparent 65%);
}

.cta-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

@media (max-width: 900px) {
    .cta-form-container { grid-template-columns: 1fr; gap: 3rem; }
}

.cta-form-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.15;
}

.cta-form-text p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-benefits i {
    color: #10B981;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.2));
}
.form-benefits span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.cta-form-box.vibrant-form {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-form-box.vibrant-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

body.dark-theme .cta-form-box.vibrant-form {
    background: var(--bg-subtle);
    border-color: rgba(0, 163, 255, 0.15);
}

.cta-form-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.input-group input {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.4s;
    outline: none;
    width: 100%;
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.12);
    background: var(--bg-white);
}

body.dark-theme .input-group input {
    background: var(--bg-light);
    border-color: rgba(0, 163, 255, 0.2);
    color: var(--text-dark);
}

body.dark-theme .input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.2);
}

.input-group input::placeholder { color: var(--text-muted); }

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.form-disclaimer a {
    color: var(--primary);
    font-weight: 500;
}
.form-disclaimer a:hover { text-decoration: underline; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
    padding: 4rem 0 2.5rem;
    background: #080C14;
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 700px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand .logo-text { color: rgba(255,255,255,0.9); }

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    max-width: 300px;
    line-height: 1.65;
    margin-top: 0.75rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    transition: color 0.2s;
    display: block;
    margin-bottom: 1.25rem;
}
.contact-email:hover { color: var(--primary); }

.social-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.875rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.08);
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-vertical-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-vertical-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    font-weight: 500;
}
.footer-vertical-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

/* ============================================================
   14. SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.counter-value {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   15. MOBILE RESPONSIVE POLISH
   ============================================================ */

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(8, 12, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open { transform: translateY(0); }

.mobile-nav-drawer a {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-drawer a:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.5rem 0;
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.75rem !important; }
    .btn-lg { font-size: 0.95rem; padding: 0.9rem 1.5rem; }
    .hero { padding: 7rem 0 4rem; min-height: auto; }
    .methodology, .value-prop-steps-section, .testimonials, .cta-final { padding: 5rem 0; }
    .cta-form-box.vibrant-form { padding: 1.75rem; }
    .data-highlight { font-size: 2rem !important; }
    .vp-step-card { padding: 1.25rem; }
}

/* ============================================================
   16. MISCELLANEOUS
   ============================================================ */
::selection {
    background: rgba(0, 163, 255, 0.25);
    color: var(--text-dark);
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}