/* ============================================
   JettSEO.ch — Design System
   ============================================
   Table of Contents:
   1.  Design Tokens / Custom Properties
   2.  Reset & Base Styles
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Header & Navigation
   7.  Mobile Menu
   8.  Hero Sections
   9.  Sections & Containers
   10. Trust Strip
   11. Service Cards
   12. Industry Cards
   13. Process Section
   14. Case Study Cards
   15. Video Testimonials
   16. Review Cards
   17. Market Coverage
   18. FAQ Accordion
   19. Forms
   20. CTA Section
   21. Footer
   22. Breadcrumbs
   23. Cookie Consent
   24. Tags & Badges
   25. Stats
   26. Feature Items
   27. Assessment Layout
   28. Animations
   29. Responsive
   ============================================ */

/* ============================================
   1. DESIGN TOKENS
   ============================================ */
:root {
    /* Colors */
    --color-primary: #0051FF;
    --color-primary-dark: #003FCC;
    --color-primary-light: #3378FF;
    --color-gradient-start: #0051FF;
    --color-gradient-end: #6EFFF9;
    --color-accent: #80D8FF;
    --color-dark: #0B0C20;
    --color-dark-lighter: #1a1b3a;
    --color-dark-tertiary: #2a2b4a;
    --color-text: #0B0C20;
    --color-text-secondary: #5A5B6A;
    --color-text-light: #8A8B9A;
    --color-text-inverse: #FFFFFF;
    --color-white: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F7F8FC;
    --color-border: #E5E7EB;
    --color-border-light: #F0F1F5;
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
    --gradient-text: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));

    /* Fonts */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* Font Sizes — responsive clamp */
    --text-xs: clamp(0.6875rem, 0.65rem + 0.15vw, 0.75rem);
    --text-sm: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
    --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
    --text-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
    --text-xl: clamp(1.1875rem, 1.1rem + 0.4vw, 1.3125rem);
    --text-2xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-3xl: clamp(1.5rem, 1.25rem + 1.2vw, 1.875rem);
    --text-4xl: clamp(1.875rem, 1.5rem + 1.8vw, 2.25rem);
    --text-5xl: clamp(2.25rem, 1.7rem + 2.5vw, 3rem);
    --text-6xl: clamp(2.75rem, 2rem + 3.5vw, 3.75rem);

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.15;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;

    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --space-section: clamp(80px, 10vw, 120px);
    --space-section-sm: clamp(48px, 6vw, 72px);

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-wide: 1400px;
    --container-padding: clamp(1rem, 3vw, 2rem);

    /* Header */
    --header-height: 72px;
    --header-height-mobile: 64px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(11,12,32,0.04);
    --shadow-sm: 0 1px 3px rgba(11,12,32,0.06);
    --shadow-md: 0 4px 12px rgba(11,12,32,0.08);
    --shadow-lg: 0 8px 30px rgba(11,12,32,0.1);
    --shadow-xl: 0 16px 50px rgba(11,12,32,0.12);
    --shadow-2xl: 0 24px 64px rgba(11,12,32,0.16);
    --shadow-glow: 0 0 40px rgba(0,81,255,0.15);
    --shadow-blue: 0 8px 32px rgba(0,81,255,0.2);
    --shadow-blue-lg: 0 16px 48px rgba(0,81,255,0.25);
    --shadow-card-hover: 0 12px 40px rgba(11,12,32,0.12);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.6s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-cubic: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-cookie: 500;
    --z-toast: 600;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--fw-regular);
    line-height: var(--leading-relaxed);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    vertical-align: middle;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

strong, b {
    font-weight: var(--fw-semibold);
}

::selection {
    background-color: rgba(0, 81, 255, 0.15);
    color: var(--color-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-light);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: var(--leading-tight);
    color: var(--color-text);
    letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

/* Heading utility classes */
.heading-1 {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: var(--fw-extrabold);
    line-height: var(--leading-none);
    letter-spacing: var(--tracking-tight);
}

.heading-2 {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.heading-3 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-tight);
}

.heading-4 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--fw-semibold);
    line-height: var(--leading-snug);
}

.heading-5 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-semibold);
    line-height: var(--leading-snug);
}

.heading-6 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-semibold);
    line-height: var(--leading-snug);
}

/* Text size utilities */
.text-xs { font-size: var(--text-xs); line-height: var(--leading-normal); }
.text-sm { font-size: var(--text-sm); line-height: var(--leading-normal); }
.text-base { font-size: var(--text-base); line-height: var(--leading-normal); }
.text-lg { font-size: var(--text-lg); line-height: var(--leading-relaxed); }
.text-xl { font-size: var(--text-xl); line-height: var(--leading-relaxed); }
.text-2xl { font-size: var(--text-2xl); line-height: var(--leading-snug); }
.text-3xl { font-size: var(--text-3xl); line-height: var(--leading-snug); }
.text-4xl { font-size: var(--text-4xl); line-height: var(--leading-tight); }
.text-5xl { font-size: var(--text-5xl); line-height: var(--leading-tight); }
.text-6xl { font-size: var(--text-6xl); line-height: var(--leading-none); }

/* Gradient text */
.gradient-text,
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text color utilities */
.text-muted { color: var(--color-text-secondary); }
.text-light { color: var(--color-text-light); }
.text-white { color: var(--color-white); }
.text-primary { color: var(--color-primary); }

/* Text alignment */
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Text transform */
.text-uppercase {
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.text-capitalize { text-transform: capitalize; }

/* Font utilities */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }

