/* ============================================
   REVAYA - Clean Light Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --bg-dark: #0c0f1a;
    --text-primary: #0c0f1a;
    --text-secondary: #4a5068;
    --text-muted: #8b90a0;
    --accent: #2d5bff;
    --accent-light: #5b7fff;
    --accent-ultra-light: rgba(45, 91, 255, 0.06);
    --accent-glow: rgba(45, 91, 255, 0.1);
    --accent-warm: #6c3bff;
    --gradient-primary: linear-gradient(135deg, #2d5bff 0%, #6c3bff 100%);
    --gradient-text: linear-gradient(135deg, #0c0f1a 0%, #2d5bff 100%);
    --border: rgba(12, 15, 26, 0.08);
    --border-hover: rgba(12, 15, 26, 0.15);
    --shadow-sm: 0 1px 3px rgba(12, 15, 26, 0.04);
    --shadow-md: 0 4px 20px rgba(12, 15, 26, 0.06);
    --shadow-lg: 0 12px 40px rgba(12, 15, 26, 0.08);
    --shadow-xl: 0 24px 60px rgba(12, 15, 26, 0.1);
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* ---- Grain Overlay (subtle on light) ---- */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ---- Cursor Glow ---- */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 91, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ---- Scroll Reveal ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 clamp(20px, 4vw, 60px);
    z-index: 1000;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}

#mainHeader.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

/* Header over dark hero */
#mainHeader.over-hero .nav-menu li a {
    color: rgba(255, 255, 255, 0.7);
}

#mainHeader.over-hero .nav-menu li a:hover,
#mainHeader.over-hero .nav-menu li a.active {
    color: #ffffff;
}

#mainHeader.over-hero .mobile-toggle span {
    background: #ffffff;
}

#mainHeader nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

.logo:hover img {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.4s var(--ease-out-expo);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--text-primary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 1px;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

.mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.language-switcher button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.language-switcher button:hover { opacity: 0.8; transform: scale(1.1); }
.language-switcher button.active { opacity: 1; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    color: var(--accent);
    background: var(--accent-ultra-light);
    padding-left: 24px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px clamp(20px, 5vw, 80px) 80px;
    background: #070a14;
}

/* Background image with slow Ken Burns zoom */
.hero-bg-image {
    position: absolute;
    inset: -20px;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
    animation: heroZoom 30s ease-in-out infinite alternate;
    filter: brightness(0.5) saturate(1.2);
    will-change: transform;
}

@keyframes heroZoom {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-0.5%, -0.5%); }
}