.fw-regular { font-weight: var(--fw-regular); }
.fw-medium { font-weight: var(--fw-medium); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold { font-weight: var(--fw-bold); }
.fw-extrabold { font-weight: var(--fw-extrabold); }

/* Lead paragraph */
.lead {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
}

.max-w-prose { max-width: 65ch; }
.max-w-narrow { max-width: var(--container-narrow); }

/* ============================================
   4. LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Grid utilities */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Gap utilities */
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }
.gap-3xl { gap: var(--space-3xl); }

/* Display & position */
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mt-4xl { margin-top: var(--space-4xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }
.mb-4xl { margin-bottom: var(--space-4xl); }

.pt-0 { padding-top: 0; }
.pt-md { padding-top: var(--space-md); }
.pt-xl { padding-top: var(--space-xl); }
.pt-3xl { padding-top: var(--space-3xl); }

.pb-0 { padding-bottom: 0; }
.pb-md { padding-bottom: var(--space-md); }
.pb-xl { padding-bottom: var(--space-xl); }
.pb-3xl { padding-bottom: var(--space-3xl); }

.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }

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

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    line-height: 1;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn:active {
    transform: scale(0.98);
}

/* Primary Button with Gradient */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    padding: calc(0.875rem + 2px) calc(2rem + 2px);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    box-shadow: var(--shadow-blue-lg);
    transform: translateY(-1px);
    color: var(--color-white);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: var(--shadow-sm);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

/* Secondary Button with Outline */
.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

/* White Button (for dark backgrounds) */
.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-1px);
}

/* White Outline Button (for dark backgrounds) */
.btn-white-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-1px);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: transparent;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.btn-ghost:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: var(--text-base);
    border-radius: var(--radius-full);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-xs);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

/* Button with arrow */
.btn .btn-arrow {
    transition: transform var(--transition-base);
    display: inline-block;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

/* Spacer for fixed header */
.header-spacer {
    height: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-xl);
}

.header-logo img {
    height: 32px;
    width: auto;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0.875rem;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
    background: var(--color-bg-alt);
}

.nav-chevron {
    transition: transform var(--transition-fast);
    opacity: 0.5;
}

.has-dropdown.dropdown-open .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
    padding-top: 8px;
}

.has-dropdown.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border-light);
    padding: var(--space-sm);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    min-width: 480px;
    max-height: 70vh;
    overflow-y: auto;
}

.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    text-decoration: none;
}

.nav-dropdown-item:hover {
    background: var(--color-bg-alt);
}

.nav-dropdown-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}

.nav-dropdown-desc {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    line-height: 1.4;
}

.nav-item {
    position: relative;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header-cta {
    white-space: nowrap;
}

/* ============================================
   7. MOBILE MENU
   ============================================ */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    position: relative;
    z-index: calc(var(--z-overlay) + 10);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--color-white);
    z-index: calc(var(--z-overlay) + 5);
    padding-top: calc(var(--header-height) + var(--space-xl));
    transform: translateX(100%);
    transition: transform var(--transition-cubic);
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 12, 32, 0.5);
    z-index: calc(var(--z-overlay) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    padding: var(--space-xl) var(--container-padding);
    max-width: 480px;
    margin: 0 auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-light);
    text-align: left;
    text-decoration: none;
}

.mobile-nav-item.dropdown-open .nav-chevron {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    padding: var(--space-sm) 0 var(--space-md) var(--space-md);
}

.mobile-nav-item.dropdown-open .mobile-dropdown {
    display: block;
}

.mobile-dropdown-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    text-decoration: none;
}

.mobile-dropdown-link:hover {
    color: var(--color-primary);
}

.mobile-menu-cta {
    margin-top: var(--space-2xl);
}

/* ============================================
   8. HERO SECTIONS
   ============================================ */
.hero {
    padding: clamp(120px, 16vw, 180px) 0 var(--space-section);
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 81, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(110, 255, 249, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero decorative background shapes */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-bg-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 81, 255, 0.06);
    top: -100px;
    right: -200px;
}

.hero-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(110, 255, 249, 0.05);
    bottom: -100px;
    left: -150px;
}

.hero-inner {
    position: relative;
    z-index: var(--z-base);
}

.hero-content {
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: var(--z-base);
    animation: heroFadeIn 0.8s ease-out both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.hero-title .gradient-text,
.hero-title .text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.hero-visual {
    margin-top: var(--space-3xl);
    animation: heroFadeIn 0.8s ease-out 0.2s both;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: var(--space-2xl);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hero-trust-dot {
    color: var(--color-border);
}

.hero-inner {
    padding-bottom: var(--space-3xl);
}

.hero-inner .hero-title {
    font-size: var(--text-5xl);
}

/* ============================================
   9. SECTIONS & CONTAINERS
   ============================================ */
.section {
    padding: var(--space-section) 0;
    position: relative;
}

.section-sm {
    padding: var(--space-section-sm) 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
    padding: var(--space-section) 0;
    position: relative;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--color-white);
    padding: var(--space-section) 0;
    position: relative;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--color-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-label {
    color: var(--color-accent);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .lead {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .text-muted {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark a {
    color: var(--color-accent);
}

.section-dark a:hover {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
    max-width: 640px;
    margin-top: var(--space-md);
}

.section-footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   10. TRUST STRIP
   ============================================ */
.trust-strip {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-bg-alt);
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.clutch-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.clutch-stars {
    display: flex;
    gap: 2px;
}

.clutch-rating {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.trust-testimonial {
    max-width: 400px;
    text-align: center;
}

.trust-quote {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: var(--space-xs);
    line-height: 1.5;
}

.trust-author {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    font-weight: 500;
}

.trust-markets {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}

.trust-dot {
    color: var(--color-text-light);
}

/* ============================================
   11. SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-cubic);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    color: inherit;
}

/* Service card on alt background */
.section-alt .service-card {
    background: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-xs);
}

.section-alt .service-card:hover {
    box-shadow: var(--shadow-card-hover);
}

/* Featured service card */
.service-card-featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.02) 0%, rgba(110, 255, 249, 0.02) 100%);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    flex: 1;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
}

.service-link svg {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ============================================
   12. INDUSTRY CARDS
   ============================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.industry-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-cubic);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gradient-end));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.industry-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: inherit;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.industry-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    flex: 1;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
}

.card-link svg {
    transition: transform var(--transition-fast);
}

.industry-card:hover .card-link svg {
    transform: translateX(4px);
}

.industry-card-tag {
    display: inline-flex;
    align-items: center;
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-bg-alt);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    color: var(--color-primary);
}

/* Dark background industry card */
.section-dark .industry-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .industry-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.section-dark .industry-card::before {
    opacity: 0;
}

.section-dark .industry-title {
    color: var(--color-white);
}

.section-dark .industry-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   13. PROCESS SECTION
   ============================================ */
.process-steps {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--color-border);
}

.process-step {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    position: relative;
}

.process-step:first-child {
    padding-top: 0;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.process-content p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

/* ============================================
   14. CASE STUDY CARDS
   ============================================ */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 4vw, 60px);
}

.case-study-card {
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(11, 12, 32, 0.04);
}

.case-study-card:hover {
    box-shadow: 0 20px 60px rgba(11, 12, 32, 0.1);
    transform: translateY(-6px);
    color: inherit;
}

/* Image container with metric badge overlay */
.case-study-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #eef0f8 100%);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.case-study-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover .case-study-card-image img {
    transform: scale(1.05);
}

.case-study-metric-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(11, 12, 32, 0.1);
    text-align: center;
    min-width: 88px;
    backdrop-filter: blur(8px);
}

.case-study-metric-badge .metric-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: var(--leading-none);
    display: block;
}

.case-study-metric-badge .metric-label {
    font-size: 0.65rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
    display: block;
}

.case-study-industry-tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 81, 255, 0.06);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    align-self: flex-start;
}

.case-study-card-domain {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

/* Alt bg case study card */
.section-alt .case-study-card {
    background: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-xs);
}

.case-study-metric {
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-lighter));
    text-align: center;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-gradient-end);
    letter-spacing: -0.02em;
}

.metric-label {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-xs);
}

.case-study-body {
    padding: var(--space-xl);
}

.case-study-tags {
    display: flex;
    gap: 6px;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.case-study-challenge {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.case-study-meta {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
    margin-top: auto;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    color: var(--color-text-light);
}

.meta-item svg {
    color: var(--color-primary);
    opacity: 0.6;
}

/* ============================================
   15. VIDEO TESTIMONIALS
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    cursor: pointer;
}

.video-card:hover {
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--color-dark);
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.03);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-lighter));
    color: rgba(255,255,255,0.4);
    font-size: var(--text-sm);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-base);
}

.video-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--color-primary);
    margin-left: 4px;
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.video-card.video-playing .video-play {
    display: none;
}

/* Video card overlay gradient */
.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 12, 32, 0.6) 0%, rgba(11, 12, 32, 0.1) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    transition: background var(--transition-base);
}

.video-card:hover .video-card-overlay {
    background: linear-gradient(to top, rgba(11, 12, 32, 0.7) 0%, rgba(11, 12, 32, 0.2) 50%);
}

/* Responsive video embed */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-dark);
}

.video-embed iframe,
.video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: var(--space-lg);
}

.video-quote {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    font-style: italic;
    margin-top: var(--space-sm);
    line-height: 1.5;
}

/* Video Scroller — horizontal carousel */
.video-scroller-wrapper {
    position: relative;
    padding: 0 48px;
}

.video-scroller {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-sm) 0;
}

.video-scroller::-webkit-scrollbar {
    display: none;
}

.video-scroller-card {
    flex: 0 0 calc(50% - var(--space-xl) / 2);
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    cursor: pointer;
}

.video-scroller-card:hover {
    box-shadow: var(--shadow-lg);
}

.video-scroller-card .video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--color-dark);
    overflow: hidden;
}

.video-scroller-card .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.video-scroller-card:hover .video-thumbnail img {
    transform: scale(1.03);
}

.video-scroller-card .video-info {
    padding: var(--space-lg);
}

/* Scroller navigation arrows */
.scroller-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    color: var(--color-text-primary);
}

.scroller-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.scroller-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.scroller-arrow-left {
    left: 0;
}

.scroller-arrow-right {
    right: 0;
}

@media (max-width: 768px) {
    .video-scroller-card {
        flex: 0 0 85%;
    }

    .video-scroller-wrapper {
        padding: 0 36px;
    }

    .scroller-arrow {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .video-scroller-card {
        flex: 0 0 92%;
    }

    .video-scroller-wrapper {
        padding: 0;
    }

    .scroller-arrow {
        display: none;
    }
}

/* ============================================
   16. REVIEW CARDS
   ============================================ */
.clutch-header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.clutch-stars-lg {
    display: flex;
    gap: 2px;
}

.clutch-score {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
}

.clutch-count {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.review-card {
    padding: var(--space-2xl);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.review-text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    flex-grow: 1;
}

.review-text::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: -8px;
    left: -4px;
}

.review-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    flex-shrink: 0;
}