/* Twinkling city lights effect */
.hero-lights-twinkle {
    position: absolute;
    inset: -20px;
    z-index: 0;
    mix-blend-mode: soft-light;
    pointer-events: none;
    background:
        radial-gradient(1px 1px at 20% 72%, rgba(255, 220, 150, 0.9), transparent),
        radial-gradient(1px 1px at 35% 68%, rgba(255, 240, 180, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 55% 75%, rgba(200, 220, 255, 0.85), transparent),
        radial-gradient(1px 1px at 70% 65%, rgba(255, 200, 130, 0.9), transparent),
        radial-gradient(1px 1px at 42% 70%, rgba(255, 255, 200, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 60% 72%, rgba(180, 200, 255, 0.8), transparent),
        radial-gradient(1px 1px at 25% 66%, rgba(255, 230, 160, 0.75), transparent),
        radial-gradient(1px 1px at 80% 70%, rgba(255, 210, 140, 0.85), transparent),
        radial-gradient(1.5px 1.5px at 48% 67%, rgba(220, 240, 255, 0.7), transparent),
        radial-gradient(1px 1px at 15% 74%, rgba(255, 250, 200, 0.8), transparent);
    animation: twinkle1 4s ease-in-out infinite alternate;
}

.hero-lights-twinkle::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1.5px 1.5px at 30% 71%, rgba(255, 200, 100, 0.9), transparent),
        radial-gradient(1px 1px at 50% 69%, rgba(200, 230, 255, 0.85), transparent),
        radial-gradient(1px 1px at 65% 73%, rgba(255, 240, 170, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 38% 66%, rgba(255, 220, 130, 0.75), transparent),
        radial-gradient(1px 1px at 75% 68%, rgba(180, 210, 255, 0.85), transparent),
        radial-gradient(1px 1px at 22% 70%, rgba(255, 255, 180, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 58% 74%, rgba(255, 200, 120, 0.8), transparent),
        radial-gradient(1px 1px at 45% 65%, rgba(230, 245, 255, 0.75), transparent);
    animation: twinkle2 5s ease-in-out 1s infinite alternate;
}

.hero-lights-twinkle::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2px 2px at 33% 69%, rgba(255, 230, 150, 0.9), transparent),
        radial-gradient(1px 1px at 52% 73%, rgba(190, 220, 255, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 68% 67%, rgba(255, 210, 130, 0.85), transparent),
        radial-gradient(1px 1px at 40% 74%, rgba(255, 250, 190, 0.7), transparent),
        radial-gradient(1px 1px at 18% 68%, rgba(255, 220, 160, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 72% 71%, rgba(200, 230, 255, 0.75), transparent);
    animation: twinkle3 6s ease-in-out 2s infinite alternate;
}

@keyframes twinkle1 {
    0% { opacity: 0.3; }
    25% { opacity: 0.8; }
    50% { opacity: 0.4; }
    75% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes twinkle2 {
    0% { opacity: 0.6; }
    30% { opacity: 0.2; }
    60% { opacity: 0.7; }
    100% { opacity: 0.3; }
}

@keyframes twinkle3 {
    0% { opacity: 0.4; }
    35% { opacity: 0.85; }
    65% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Multi-layer gradient overlay for depth + readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(7, 10, 20, 0.85) 0%,
            rgba(7, 10, 20, 0.5) 35%,
            rgba(7, 10, 20, 0.4) 55%,
            rgba(7, 10, 20, 0.75) 85%,
            rgba(7, 10, 20, 0.95) 100%
        ),
        linear-gradient(135deg,
            rgba(45, 91, 255, 0.12) 0%,
            transparent 50%,
            rgba(108, 59, 255, 0.08) 100%
        );
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 10%, rgba(45, 91, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(108, 59, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 90%, rgba(45, 91, 255, 0.06) 0%, transparent 50%);
    z-index: 2;
    animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.05) translate(-2%, 1%); }
    100% { transform: scale(1) translate(1%, -1%); }
}

.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
}

.h-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.h-line:nth-child(1) { top: 20%; }
.h-line:nth-child(2) { top: 40%; }
.h-line:nth-child(3) { top: 60%; }
.h-line:nth-child(4) { top: 80%; }
.h-line:nth-child(5) { top: 95%; }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 860px;
    width: 100%;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.eyebrow-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-light);
    border-radius: 1px;
}

.eyebrow-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-light);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #5b7fff 0%, #a78bfa 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 44px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

/* Hero-specific button overrides */
.hero .btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(45, 91, 255, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 91, 255, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-ultra-light);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--accent-light);
    animation: scrollPulse 2s var(--ease-out-expo) infinite;
}

@keyframes scrollPulse {
    0% { top: -40%; }
    100% { top: 110%; }
}

/* ============================================
   SERVICES / OFFERINGS SECTION
   ============================================ */
.offerings-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.offerings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.offering-card-highlight {
    border: 1.5px solid var(--accent);
    position: relative;
}

.offering-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.offering-card:hover {
    border-color: rgba(45, 91, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.offering-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.offering-card:hover::after {
    opacity: 1;
}

.offering-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-ultra-light);
    margin-bottom: 28px;
    transition: all 0.4s var(--ease-out-expo);
}

.offering-card:hover .offering-icon {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.05);
}

.offering-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.offering-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.offering-features {
    list-style: none;
}

.offering-features li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.offering-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.3;
}

.offering-features li:last-child {
    margin-bottom: 0;
}

.offering-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s var(--ease-out-expo), color 0.3s;
}