.review-author-role {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

/* Dark background review cards */
.section-dark .review-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-dark .review-text {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark .review-author {
    color: var(--color-white);
}

.section-dark .review-author-role {
    color: rgba(255, 255, 255, 0.5);
}

.review-attribution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.review-author {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}

/* ============================================
   17. MARKET COVERAGE
   ============================================ */
.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.market-card {
    padding: var(--space-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.market-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.market-icon {
    margin-bottom: var(--space-md);
}

.market-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.market-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.market-card-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.market-card-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-card-languages {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.market-card-lang {
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    color: var(--color-text-secondary);
}

/* Dark market card */
.section-dark .market-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .market-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-dark .market-card h3 {
    color: var(--color-white);
}

.section-dark .market-card p {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .market-card-lang {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   18. FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    gap: var(--space-md);
    transition: color var(--transition-fast);
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-icon-v {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon-v {
    transform: scaleY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding-bottom: var(--space-lg);
}

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

.faq-answer-inner ul {
    list-style: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.faq-answer-inner li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* FAQ toggle with +/- icon */
.faq-toggle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-text-secondary);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-toggle {
    background: var(--color-primary);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background: var(--color-white);
}

/* Dark FAQ variant */
.section-dark .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark .faq-item:first-child {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.section-dark .faq-question {
    color: var(--color-white);
}

.section-dark .faq-toggle {
    background: rgba(255, 255, 255, 0.1);
}

.section-dark .faq-toggle::before,
.section-dark .faq-toggle::after {
    background: rgba(255, 255, 255, 0.6);
}

.section-dark .faq-item.active .faq-toggle {
    background: var(--color-primary);
}

.section-dark .faq-answer p,
.section-dark .faq-answer-inner li {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   19. FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,81,255,0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A5B6A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-error {
    display: none;
    font-size: var(--text-xs);
    color: var(--color-error);
    margin-top: var(--space-xs);
}

.form-error.visible {
    display: block;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea,
.form-group.has-error .form-select {
    border-color: var(--color-error);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: var(--color-text-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-light);
}

.form-hint {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    line-height: var(--leading-normal);
    margin-top: var(--space-xs);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.form-checkbox-label {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--color-text-secondary);
}

.form-success {
    padding: var(--space-md) var(--space-lg);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    color: #047857;
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
}

/* Dark form variant */
.section-dark .form-input,
.section-dark .form-textarea,
.section-dark .form-select {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.section-dark .form-input::placeholder,
.section-dark .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.section-dark .form-input:focus,
.section-dark .form-textarea:focus,
.section-dark .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 81, 255, 0.2);
}

.section-dark .form-label {
    color: var(--color-white);
}

.section-dark .form-hint {
    color: rgba(255, 255, 255, 0.4);
}

.section-dark .form-checkbox-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   20. CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 81, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 255, 249, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: var(--z-base);
}

.cta-headline,
.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-tight);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta-text,
.cta-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-2xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.cta-note {
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

/* CTA with form side-by-side */
.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.cta-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

/* Inline CTA bar */
.cta-bar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
}

.cta-bar-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.cta-bar-description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* ============================================
   21. FOOTER
   ============================================ */
.site-footer {
    background: var(--color-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo img {
    height: 30px;
    width: auto;
    margin-bottom: var(--space-lg);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-sm);
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.footer-cta {
    margin-top: var(--space-lg);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
}

.footer-reg {
    opacity: 0.6;
    font-size: 11px;
}

.footer-legal-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal-links a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--color-white);
}

/* ============================================
   22. BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: var(--space-md) 0;
    margin-top: 72px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.breadcrumb-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-right: 1.5px solid var(--color-text-light);
    border-bottom: 1.5px solid var(--color-text-light);
    transform: rotate(-45deg);
}

.breadcrumb-item a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active span {
    color: var(--color-text);
    font-weight: 500;
}

/* ============================================
   23. COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-border-light);
    box-shadow: 0 -4px 24px rgba(11, 12, 32, 0.08);
    padding: var(--space-md) 0;
    transform: translateY(100%);
    transition: transform var(--transition-cubic);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.cookie-banner-text p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: var(--leading-relaxed);
}

.cookie-banner-text a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-btn-accept {
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-btn-accept:hover {
    background: var(--color-primary-dark);
}

.cookie-btn-decline {
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    color: var(--color-text-secondary);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-btn-decline:hover {
    border-color: var(--color-text-secondary);
    color: var(--color-text);
}

.cookie-btn-settings {
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    color: var(--color-text-light);
    border: none;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.cookie-btn-settings:hover {
    color: var(--color-text);
}

/* ============================================
   24. TAGS & BADGES
   ============================================ */
.tag {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(0,81,255,0.08);
    border-radius: var(--radius-full);
    line-height: 1.4;
}

.tag-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.tag-sm {
    padding: 2px 8px;
    font-size: 0.65rem;
}

/* ============================================
   25. STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    font-weight: var(--fw-medium);
}

.stat-description {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    margin-top: var(--space-xs);
}

/* Dark stat card */
.section-dark .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .stat-number {
    color: var(--color-white);
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .stat-description {
    color: rgba(255, 255, 255, 0.4);
}

/* Inline stat row */
.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-inline-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: var(--leading-none);
}

.stat-inline-label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-sm);
}

/* ============================================
   26. FEATURE ITEMS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.feature-item {
    padding: var(--space-2xl);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
}

.feature-item h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.feature-item p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

/* ============================================
   27. ASSESSMENT LAYOUT
   ============================================ */
.assessment-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
    align-items: start;
}

.assessment-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    padding: var(--space-2xl);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.sidebar-card h4 {
    margin-bottom: var(--space-md);
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text);
}

.trust-list li svg {
    flex-shrink: 0;
}

.what-you-receive {
    margin-bottom: var(--space-3xl);
}

.receive-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.receive-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.receive-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,81,255,0.1);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.qualification-section,
.process-explanation {
    margin-bottom: var(--space-3xl);
}

/* Content sections on inner pages */
.content-section {
    margin-bottom: var(--space-3xl);
}

.content-section h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.content-section h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.content-section ul {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.content-section ul li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    list-style: none;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* Engagement models cards */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.engagement-card {
    padding: var(--space-2xl);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.engagement-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.engagement-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.engagement-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Case snippet */
.case-snippet {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-lighter));
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.case-snippet h3 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.case-snippet p {
    color: rgba(255,255,255,0.7);
}

.case-snippet .metric-value {
    font-size: var(--text-5xl);
    color: var(--color-gradient-end);
}

/* Office info card */
.office-card {
    padding: var(--space-2xl);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
}

.office-card h3 {
    margin-bottom: var(--space-lg);
}

.office-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.office-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

.office-info-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-top: var(--space-lg);
}

/* Contact layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* About values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.value-card {
    padding: var(--space-2xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.value-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.value-card p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

/* Team placeholder */
.team-placeholder {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.team-placeholder p {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
}

/* ============================================
   28. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Animation base classes — hidden by default, revealed by JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity var(--transition-slower);
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state triggered by JS IntersectionObserver */
.fade-in-up.animate-visible,
.fade-in.animate-visible,
.fade-in-left.animate-visible,
.fade-in-right.animate-visible,
.scale-in.animate-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger animation delays */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }
.delay-6 { transition-delay: 600ms; }

/* Child stagger (legacy support) */
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.15s; }
.fade-in-up:nth-child(4) { transition-delay: 0.2s; }
.fade-in-up:nth-child(5) { transition-delay: 0.25s; }
.fade-in-up:nth-child(6) { transition-delay: 0.3s; }
.fade-in-up:nth-child(7) { transition-delay: 0.35s; }
.fade-in-up:nth-child(8) { transition-delay: 0.4s; }

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, var(--color-border-light) 50%, var(--color-bg-alt) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

.skeleton-text { height: 1em; margin-bottom: var(--space-sm); }
.skeleton-title { height: 1.5em; width: 60%; margin-bottom: var(--space-md); }
.skeleton-avatar { width: 48px; height: 48px; border-radius: 50%; }
.skeleton-card { height: 200px; border-radius: var(--radius-xl); }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in-up,
    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .scale-in {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   29. RESPONSIVE
   ============================================ */

/* ============================================
   MOBILE-FIRST BREAKPOINTS (min-width)
   ============================================ */

/* 768px — Tablet */
@media (min-width: 768px) {
    .site-header {
        height: var(--header-height);
    }

    .header-spacer {
        height: var(--header-height);
    }

    .cookie-banner-inner {
        flex-direction: row;
        align-items: center;
    }

    .cta-bar {
        flex-direction: row;
        align-items: center;
    }

    .cta-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions {
        flex-direction: row;
    }
}

/* 1024px — Desktop */
@media (min-width: 1024px) {
    .hero-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        align-items: center;
    }

    .hero-split .hero-visual {
        margin-top: 0;
    }

    .service-card-wide {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        align-items: center;
    }
}

/* 1440px — Large desktop */
@media (min-width: 1440px) {
    .container {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }

    .container-wide {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }

    .trust-strip-inner {
        gap: var(--space-3xl);
    }
}

/* ============================================
   MAX-WIDTH BREAKPOINTS (backward compatible)
   ============================================ */

/* Tablet landscape & below */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-grid .footer-col:last-child {
        grid-column: 1 / -1;
    }

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

    .assessment-layout {
        grid-template-columns: 1fr;
    }

    .assessment-sidebar {
        position: static;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .nav-dropdown-inner {
        min-width: 360px;
    }
}

/* Show mobile menu on tablets and below */
@media (max-width: 1024px) {
    .mobile-toggle {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }
}

/* Tablet portrait & below */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
        --space-section: clamp(60px, 8vw, 80px);
    }

    /* Header mobile adjustments */
    .site-header {
        height: var(--header-height-mobile);
    }

    .header-spacer {
        height: var(--header-height-mobile);
    }

    html {
        scroll-padding-top: var(--header-height-mobile);
    }

    .hero {
        padding-top: calc(80px + var(--space-3xl));
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-inner .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-form-wrapper {
        padding: var(--space-lg);
    }

    /* Cards smaller padding on mobile */
    .service-card {
        padding: var(--space-lg);
    }

    .review-card {
        padding: var(--space-lg);
    }

    .industry-card {
        padding: var(--space-lg);
    }

    /* Video play button smaller */
    .video-play {
        width: 56px;
        height: 56px;
    }

    .video-play::after {
        border-width: 8px 0 8px 14px;
        margin-left: 3px;
    }

    /* Cookie banner */
    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-decline {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-full {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .trust-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .process-steps::before {
        left: 24px;
    }

    .process-number {
        width: 48px;
        height: 48px;
        font-size: var(--text-base);
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .clutch-header-badge {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-inner .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-trust-dot {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    :root {
        --container-padding: 1rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-sm);
    }

    .section-title {
        font-size: var(--text-3xl);
    }
}

/* Very small mobile — 320px */
@media (max-width: 320px) {
    :root {
        --container-padding: 0.75rem;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: var(--text-xs);
    }

    .stat-row {
        flex-direction: column;
        gap: var(--space-lg);
    }
}


/* ============================================
   30. BADGES (extended)
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    line-height: var(--leading-normal);
}

.badge-primary {
    background: rgba(0, 81, 255, 0.08);
    color: var(--color-primary);
}

.badge-success {
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400E;
}

.badge-neutral {
    background: var(--color-bg-alt);
    color: var(--color-text-secondary);
}

.badge-dark {
    background: var(--color-dark);
    color: var(--color-white);
}


/* ============================================
   31. DIVIDERS / SEPARATORS
   ============================================ */
.divider {
    width: 100%;
    height: 1px;
    background: var(--color-border-light);
    border: none;
    margin: var(--space-xl) 0;
}

.divider-dark {
    background: rgba(255, 255, 255, 0.08);
}

.divider-short {
    width: 64px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    border: none;
}


/* ============================================
   32. CARD BASE
   ============================================ */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-cubic);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-elevated {
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

.card-elevated:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.section-alt .card {
    background: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-xs);
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}


/* ============================================
   33. TOOLTIP
   ============================================ */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-dark);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: var(--z-tooltip, 50);
    pointer-events: none;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}


/* ============================================
   34. PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    .mobile-toggle,
    .mobile-menu,
    .mobile-menu-overlay,
    .btn,
    .cta-section,
    .video-play {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .section,
    .section-alt,
    .section-dark {
        padding: 20pt 0;
        background: #fff !important;
        color: #000 !important;
    }

    .section-dark h1,
    .section-dark h2,
    .section-dark h3,
    .section-dark h4,
    .section-dark h5,
    .section-dark h6,
    .section-dark p {
        color: #000 !important;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .header-spacer {
        height: 0;
    }

    .gradient-text,
    .text-gradient {
        -webkit-text-fill-color: initial;
        background: none;
        color: var(--color-primary);
    }
}

/* ============================================
   35. VISUAL ENHANCEMENTS — Icons & Decorations
   ============================================ */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 81, 255, 0.06);
    border: 1px solid rgba(0, 81, 255, 0.12);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    letter-spacing: var(--tracking-wide);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 81, 255, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 81, 255, 0); }
}

/* Hero Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 81, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 81, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.hero-stat {
    text-align: center;
    flex: 1;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* Process Grid (horizontal cards on dark bg) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.process-card-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: var(--tracking-wider);
}

.process-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.2), rgba(110, 255, 249, 0.15));
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-lg);
    color: var(--color-accent);
}

.process-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.process-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.process-card-connector {
    display: none;
    position: absolute;
    top: 50%;
    right: calc(-1 * var(--space-lg) / 2 - 12px);
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
    .process-card-connector {
        display: block;
    }
}

/* Industry Icon Wrapper */
.industry-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.08), rgba(110, 255, 249, 0.06));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.industry-card:hover .industry-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

/* Market Card Icon Wrapper */
.market-card-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.08), rgba(110, 255, 249, 0.06));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.market-card:hover .market-card-icon-wrapper {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Decorative Glow Orbs */
.decor-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.decor-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 81, 255, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.decor-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 255, 249, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

/* Review Author Info */
.review-author-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-author-info .review-author {
    display: block;
}

.review-author-info .review-author-role {
    display: block;
}

/* Gradient text in headings */
h2 .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video placeholder enhanced */
.video-placeholder {
    flex-direction: column;
    gap: var(--space-md);
}

/* Section label decorative line */
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gradient-primary);
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 1px;
}