.offering-link:hover {
    gap: 8px;
    color: var(--accent-warm);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 18px;
    border: 1px solid rgba(45, 91, 255, 0.2);
    border-radius: 100px;
    background: var(--accent-ultra-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.title-accent {
    width: 48px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ============================================
   IMPLEMENTATION SECTION
   ============================================ */
.implementation-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.implementation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.implementation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number-bg {
    position: absolute;
    top: -10px;
    right: -5px;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(45, 91, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.step-card:hover .step-number-bg {
    color: rgba(45, 91, 255, 0.07);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: var(--accent-ultra-light);
    border: 1px solid rgba(45, 91, 255, 0.12);
    flex-shrink: 0;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 0.95rem;
    font-weight: 400;
}

.step-list {
    list-style: none;
}

.step-list li {
    color: var(--text-secondary);
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

.step-list li:last-child {
    margin-bottom: 0;
}

.implementation-cta-container {
    text-align: center;
    margin-top: 64px;
}

/* ============================================
   READY SOLUTION SECTION
   ============================================ */
.ready-solution-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.ready-solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ready-solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ready-solution-layout.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.ready-solution-layout.reverse > * {
    direction: ltr;
}

/* Mentoring section */
.mentoring-section,
.implementation-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.mentoring-section::before,
.implementation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ready-solution-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 20px 0 32px;
    font-weight: 400;
}

.ready-solution-list {
    list-style: none;
    margin-bottom: 36px;
}

.ready-solution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.ready-solution-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.solution-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.solution-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out-expo);
}

.solution-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 91, 255, 0.2);
}

.mini-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.solution-mini-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.solution-mini-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================
   READY SOLUTION IMAGE
   ============================================ */
.ready-solution-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* ============================================
   VISUAL CARDS — Roadmap & Dashboard
   ============================================ */
.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--accent-ultra-light), transparent 55%);
    pointer-events: none;
}

.visual-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.visual-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-ultra-light);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.visual-card-status {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.visual-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    position: relative;
}

.visual-card-footer .footer-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    font-weight: 500;
}

.visual-card-footer strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* Roadmap */
.roadmap-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.roadmap-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.roadmap-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    width: 2px;
    height: calc(100% + 18px - 28px);
    background: var(--border);
}

.roadmap-step.is-done:not(:last-child)::after {
    background: var(--accent);
}

.step-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text-muted);
    z-index: 1;
    transition: all 0.4s var(--ease-out-expo);
}

.roadmap-step.is-done .step-marker {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.roadmap-step.is-current .step-marker {
    border-color: var(--accent);
    background: var(--accent-ultra-light);
}

.step-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
    animation: step-pulse-anim 1.8s ease-in-out infinite;
}

.step-pulse::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.25;
    animation: step-pulse-ring 1.8s ease-out infinite;
}

@keyframes step-pulse-anim {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes step-pulse-ring {
    0% { transform: scale(0.8); opacity: 0.35; }
    100% { transform: scale(1.8); opacity: 0; }
}

.step-content {
    padding-top: 2px;
}

.step-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.98rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.step-content span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.roadmap-step.is-current .step-content strong {
    color: var(--accent);
}

/* Dashboard */
.metric-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.metric-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.metric-head strong {
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 600;
}

.metric-delta {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 999px;
}

.metric-delta.positive {
    color: var(--accent);
    background: var(--accent-ultra-light);
}

.metric-delta.negative {
    color: #d9445f;
    background: rgba(217, 68, 95, 0.08);
}

.metric-bar {
    height: 6px;
    border-radius: 999px;
    background: var(--accent-ultra-light);
    overflow: hidden;
}

.metric-bar > span {
    display: block;
    height: 100%;
    width: var(--fill, 0%);
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    border-radius: 999px;
    animation: metric-fill 1.4s var(--ease-out-expo) forwards;
    transform-origin: left center;
}

@keyframes metric-fill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1cc16b;
    position: relative;
    flex-shrink: 0;
}

.status-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #1cc16b;
    opacity: 0.3;
    animation: step-pulse-ring 2s ease-out infinite;
}