.section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--gradient-primary);
    vertical-align: middle;
    margin-left: 8px;
    border-radius: 1px;
}

/* Enhanced service icon */
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.08), rgba(110, 255, 249, 0.06));
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 81, 255, 0.25);
}

/* Case study metric gradient enhanced */
.case-study-metric {
    position: relative;
    overflow: hidden;
}

.case-study-metric::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(110, 255, 249, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* CTA section enhanced decorative elements */
.cta-section {
    position: relative;
    overflow: hidden;
}

/* Review card quote icon */
.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Responsive process grid */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-badge {
        font-size: var(--text-xs);
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: var(--space-md);
    }

    .hero-stat-number {
        font-size: var(--text-xl);
    }
}

/* Industry Icon Wrapper */
.industry-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.08), rgba(110, 255, 249, 0.06));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.industry-card:hover .industry-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 81, 255, 0.25);
}

/* Market Card Icon Wrapper */
.market-card-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 81, 255, 0.08), rgba(110, 255, 249, 0.06));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.market-card:hover .market-card-icon-wrapper {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

/* Decorative Glow Orbs */
.decor-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.decor-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 81, 255, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.decor-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 255, 249, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

/* Review Author Info */
.review-author-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-author-info .review-author {
    display: block;
}

.review-author-info .review-author-role {
    display: block;
}

/* Gradient text in section headings */
h2 .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video placeholder enhanced */
.video-placeholder {
    flex-direction: column;
    gap: var(--space-md);
}

/* Section label decorative lines — dark variant */
.section-dark .section-label::before,
.section-dark .section-label::after {
    background: linear-gradient(135deg, rgba(128, 216, 255, 0.5), rgba(110, 255, 249, 0.5));
}

/* Responsive icon sizes for mobile */
@media (max-width: 768px) {
    .industry-icon,
    .market-card-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .process-card-icon {
        width: 52px;
        height: 52px;
    }
}

/* =========================================
   36. Clutch-Style Review Cards
   ========================================= */

/* Clutch reviews list — stacked full-width cards */
.clutch-reviews-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Individual Clutch card */
.clutch-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.clutch-card:hover {
    box-shadow: var(--shadow-md);
}

/* Card title bar */
.clutch-card-title {
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    padding: var(--space-lg) var(--space-2xl);
    border-bottom: 1px solid var(--color-border-light);
    margin: 0;
}

/* 4-column body layout */
.clutch-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    min-height: 0;
}

/* Column shared styles */
.clutch-col {
    padding: var(--space-lg) var(--space-xl);
    border-right: 1px solid var(--color-border-light);
}

.clutch-col:last-child {
    border-right: none;
}

/* Column label — uppercase small header like Clutch */
.clutch-col-label {
    display: block;
    font-size: 11px;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

/* Column 1: Project details */
.clutch-project-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.clutch-project-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
}

/* Column 2: Rating */
.clutch-col-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.clutch-rating-box {
    padding: var(--space-md) 0;
    margin-bottom: var(--space-md);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    width: 100%;
}

.clutch-rating-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    line-height: 1.2;
}

.clutch-rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: 4px;
}

/* Rating breakdown rows */
.clutch-rating-breakdown {
    width: 100%;
}

.clutch-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.clutch-rating-row:last-child {
    border-bottom: none;
}

.clutch-rating-row span:last-child {
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
}

/* Column 3: Review content */
.clutch-review-quote {
    font-size: var(--text-lg);
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    line-height: 1.5;
    margin: 0 0 var(--space-sm);
    border: none;
    padding: 0;
}

.clutch-review-text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Column 4: Reviewer info */
.clutch-reviewer-role {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.clutch-reviewer-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.clutch-reviewer-detail svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.clutch-verified-badge svg {
    opacity: 1;
}

/* Responsive: tablet — 2x2 grid */
@media (max-width: 1024px) {
    .clutch-card-body {
        grid-template-columns: 1fr 1fr;
    }

    .clutch-col:nth-child(2) {
        border-right: none;
    }

    .clutch-col:nth-child(3) {
        border-top: 1px solid var(--color-border-light);
    }

    .clutch-col:nth-child(4) {
        border-top: 1px solid var(--color-border-light);
        border-right: none;
    }
}

/* Responsive: mobile — single column */
@media (max-width: 768px) {
    .clutch-card-body {
        grid-template-columns: 1fr;
    }

    .clutch-col {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
        padding: var(--space-md) var(--space-lg);
    }

    .clutch-col:last-child {
        border-bottom: none;
    }

    .clutch-card-title {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--text-base);
    }

    .clutch-rating-number {
        font-size: 1.5rem;
    }

    .clutch-review-quote {
        font-size: var(--text-base);
    }
}

/* ============================================
   30. CASE STUDIES LISTING — FILTERS & GRID
   ============================================ */

/* Case studies listing — extra top space when no hero */
.cs-listing-section {
    padding-top: calc(var(--header-height) + var(--space-4xl));
}

/* ---- Our Works overview block ---- */
.cs-overview {
    margin-bottom: clamp(40px, 5vw, 72px);
    position: relative;
    z-index: calc(var(--z-dropdown) + 1);
}

.cs-overview-header {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--color-border);
}

/* Left column — heading + stat */
.cs-overview-left {
    flex-shrink: 0;
    padding: clamp(28px, 3.5vw, 48px) 0;
    padding-right: clamp(32px, 5vw, 80px);
    border-right: 2px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-overview-label {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: var(--fw-extrabold);
    color: var(--color-text);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: clamp(12px, 1.5vw, 24px);
}

.cs-overview-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.cs-overview-number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: var(--fw-extrabold);
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: var(--leading-none);
}

.cs-overview-unit {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    font-weight: var(--fw-bold);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Right column — filters + CTA */
.cs-overview-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.5vw, 20px);
    padding: clamp(28px, 3.5vw, 48px) 0;
    padding-left: clamp(24px, 3vw, 48px);
    flex-wrap: wrap;
}

/* ---- Pill buttons (shared base for filter toggles & CTA) ---- */
.cs-filter-toggle,
.cs-overview-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(6px, 0.5vw, 8px) clamp(6px, 0.5vw, 8px) clamp(6px, 0.5vw, 8px) clamp(20px, 2vw, 32px);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 0.95vw, 0.85rem);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.cs-filter-toggle:hover,
.cs-overview-action:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(0, 81, 255, 0.08);
}

.cs-filter-toggle.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(0, 81, 255, 0.03);
}

/* Circular badge inside pills */
.cs-filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 3vw, 48px);
    height: clamp(36px, 3vw, 48px);
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    flex-shrink: 0;
    transition: transform var(--transition-base), background var(--transition-fast);
}