.visual-card.visual-dashboard .visual-card-badge {
    background: rgba(28, 193, 107, 0.1);
    color: #0f9c54;
}

.agent-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--accent-ultra-light);
    border-radius: var(--radius-md);
}

.agent-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.agent-pill strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.agent-pill span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #0f9c54;
    font-weight: 500;
}

.agent-pill span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1cc16b;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    border-color: rgba(45, 91, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ---- Featured Pro Card ---- */
.pricing-card-featured {
    background: var(--bg-dark);
    border-color: rgba(45, 91, 255, 0.25);
    padding: 48px 36px;
    box-shadow:
        0 12px 48px rgba(45, 91, 255, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transform: scale(1.04);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow:
        0 20px 60px rgba(45, 91, 255, 0.2),
        0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 91, 255, 0.4);
}

.pricing-card-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 0%, rgba(45, 91, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 100%, rgba(108, 59, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-card-featured .pricing-plan-name {
    color: #ffffff;
}

.pricing-card-featured .pricing-plan-desc {
    color: rgba(255, 255, 255, 0.45);
}

.pricing-card-featured .pricing-currency,
.pricing-card-featured .pricing-amount {
    color: #ffffff;
}

.pricing-card-featured .pricing-period {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-card-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pricing-card-featured .pricing-features li i {
    color: var(--accent-light);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: var(--gradient-primary);
    padding: 6px 16px;
    border-radius: 100px;
    border: none;
    box-shadow: 0 2px 12px rgba(45, 91, 255, 0.4);
}

.pricing-header {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-plan-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.pricing-plan-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-currency {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 2px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
    border-bottom: 1px solid rgba(12, 15, 26, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 11px;
    margin-top: 5px;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 16px 32px;
}

.pricing-card-featured .pricing-btn {
    background: #ffffff;
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pricing-card-featured .pricing-btn::before {
    display: none;
}

.pricing-card-featured .pricing-btn:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

    .pricing-card-featured {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .pricing-card-featured {
        padding: 40px 32px;
        max-width: 440px;
    }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    color: #ffffff;
}

.cta-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(45, 91, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(108, 59, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.cta-final-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.cta-final-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.btn-cta-final {
    font-size: 15px;
    padding: 18px 44px;
    background: #ffffff;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-final::before {
    display: none;
}

.btn-cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: #f0f2f5;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-dark);
    padding: 72px 0 40px 0;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    opacity: 0.85;
}

.footer-nav {
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav h4 {
    font-family: var(--font-display);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s var(--ease-out-expo);
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 40px 0 24px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    font-weight: 400;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 30px;
}

.footer-office {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
}

.footer-office i {
    color: var(--accent-light);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 12px;
    opacity: 0.7;
}

.footer-office strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-office a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-office a:hover {
    color: var(--accent-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    font-size: 16px;
}

.footer-social-icon:hover {
    color: #ffffff;
    border-color: rgba(45, 91, 255, 0.4);
    background: rgba(45, 91, 255, 0.15);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .offerings-grid,
    .implementation-steps {
        grid-template-columns: 1fr 1fr;
    }

    .ready-solution-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ready-solution-layout.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-elevated);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 28px;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid var(--border);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        font-size: 16px;
        color: var(--text-primary) !important;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 8px 0 0 16px;
        min-width: 0;
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 80px;
    }

    .offerings-section,
    .implementation-section,
    .ready-solution-section,
    .cta-final-section {
        padding: 80px 0;
    }

    .solution-card-stack {
        grid-template-columns: 1fr;
    }

    .offerings-grid,
    .implementation-steps {
        grid-template-columns: 1fr;
    }

    .step-card,
    .offering-card {
        padding: 36px 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 32px;
    }

    .footer-addresses {
        padding-left: 0;
    }

    .faq-impact-phrase {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-final-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   FAQ (home)
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(45, 91, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.3s;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: var(--accent-ultra-light);
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.faq-icon {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.3s var(--ease-out-expo);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-question[aria-expanded="true"] .faq-icon-wrap {
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .faq-section { padding: 80px 0; }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer.active {
        padding: 0 20px 18px 20px;
    }
}