.cs-filter-toggle.active .cs-filter-badge {
    transform: rotate(180deg);
    background: var(--color-primary-dark);
}

.cs-filter-toggle svg,
.cs-overview-action svg {
    transition: transform var(--transition-fast);
}

/* "have a project?" icon — gradient accent */
.cs-overview-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 3vw, 48px);
    height: clamp(36px, 3vw, 48px);
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    flex-shrink: 0;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cs-overview-action:hover .cs-overview-action-icon {
    transform: translate(2px, -2px);
    box-shadow: var(--shadow-blue);
}

/* ---- Responsive header ---- */
@media (max-width: 1024px) {
    .cs-overview-right {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .cs-overview-header {
        flex-direction: column;
    }

    .cs-overview-left {
        border-right: none;
        border-bottom: 2px solid var(--color-border);
        padding-right: 0;
        padding-bottom: var(--space-xl);
    }

    .cs-overview-right {
        padding-left: 0;
        padding-top: var(--space-xl);
        gap: var(--space-sm);
    }

    .cs-filter-toggle,
    .cs-overview-action {
        font-size: 0.7rem;
        padding: 5px 5px 5px 18px;
    }

    .cs-filter-badge,
    .cs-overview-action-icon {
        width: 34px;
        height: 34px;
    }
}

/* ---- Filter groups ---- */
.cs-filter-group {
    position: relative;
    z-index: var(--z-dropdown);
}

/* ---- Dropdown ---- */
.cs-filter-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-lg);
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-filter-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Filter options */
.cs-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.cs-filter-option:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.cs-filter-option input[type="checkbox"] {
    display: none;
}

.cs-filter-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
}

.cs-filter-option:hover .cs-filter-checkbox {
    border-color: var(--color-primary-light);
}

.cs-filter-option input:checked + .cs-filter-checkbox {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.cs-filter-option input:checked + .cs-filter-checkbox::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cs-filter-apply {
    margin-top: var(--space-md);
    width: 100%;
}

/* ---- Active filter tags ---- */
.cs-filter-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    min-height: 0;
}

.cs-filter-tags:empty {
    margin-bottom: 0;
}

.cs-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 81, 255, 0.06);
    border: 1px solid rgba(0, 81, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

.cs-active-tag button {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.cs-active-tag button:hover {
    opacity: 1;
}

.cs-clear-tags-btn {
    background: none;
    border: none;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-text-light);
    cursor: pointer;
    padding: 6px 8px;
    transition: color var(--transition-fast);
}

.cs-clear-tags-btn:hover {
    color: var(--color-primary);
}

/* ---- Card body (listing page overrides) ---- */
.case-study-card-body {
    padding: clamp(16px, 2vw, 28px) clamp(20px, 2.5vw, 32px) clamp(20px, 2.5vw, 32px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: var(--tracking-tight);
}

.case-study-card-desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
    flex: 1;
}

/* No results */
.cs-no-results {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
}

.cs-no-results p {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

/* View more button */
.cs-view-more {
    text-align: center;
    margin-top: var(--space-3xl);
}

.cs-view-more .btn svg {
    margin-left: 6px;
    transition: transform var(--transition-fast);
}

.cs-view-more .btn:hover svg {
    transform: translateY(2px);
}

/* Responsive filters */
@media (max-width: 768px) {
    .cs-filter-dropdown {
        min-width: 200px;
    }
}

/* ============================================
   31. BLOG
   ============================================ */

/* Category filter buttons */
.blog-categories {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.blog-cat-btn {
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-secondary);
    background: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.blog-cat-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-cat-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Featured blog card */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    margin-bottom: var(--space-3xl);
    transition: all var(--transition-cubic);
}

.blog-featured-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: transparent;
    color: inherit;
}

.blog-featured-image {
    aspect-ratio: 4/3;
    background: var(--color-bg-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-featured-placeholder {
    color: var(--color-border);
}

.blog-featured-body {
    padding: var(--space-2xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-snug);
}

.blog-featured-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

/* Blog card grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-cubic);
}

.blog-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: transparent;
    color: inherit;
}

.blog-card-image {
    aspect-ratio: 16/10;
    background: var(--color-bg-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder {
    color: var(--color-border);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.blog-card-category {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.blog-card-date {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-snug);
}

.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    transition: gap var(--transition-fast);
}

.blog-card:hover .blog-read-more,
.blog-featured-card:hover .blog-read-more {
    gap: 10px;
}

/* ============================================
   32. ARTICLE PAGE
   ============================================ */

.article-meta-top {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.article-date,
.article-read-time {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.article-section {
    padding-top: 0;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.article-content .lead {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.article-content h2 {
    font-size: var(--text-3xl);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
}

.article-content h3 {
    font-size: var(--text-xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.article-content p {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.article-content code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--color-bg-alt);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    color: var(--color-primary);
}

.article-list {
    margin-bottom: var(--space-xl);
    padding-left: 0;
}

.article-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.article-list-ordered {
    counter-reset: article-counter;
}

.article-list-ordered li {
    counter-increment: article-counter;
}

.article-list-ordered li::before {
    content: counter(article-counter);
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    top: 0;
}

/* Article CTA box */
.article-cta {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta h3 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.article-cta p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* Blog responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-categories {
        gap: var(--space-xs);
    }

    .blog-cat-btn {
        padding: 6px 14px;
        font-size: var(--text-xs);
    }

    .article-content h2 {
        font-size: var(--text-2xl);
        margin-top: var(--space-2xl);
    }
}
