/* ==========================================================================
   AI-First Law Firm — Design System
   1:1 Mirror of dreelio.framer.website
   ========================================================================== */

/* Open Runde Font Import (exact match to Dreelio) */
@import url('https://fonts.cdnfonts.com/css/open-runde');

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Neutral/Beige Palette (Replacing Blue) */
    --neutral-pale: #F4F1EE;
    --neutral-frost: #EDEFF0;
    --neutral-base: #F9F8F8;

    /* Cream/Beige Palette */
    --cream: rgb(241, 235, 229);
    --cream-hex: #F1EBE5;
    --beige-warm: #EDDFD0;
    --beige-light: #F4E6DA;
    --beige-soft: #F1EBE5;
    --beige-pale: #F4F1EE;
    --white: #FFFFFF;

    /* Main Background - Neutral Gradient */
    --bg-main: #F9F8F8;
    --bg-gradient-hero: linear-gradient(180deg, #F4F1EE 0%, #EDDFD0 100%);
    --bg-gradient: linear-gradient(180deg, #F4F1EE 0%, #F9F8F8 40%);
    --bg-gradient-soft: linear-gradient(180deg, #F4F1EE 0%, #F9F8F8 50%);

    /* Neutral Text Colors (Dreelio exact) */
    --text-primary: rgb(26, 22, 21);
    --text-primary-hex: #1A1615;
    --text-secondary: #453F3D;
    --text-muted: #757170;

    /* Glassmorphism */
    --glass-white: rgba(255, 255, 255, 0.25);
    --glass-white-strong: rgba(255, 255, 255, 0.7);
    --glass-white-light: rgba(255, 255, 255, 0.1);

    /* Stroke */
    --stroke: #E4E2E2;
    --stroke-header: rgba(255, 255, 255, 0.3);

    /* Accents (use sparingly) */
    --accent-green: #32D583;
    --accent-red: #C9502E;

    /* Typography - New York for headings, SF Pro Text for body */
    --font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-display: 'New York', 'Georgia', 'Times New Roman', serif;

    /* Font Sizes (increased for body, unchanged for headers) */
    --text-xs: 0.875rem;
    /* 14px - buttons, labels */
    --text-sm: 1rem;
    /* 16px - small text */
    --text-base: 1.125rem;
    /* 18px */
    --text-lg: 1.25rem;
    /* 20px */
    --text-xl: 1.375rem;
    /* 22px - body text */
    --text-2xl: 1.625rem;
    /* 26px */
    --text-3xl: 2.25rem;
    /* 36px - H3 (approx) */
    --text-4xl: 2.5rem;
    /* 40px - H3 actual */
    --text-5xl: 3.25rem;
    /* 52px - H2 */
    --text-6xl: 4.75rem;
    /* 76px - H1 */

    /* Typography Overrides (headers unchanged) */
    --font-h1: 4.75rem;
    /* 76px */
    --font-h2: 3.25rem;
    /* 52px */
    --font-h3: 2.5rem;
    /* 40px */
    --font-p-large: 1.375rem;
    /* 22px */
    --font-p-base: 1.125rem;
    /* 18px */
    --letter-spacing-h1: -0.03em;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line Heights */
    --leading-tight: 1.1;
    --leading-snug: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.6;

    /* Letter Spacing */
    --tracking-tighter: -0.03em;
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.1em;

    /* Spacing Scale (Dreelio gaps: 16px, 24px, 40px) */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px - gap-sm */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px - gap-md */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px - gap-lg */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --section-padding: var(--space-20);
    --grid-gap: var(--space-5);

    /* Border Radius (Dreelio exact) */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-3xl: 40px;
    --radius-full: 100px;
    /* Dreelio uses 100px for pills */

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(26, 22, 21, 0.05);
    --shadow-md: 0 4px 12px rgba(26, 22, 21, 0.08);
    --shadow-lg: 0 8px 24px rgba(26, 22, 21, 0.12);
    --shadow-card: 0 2px 8px rgba(26, 22, 21, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.4s ease;
    --transition-reveal: 0.6s ease-out;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: var(--bg-main);
    position: relative;
}

/* Full Page Gradient Background (Dreelio style - scrolls with content) */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    min-height: 100vh;
    z-index: -1;
    background: linear-gradient(180deg,
            rgb(250, 250, 250) 0%,
            rgb(249, 248, 248) 20%,
            rgb(244, 241, 238) 45%,
            rgb(226, 236, 246) 73%,
            rgb(167, 203, 242) 100%);
    pointer-events: none;
}

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

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

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

ul,
ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1,
.h1 {
    font-family: var(--font-family-display);
    font-size: var(--font-h1);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: var(--letter-spacing-h1);
    color: var(--text-primary);
}

h2,
.h2 {
    font-family: var(--font-family-display);
    font-size: var(--font-h2);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
}

h3,
.h3 {
    font-family: var(--font-family-display);
    font-size: var(--font-h3);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
}

h4,
.h4 {
    font-family: var(--font-family-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-snug);
    color: var(--text-primary);
}

h5,
.h5 {
    font-family: var(--font-family-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-normal);
    color: var(--text-primary);
}

h6,
.h6 {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    line-height: var(--leading-normal);
    color: var(--text-primary);
}

.text-lead,
.hero__subtitle {
    font-size: var(--font-p-large);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-secondary);
}

.text-body,
p {
    font-size: var(--font-p-base);
    line-height: 1.5;
    color: var(--text-secondary);
}

.text-small {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--text-muted);
}

.text-label {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. Layout Components
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container--narrow {
    max-width: var(--container-narrow);
}

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


.grid {
    display: grid;
    gap: var(--grid-gap);
}

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

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

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

.flex {
    display: flex;
}

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

.flex--between {
    align-items: center;
    justify-content: space-between;
}

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

/* --------------------------------------------------------------------------
   5. Header & Navigation (Dreelio 1:1 - Scroll-Driven Transitions)
   -------------------------------------------------------------------------- */

/* Base Header - Fully transparent, wide layout at scroll = 0 */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 32px);
    max-width: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Inner - Transparent at start, glass pill when scrolled */
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 16px;
    border-radius: 40px;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-family-display);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    padding-left: 0;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.header__logo-icon {
    width: 28px;
    height: 28px;
}

.header__logo-icon rect {
    fill: var(--white);
    transition: fill 0.3s ease;
}

.header__logo-icon path {
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button */
.header__cta {
    margin-left: var(--space-4);
}

/* ============ SCROLLED STATE (after 150px) ============ */
/* Header no longer shrinks on scroll - keeping full width */
.header--scrolled {
    max-width: none;
    width: calc(100% - 32px);
}

.header--scrolled .header__inner {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header--scrolled .header__logo {
    padding-left: 8px;
}

/* ============ DARK STATE (after hero section) ============ */
.header--dark .header__logo {
    color: var(--text-primary);
}

.header--dark .header__logo-icon rect {
    fill: var(--text-primary);
}

.header--dark .header__logo-icon path {
    stroke: var(--white);
}

.header--dark .nav__link {
    color: var(--text-primary);
}

.header--dark .nav__link:hover {
    color: var(--text-muted);
}

.header--dark .lang-dropdown__trigger {
    color: var(--text-primary);
}

.header--dark .lang-dropdown__trigger:hover {
    color: var(--text-muted);
}

.header--dark .header__cta.btn--primary {
    background: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
}

.header--dark .header__cta.btn--primary:hover {
    background: var(--text-secondary);
    border-color: var(--text-secondary);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.header__menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Menu Open State */
.header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: var(--space-4);
    right: var(--space-4);
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.header__nav.is-open .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.header__nav.is-open .nav__link,
.header__nav.is-open .nav__dropdown-trigger {
    display: block;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
}

.header__nav.is-open .nav__link:hover,
.header__nav.is-open .nav__dropdown-trigger:hover {
    background: var(--beige-pale);
}

.header__nav.is-open .header__cta {
    width: 100%;
    text-align: center;
    margin-left: 0;
}

.header__menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   6. Buttons (Dreelio exact: 18px 24px padding, 12px font, 100px radius)
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 18px 24px;
    font-size: 15px;
    font-weight: var(--font-medium);
    line-height: 1;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--text-primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--text-secondary);
    transform: translateY(-1px);
}

/* Header CTA - white initially */
.header__cta.btn--primary {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.header__cta.btn--primary:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--stroke);
    padding: 12px 20px;
}

.btn--outline:hover {
    background: var(--white);
    border-color: var(--text-muted);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    padding: 14px 20px;
}

.btn--ghost:hover {
    color: var(--text-secondary);
}

.btn--large {
    padding: 18px 24px;
    font-size: var(--text-xs);
}

.btn--small {
    padding: 8px 12px;
    font-size: var(--text-xs);
}

.btn--icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

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

.card--beige {
    background: rgba(244, 241, 238, 0.8);
}

.card--blue {
    background: rgba(226, 236, 246, 0.8);
}

.card--flat {
    box-shadow: none;
}

.card--flat:hover {
    box-shadow: none;
    transform: none;
}

.card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.card__title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
}

.card__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* Feature Card (Large) */
.feature-card {
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
}

.feature-card__header {
    margin-bottom: var(--space-6);
}

.feature-card__title {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.feature-card__visual {
    margin-top: var(--space-6);
}

/* --------------------------------------------------------------------------
   8. Hero Section (Full-width background image)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: calc(var(--space-20) + 20px) 0 var(--space-16);
    overflow: hidden;
    text-align: center;
}

/* Full-width background image */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Entry animation like text */
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.05);
    animation: heroImageFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes heroImageFadeIn {
    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* No overlay - clean image */

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: var(--space-16);
}

.hero__label {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.hero__title {
    margin-bottom: var(--space-4);
    font-size: 4rem;
    font-weight: var(--font-semibold);
    line-height: 1.1;
    letter-spacing: var(--letter-spacing-h1);
    white-space: normal;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__trust-label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.hero__ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.hero__visual {
    display: none;
}

.hero__slideshow {
    display: none;
}

.hero__slide {
    display: none;
}

/* Hero Animations (Dreelio-style blur fade up with stagger) */
.hero-animate {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(40px);
    animation: heroBlurFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate--delay-1 {
    animation-delay: 0.15s;
}

.hero-animate--delay-2 {
    animation-delay: 0.3s;
}

.hero-animate--delay-3 {
    animation-delay: 0.45s;
}

@keyframes heroBlurFadeUp {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   9. Logo Carousel / Trust Section
   -------------------------------------------------------------------------- */
.trust-bar {
    padding: var(--space-12) 0 var(--space-8);
    text-align: center;
    overflow: hidden;
}

.trust-bar__label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-8);
}

/* Infinite Scrolling Logo Carousel */
.logo-carousel {
    position: relative;
    max-width: 834px;
    margin: 0 auto;
    overflow: hidden;
    /* True transparent fade using mask */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.logo-carousel__track {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

/* Pause animation on hover */
.logo-carousel:hover .logo-carousel__track {
    animation-play-state: paused;
}

.logo-carousel__text {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.85;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    cursor: pointer;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.logo-carousel__text:hover {
    opacity: 1;
}

/* Secondary logo carousel (pricing section) - black text */
.logo-carousel--secondary .logo-carousel__text {
    color: var(--text-primary);
    text-shadow: none;
}

.logo-carousel__logo {
    flex-shrink: 0;
}

.logo-carousel__logo img {
    height: 28px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-carousel__logo:hover img {
    opacity: 0.8;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Language Dropdown */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    padding: 8px 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-dropdown__trigger:hover {
    color: rgba(255, 255, 255, 0.7);
}

.lang-dropdown__icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.lang-dropdown__chevron {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.lang-dropdown:hover .lang-dropdown__chevron {
    transform: rotate(180deg);
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.lang-dropdown:hover .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown__item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
}

.lang-dropdown__item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.lang-dropdown__item--active {
    color: var(--text-primary);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   10. Services Section (4 Practice Areas)
   -------------------------------------------------------------------------- */
.services {
    padding: var(--space-24) 0;
    width: 100%;
}

.services__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: var(--space-6);
    padding: 0 var(--space-4);
}

.service-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    transition: var(--transition-base);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__image {
    width: 100%;
    height: 100%;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6) var(--space-8) var(--space-8);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-1);
    color: var(--text-primary);
}

.service-card__description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* Gradient variant for process steps */
.service-card--gradient {
    background: linear-gradient(180deg, rgb(167, 203, 242) 0%, rgb(244, 241, 238) 100%);
    display: flex;
    flex-direction: column;
}

.service-card__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(167, 203, 242) 0%, rgb(244, 241, 238) 100%);
    z-index: 0;
}

/* UI Snippets for Process Cards */
.service-card__ui {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-bottom: 120px;
    /* Offset for text overlay */
}

.snippet-widget {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: var(--space-8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    width: 300px;
}

/* Step 1: Intake */
.snippet--intake .snippet-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6EB5E8;
}

/* Step 2: Analysis */
.snippet--analysis .snippet-preview {
    width: 200px;
    height: 220px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.snippet-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #6EB5E8;
    box-shadow: 0 0 12px #6EB5E8;
    animation: scanMove 3s infinite ease-in-out;
}

@keyframes scanMove {

    0%,
    100% {
        top: 10%;
    }

    50% {
        top: 90%;
    }
}

/* Step 3: Review */
.snippet--review .snippet-status {
    background: #32D583;
    color: white;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --------------------------------------------------------------------------
   11. Features Sections
   -------------------------------------------------------------------------- */
.features {
    padding: var(--space-24) 0;
}

.features__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.features__title {
    margin-bottom: var(--space-4);
}

.features__subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.features__grid {
    display: grid;
    gap: var(--space-5);
}

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

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

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
    padding: var(--space-20) 0;
}

.testimonial-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

/* Hero Quote */
.testimonial-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-16);
}

.testimonial-hero__quote {
    font-family: var(--font-family-display);
    font-size: 3rem;
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 var(--space-8);
}

.testimonial-hero__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
}

.testimonial-hero__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-hero__info {
    text-align: left;
}

.testimonial-hero__name {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.testimonial-hero__role {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.testimonial-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    /* Mask for fade effect matching hero */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.testimonial-carousel__track {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-4) 0;
    width: max-content;
    animation: testimonial-scroll 40s linear infinite;
}

.testimonial-carousel:hover .testimonial-carousel__track {
    animation-play-state: paused;
}

@keyframes testimonial-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    width: 380px;
    flex-shrink: 0;
}

.testimonial-card__quote {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    line-height: var(--leading-relaxed);
    color: var(--text-primary);
    margin-bottom: var(--space-8);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-card__name {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.testimonial-card__role {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Compliance Section
   -------------------------------------------------------------------------- */
.compliance {
    padding: var(--space-24) 0;
    background: var(--neutral-pale);
}

.compliance__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

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

.compliance__item {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.compliance__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-frost);
    border-radius: var(--radius-md);
}

.compliance__title {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.compliance__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. Pricing Section
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   14. Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
    padding: var(--space-16) 0;
}

.pricing__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.pricing__toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-8);
}

.pricing__toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing__toggle-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

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

.pricing__toggle-btn.is-active {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.pricing__sub-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.pricing__subtitle {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.pricing__view.is-hidden {
    display: none;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: stretch;
    padding: 0 var(--space-4);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.pricing-card--featured {
    border-color: var(--stroke);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.pricing-card__name {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-1);
    color: var(--text-primary);
}

.pricing-card__positioning {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.pricing-card__price {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.pricing-card__unit {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-muted);
}

.pricing-card__best-for {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--stroke);
}

.pricing-card__specs {
    list-style: none;
    margin-bottom: var(--space-8);
    flex-grow: 1;
}

.pricing-card__specs li {
    font-size: var(--text-xs);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: var(--space-2);
}

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

.pricing-card__specs li span {
    color: var(--text-muted);
    font-weight: var(--font-medium);
}

.pricing-card__cta {
    width: 100%;
    margin-top: auto;
}

.pricing__footer {
    text-align: center;
    margin-top: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing__footer-text {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

/* Outcomes Table Styles */
.outcomes-table-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: var(--space-6) var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0 var(--space-8) var(--space-8);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
}

.outcomes-table {
    width: 100%;
    border-collapse: collapse;
}

.outcomes-table th {
    text-align: left;
    padding: var(--space-4) var(--space-4);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 2px solid var(--stroke);
}

.outcomes-table td {
    padding: var(--space-4) var(--space-4);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.outcomes-table td:first-child {
    color: var(--text-primary);
}

.outcomes-table td:nth-child(2) {
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.outcomes-table tr:last-child td {
    border-bottom: none;
}

.outcomes-table tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

.outcomes-logic {
    margin-top: var(--space-12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.outcomes-logic__list {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    list-style: none;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.outcomes-logic__list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
}

.outcomes-logic__list li svg {
    color: var(--text-primary);
}

.pricing__partners-label {
    text-align: center;
    margin-top: var(--space-16);
    margin-bottom: var(--space-8);
}

.pricing__partners-label p {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.logo-carousel--secondary {
    margin-top: 0;
    margin-bottom: var(--space-8);
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   15. FAQ Section
   -------------------------------------------------------------------------- */
.faq {
    padding: var(--space-24) 0;
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--space-6);
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq__item.is-open {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease;
}

.faq__question:hover {
    background: var(--neutral-frost);
}

.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__question {
    background: var(--neutral-frost);
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;
}

.faq__item.is-open .faq__answer-inner {
    opacity: 1;
    transform: translateY(0);
}

.faq__answer-content {
    padding: var(--space-4) var(--space-6) var(--space-5);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------------------------
   16. Founders Section (Side-by-side Zig-Zag Layout)
   -------------------------------------------------------------------------- */
.founders {
    padding: var(--space-24) 0;
}

.founders__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: stretch;
    padding: 0 var(--space-4);
}

.founders__image-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.founders__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 65% 25%;
}

.founders__content {
    padding: var(--space-8);
}

.founders__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h2);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.founders__mission {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.47;
    margin-bottom: var(--space-4);
}

.founders__mission:last-of-type {
    margin-bottom: var(--space-8);
}

.founders__actions {
    margin-top: var(--space-6);
}

/* Responsive adjustments for Founders Section */
@media (max-width: 900px) {
    .founders__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .founders__content {
        padding: var(--space-4) 0;
    }
}

@media (max-width: 1024px) {
    .founders__container {
        max-width: 90%;
    }

    .founders__overlay {
        left: 40px;
        max-width: 400px;
        padding: var(--space-8);
    }
}

@media (max-width: 768px) {
    .founders__container {
        max-width: 100%;
        padding: 0 var(--space-6);
    }

    .founders__hero {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        border-radius: var(--radius-2xl);
    }

    .founders__hero-image {
        height: 300px;
    }

    .founders__overlay {
        position: static;
        top: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--stroke);
    }
}

/* --------------------------------------------------------------------------
   17. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    padding: var(--space-16) var(--space-4) var(--space-8);
}

.footer__card {
    max-width: none;
    margin: 0 auto;
    padding: var(--space-10) var(--space-12);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: var(--space-6);
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-family-display);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
}

.footer__social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer__social-btn:hover {
    background: var(--text-secondary);
    transform: scale(1.05);
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
}

.footer__nav-title {
    font-size: 11px;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.footer__nav-list li {
    margin-bottom: var(--space-2);
}

.footer__nav-link {
    font-size: var(--text-sm);
    color: var(--text-primary);
    font-weight: var(--font-medium);
    transition: var(--transition-fast);
}

.footer__nav-link:hover {
    color: var(--text-muted);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.footer__credit {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   18. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

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

.reveal--delay-1 {
    transition-delay: 0.1s;
}

.reveal--delay-2 {
    transition-delay: 0.2s;
}

.reveal--delay-3 {
    transition-delay: 0.3s;
}

/* --------------------------------------------------------------------------
   19. Responsive Styles
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --text-6xl: 3.5rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --font-h1: 3.5rem;
        --section-padding: var(--space-16);
    }

    .header__nav,
    .header__actions {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    .hero__visual {
        position: relative;
        width: 100%;
        max-width: none;
        transform: none;
        margin-top: var(--space-10);
    }

    .hero__content {
        max-width: none;
        text-align: center;
    }

    .hero__ctas {
        justify-content: center;
    }

    .features__grid--2,
    .features__grid--3,
    .testimonial-cards,
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        -webkit-mask-image: none;
        mask-image: none;
    }

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

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

    .footer__main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }

    .footer__brand {
        max-width: none;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --section-padding: var(--space-12);
    }

    .hero {
        padding-top: calc(var(--space-16) + 60px);
        padding-bottom: var(--space-10);
    }

    .hero__title {
        margin-bottom: var(--space-6);
    }

    .header__nav {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-bar__logos {
        gap: var(--space-8);
    }

    .testimonial-card {
        width: 85vw;
        padding: var(--space-6);
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
    }

    /* Pricing Mobile Tweaks */
    .pricing__toggle {
        flex-direction: column;
        border-radius: 20px;
        padding: 4px;
        width: 100%;
        max-width: 320px;
    }

    .pricing__toggle-btn {
        width: 100%;
        padding: 12px;
    }

    .outcomes-table th:nth-child(3),
    .outcomes-table td:nth-child(3) {
        display: none;
    }

    .outcomes-logic__list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }

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

    .founders__content h2 {
        font-size: 2rem;
    }

    .founders__visual {
        margin-top: var(--space-8);
    }

    .logo-carousel {
        max-width: 100%;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }
}

/* --------------------------------------------------------------------------
   20. Utility Classes
   -------------------------------------------------------------------------- */
.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;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mb-12 {
    margin-bottom: var(--space-12);
}

.mt-0 {
    margin-top: 0;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mt-12 {
    margin-top: var(--space-12);
}

/* ==========================================================================
   21. Services Page
   ========================================================================== */

/* Page Body - Full gradient background */
.services-page-body {
    background: linear-gradient(180deg,
            rgb(167, 203, 242) 0%,
            rgb(200, 220, 245) 20%,
            rgb(226, 236, 246) 40%,
            rgb(244, 241, 238) 70%,
            rgb(237, 223, 208) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Services page header - all black text */
.services-page-body .header .header__logo {
    color: var(--text-primary) !important;
}

.services-page-body .header .header__logo-icon rect {
    fill: transparent !important;
    stroke: var(--text-primary) !important;
}

.services-page-body .header .header__logo-icon path {
    stroke: var(--text-primary) !important;
}

.services-page-body .header .nav__link {
    color: var(--text-primary) !important;
}

.services-page-body .header .nav__link:hover {
    color: var(--text-muted) !important;
}

.services-page-body .header .lang-dropdown__trigger {
    color: var(--text-primary) !important;
}

.services-page-body .header .header__cta.btn--primary {
    background: var(--text-primary) !important;
    color: var(--white) !important;
    border-color: var(--text-primary) !important;
}

.services-page-body .header .header__cta.btn--primary:hover {
    background: var(--text-secondary) !important;
    border-color: var(--text-secondary) !important;
}

/* Page Layout */
.services-page {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    padding-top: 100px;
}

/* Mobile Header (hidden on desktop) */
.services-mobile-header {
    display: none;
}

.services-mobile-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--white);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    width: 100%;
    cursor: pointer;
    transition: var(--transition-base);
}

.services-mobile-toggle:hover {
    background: var(--beige-pale);
}

.services-mobile-toggle svg {
    flex-shrink: 0;
}

/* Sidebar - Transparent */
.services-sidebar {
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    padding: var(--space-8) var(--space-6);
    background: transparent;
    border-right: none;
    overflow-y: auto;
}

.services-sidebar__header {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.services-sidebar__title {
    font-family: var(--font-family-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.services-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.services-sidebar__link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.services-sidebar__link:hover {
    background: var(--beige-pale);
    color: var(--text-primary);
}

.services-sidebar__link.is-active {
    background: rgba(167, 203, 242, 0.5);
    color: var(--text-primary);
}

.services-sidebar__link.is-active .services-sidebar__icon svg {
    stroke: var(--text-primary);
}

.services-sidebar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-sidebar__icon svg {
    stroke: var(--text-muted);
    transition: var(--transition-base);
}

.services-sidebar__link:hover .services-sidebar__icon svg {
    stroke: var(--text-primary);
}

/* Overlay for mobile */
.services-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-overlay.is-active {
    display: block;
    opacity: 1;
}

/* Main Content */
.services-content {
    padding: var(--space-8);
    padding-bottom: var(--space-16);
}

/* Service Detail */
.service-detail {
    display: none;
    animation: fadeIn 0.4s ease;
}

.service-detail.is-active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Image */
.service-detail__image {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: var(--space-10);
}

.service-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8);
    background: linear-gradient(to top, rgba(26, 22, 21, 0.9), transparent);
}

.service-detail__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h2);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.service-detail__subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
}

/* Service Body */
.service-detail__body {
    max-width: 100%;
}

.service-detail__intro {
    display: none;
}

/* Sub-offerings with inline lawyer card */
.sub-offerings-wrapper {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

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

.sub-offering {
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.sub-offering:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sub-offering__title {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.sub-offering__description {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Lawyer Card */
.lawyer-card {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--beige-pale);
    border-radius: var(--radius-xl);
    margin-top: var(--space-8);
}

.lawyer-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    flex-shrink: 0;
}

.lawyer-card__info {
    flex: 1;
}

.lawyer-card__name {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.lawyer-card__role {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.lawyer-card__bio {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Inline Lawyer Card - positioned next to sub-offerings */
.lawyer-card--inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-2xl);
    margin-top: 0;
    width: 280px;
    flex-shrink: 0;
    text-align: center;
}

.lawyer-card--inline .lawyer-card__avatar {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

.lawyer-card--inline .lawyer-card__name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
}

.lawyer-card--inline .lawyer-card__role {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.lawyer-card--inline .lawyer-card__bio {
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Horizontal Lawyer Card - Image on the right */
.lawyer-card--horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-8);
    background: #D4C8BC;
    border-radius: var(--radius-2xl);
    margin-top: var(--space-8);
}

.lawyer-card--horizontal .lawyer-card__info {
    flex: 1;
    order: 1;
}

.lawyer-card--horizontal .lawyer-card__avatar {
    order: 2;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    flex-shrink: 0;
}

.lawyer-card--horizontal .lawyer-card__name {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.lawyer-card--horizontal .lawyer-card__role {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.lawyer-card--horizontal .lawyer-card__bio {
    font-size: var(--font-p-base);
    line-height: 1.7;
}

/* Services Footer adjustment */
.services-footer {
    margin-top: 0;
    background: transparent;
}

/* Service Customer Story Reference */
.service-customer-story {
    margin-top: var(--space-10);
}

.service-customer-story__label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.service-customer-story__label svg {
    stroke: var(--brand-gold);
}

.service-customer-story__card {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6);
    background: linear-gradient(135deg, rgba(167, 203, 242, 0.15), rgba(210, 180, 140, 0.15));
    border: 1px solid rgba(167, 203, 242, 0.3);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition-base);
}

.service-customer-story__card:hover {
    background: linear-gradient(135deg, rgba(167, 203, 242, 0.25), rgba(210, 180, 140, 0.25));
    border-color: rgba(167, 203, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-customer-story__content {
    flex: 1;
}

.service-customer-story__title {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    line-height: 1.4;
}

.service-customer-story__excerpt {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-customer-story__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-customer-story__arrow svg {
    stroke: var(--text-secondary);
    transition: var(--transition-base);
}

.service-customer-story__card:hover .service-customer-story__arrow {
    background: var(--brand-blue);
}

.service-customer-story__card:hover .service-customer-story__arrow svg {
    stroke: var(--white);
}

/* Services CTA */
.services-cta {
    margin-top: var(--space-16);
    margin-bottom: var(--space-12);
}

.services-cta__card {
    padding: var(--space-12);
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-beige));
    border-radius: var(--radius-2xl);
    text-align: center;
}

.services-cta__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h3);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.services-cta__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   22. Services Page - Responsive
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .services-page {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }

    .services-mobile-header {
        display: block;
        position: sticky;
        top: 80px;
        z-index: 90;
        padding: var(--space-4) var(--space-6);
        background: var(--bg-main);
        border-bottom: 1px solid var(--stroke);
    }

    .services-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        z-index: 100;
        padding-top: var(--space-6);
        transition: left 0.3s ease;
    }

    .services-sidebar.is-open {
        left: 0;
    }

    .services-sidebar__header {
        margin-top: var(--space-4);
    }

    .services-content {
        padding: var(--space-6);
    }

    .service-detail__image {
        height: 280px;
    }

    .sub-offerings {
        grid-template-columns: 1fr;
    }

    .sub-offerings-wrapper {
        flex-direction: column;
    }

    .lawyer-card--inline {
        width: 100%;
        flex-direction: row;
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-page {
        padding-top: 70px;
    }

    .services-mobile-header {
        top: 70px;
        padding: var(--space-3) var(--space-4);
    }

    .services-content {
        padding: var(--space-4);
    }

    .service-detail__image {
        height: 220px;
        border-radius: var(--radius-xl);
        margin-bottom: var(--space-6);
    }

    .service-detail__image-overlay {
        padding: var(--space-5);
    }

    .service-detail__title {
        font-size: var(--font-h3);
    }

    .service-detail__subtitle {
        font-size: var(--text-base);
    }

    .service-detail__intro {
        font-size: var(--font-p-base);
        margin-bottom: var(--space-6);
    }

    .sub-offerings {
        gap: var(--space-4);
        margin-bottom: var(--space-6);
    }

    .sub-offering {
        padding: var(--space-5);
    }

    .sub-offering__title {
        font-size: var(--text-base);
    }

    .sub-offering__description {
        font-size: var(--text-sm);
    }

    .lawyer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-4);
        padding: var(--space-5);
    }

    .lawyer-card--horizontal {
        flex-direction: column;
        text-align: center;
    }

    .lawyer-card--horizontal .lawyer-card__info {
        order: 2;
    }

    .lawyer-card--horizontal .lawyer-card__avatar {
        order: 1;
        width: 120px;
        height: 120px;
    }

    .lawyer-card__avatar {
        width: 80px;
        height: 80px;
    }

    .lawyer-card__name {
        font-size: var(--text-base);
    }

    .lawyer-card__bio {
        font-size: var(--text-sm);
    }

    /* Customer Story Responsive */
    .service-customer-story__card {
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-5);
    }

    .service-customer-story__title {
        font-size: var(--text-base);
    }

    .service-customer-story__excerpt {
        font-size: var(--text-sm);
    }

    .service-customer-story__arrow {
        width: 36px;
        height: 36px;
    }

    /* Services CTA Responsive */
    .services-cta {
        margin-top: var(--space-10);
        margin-bottom: var(--space-8);
    }

    .services-cta__card {
        padding: var(--space-8) var(--space-6);
    }

    .services-cta__title {
        font-size: var(--text-xl);
    }

    .services-cta__text {
        font-size: var(--text-base);
    }

    /* Sub-offerings wrapper responsive */
    .sub-offerings-wrapper {
        flex-direction: column;
    }

    .lawyer-card--inline {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   NEWS & BLOG PAGES
   -------------------------------------------------------------------------- */

/* News Page Body - No default gradient, handled by sections */
.news-page-body::before {
    display: none;
}

/* News Hero Zone - Blue (top) to Beige (bottom) gradient */
.news-hero-zone {
    position: relative;
    background: linear-gradient(180deg,
            rgb(167, 203, 242) 0%,
            rgb(200, 220, 245) 35%,
            rgb(226, 236, 246) 65%,
            rgb(237, 223, 208) 100%);
}

/* News Cut Zone - Strong solid cut for separation */
.news-cut-zone {
    height: 120px;
    background-color: rgb(237, 223, 208);
}

/* News Content Zone - Cream (top) to Blue (bottom) gradient */
.news-content-zone {
    position: relative;
    background: linear-gradient(180deg,
            rgb(241, 235, 229) 0%,
            rgb(244, 241, 238) 20%,
            rgb(226, 236, 246) 60%,
            rgb(200, 220, 245) 80%,
            rgb(167, 203, 242) 100%);
}

/* News Hero Section */
.news-hero {
    padding: calc(var(--space-24) + 60px) 0 var(--space-12);
    text-align: center;
}

.news-hero__title {
    font-family: var(--font-family-display);
    font-size: 4rem;
    font-weight: var(--font-semibold);
    line-height: 1.1;
    letter-spacing: var(--letter-spacing-h1);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.news-hero__subtitle {
    font-size: var(--font-p-large);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Article Card */
.news-featured {
    padding: var(--space-8) 0 var(--space-20);
}

.news-featured__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-featured__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.news-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-featured__card:hover .news-featured__image img {
    transform: scale(1.05);
}

.news-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-8);
}

.news-featured__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h3);
    font-weight: var(--font-semibold);
    line-height: 1.2;
    color: var(--text-primary);
    margin: var(--space-4) 0;
}

.news-featured__excerpt {
    font-size: var(--font-p-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.news-featured__meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.news-featured__author {
    font-weight: var(--font-medium);
}

.news-featured__date::before {
    content: "•";
    margin-right: var(--space-4);
}

/* News Grid */
.news-grid-section {
    padding: var(--space-20) 0 var(--space-16);
}

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

/* News Card */
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: var(--space-5);
}

.news-card__category {
    display: inline-block;
    width: fit-content;
    padding: var(--space-1) var(--space-3);
    font-size: 12px;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
}

/* Category Colors */
.news-card__category--press {
    background: rgba(50, 213, 131, 0.15);
    color: #1a8a54;
}

.news-card__category--company {
    background: rgba(100, 149, 237, 0.15);
    color: #3d5a99;
}

.news-card__category--team {
    background: rgba(237, 223, 208, 0.8);
    color: var(--text-secondary);
}

.news-card__category--customers {
    background: rgba(201, 80, 46, 0.12);
    color: #a33d24;
}

.news-card__title {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.news-card__excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-4);
    flex-grow: 1;
}

.news-card__meta {
    display: flex;
    align-items: center;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: auto;
}

/* News CTA Section */
.news-cta {
    padding: var(--space-8) 0 var(--space-16);
}

.news-cta__card {
    background: transparent;
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    text-align: center;
}

.news-cta__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h3);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.news-cta__text {
    font-size: var(--font-p-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Active nav link */
.nav__link--active {
    opacity: 0.7;
}

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

    .news-featured__card {
        grid-template-columns: 1fr;
    }

    .news-featured__image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: calc(var(--space-16) + 60px) 0 var(--space-8);
    }

    .news-hero__title {
        font-size: var(--font-h2);
    }

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

    .news-featured__content {
        padding: var(--space-5);
    }

    .news-featured__title {
        font-size: var(--text-2xl);
    }

    .news-cta__card {
        padding: var(--space-8);
    }

    .news-cta__title {
        font-size: var(--text-2xl);
    }
}

/* --------------------------------------------------------------------------
   ARTICLE DETAIL PAGE
   -------------------------------------------------------------------------- */

/* Article Page Body */
.article-page-body::before {
    background: linear-gradient(180deg,
            rgb(250, 250, 250) 0%,
            rgb(249, 248, 248) 20%,
            rgb(244, 241, 238) 45%,
            rgb(244, 241, 238) 100%);
}

/* Article Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Article Header */
.article-header {
    padding: calc(var(--space-32) + 60px) 0 var(--space-8);
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: var(--space-6);
    transition: color 0.2s ease;
}

.article-back:hover {
    color: var(--text-primary);
}

.article-back svg {
    width: 16px;
    height: 16px;
}

.article-header__category {
    margin-bottom: var(--space-4);
}

.article-header__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h2);
    font-weight: var(--font-semibold);
    line-height: 1.15;
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.article-header__meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.article-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.article-author__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.article-author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-author__name {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-primary);
}

.article-author__role {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.article-header__date {
    margin-left: auto;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Article Featured Image */
.article-featured-image {
    margin-bottom: var(--space-10);
}

.article-featured-image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

/* Article Body */
.article-body {
    padding-bottom: var(--space-12);
}

.article-body h2 {
    font-family: var(--font-family-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
}

.article-body h3 {
    font-family: var(--font-family-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
}

.article-body p {
    font-size: var(--font-p-base);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
}

.article-body ul,
.article-body ol {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

.article-body li {
    font-size: var(--font-p-base);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.article-body ul li {
    list-style-type: disc;
}

.article-body ol li {
    list-style-type: decimal;
}

.article-body blockquote {
    border-left: 4px solid var(--beige-warm);
    padding-left: var(--space-6);
    margin: var(--space-8) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-body strong {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

/* Article Related Section */
.article-related {
    padding: var(--space-12) 0 var(--space-16);
    border-top: 1px solid var(--stroke);
}

.article-related__title {
    font-family: var(--font-family-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-8);
    text-align: center;
}

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

/* Article Responsive */
@media (max-width: 768px) {
    .article-header {
        padding: calc(var(--space-24) + 60px) 0 var(--space-6);
    }

    .article-header__title {
        font-size: var(--font-h3);
    }

    .article-header__meta {
        flex-wrap: wrap;
    }

    .article-header__date {
        margin-left: 0;
        width: 100%;
        margin-top: var(--space-3);
        padding-top: var(--space-3);
        border-top: 1px solid var(--stroke);
    }

    .article-related__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   NEW SERVICES PAGE
   -------------------------------------------------------------------------- */

/* Services Selector Section */
.services-selector {
    padding: 0 0 var(--space-12);
}

/* Services Navigation Pills */
.services-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.services-nav__pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.services-nav__pill svg {
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.services-nav__pill:hover {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.services-nav__pill:hover svg {
    opacity: 1;
}

.services-nav__pill.is-active {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-nav__pill.is-active svg {
    opacity: 1;
    stroke: var(--white);
}

/* Service Detail Section */
.services-detail-section {
    padding: var(--space-16) 0 var(--space-8);
}

/* Service Panel */
.service-panel {
    display: none;
}

.service-panel.is-active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

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

/* Service Panel Card */
.service-panel__card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Panel Header */
.service-panel__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.service-panel__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h2);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.service-panel__intro {
    font-size: var(--font-p-base);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Offering Chips */
.service-panel__offerings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.offering-chip {
    padding: var(--space-3) var(--space-5);
    background: transparent;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.offering-chip:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.02);
}

.offering-chip.is-active {
    background: var(--beige-warm);
    border-color: var(--beige-warm);
    color: var(--text-primary);
}

/* Service Panel Expert */
.service-panel__expert {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--beige-light) 0%, rgba(237, 223, 208, 0.3) 100%);
    border-radius: var(--radius-xl);
}

.service-panel__avatar {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-panel__expert-info {
    flex: 1;
}

.service-panel__expert-name {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.service-panel__expert-role {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-1);
}

.service-panel__expert-credential {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-nav {
        gap: var(--space-2);
    }

    .services-nav__pill {
        padding: var(--space-2) var(--space-4);
        font-size: 13px;
    }

    .services-nav__pill svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .services-selector {
        padding: 0 0 var(--space-8);
    }

    .services-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 var(--space-4);
        margin: 0 calc(-1 * var(--space-4));
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

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

    .services-nav__pill span {
        display: none;
    }

    .services-nav__pill svg {
        width: 20px;
        height: 20px;
    }

    .services-nav__pill {
        padding: var(--space-3);
        border-radius: var(--radius-lg);
    }

    .services-detail-section {
        padding: var(--space-10) 0 var(--space-6);
    }

    .service-panel__card {
        padding: var(--space-6);
    }

    .service-panel__title {
        font-size: var(--font-h3);
    }

    .service-panel__offerings {
        gap: var(--space-2);
        margin-bottom: var(--space-8);
    }

    .offering-chip {
        padding: var(--space-2) var(--space-4);
        font-size: 13px;
    }

    .service-panel__expert {
        flex-direction: column;
        text-align: center;
        padding: var(--space-5);
    }

    .service-panel__avatar {
        width: 64px;
        height: 64px;
    }

    .service-panel__expert-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-nav__pill {
        padding: var(--space-2) var(--space-3);
    }

    .offering-chip {
        padding: var(--space-2) var(--space-3);
        font-size: 12px;
    }

    .service-panel__title {
        font-size: var(--text-2xl);
    }

    .service-panel__intro {
        font-size: var(--text-sm);
    }
}

/* ==========================================================================
   COMPANY PAGE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   Company Vision Section
   -------------------------------------------------------------------------- */
.company-vision {
    padding: var(--space-20) 0;
}

.company-vision__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.company-vision__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h2);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.company-vision__statement {
    font-family: var(--font-family-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-medium);
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--space-8);
}

.company-vision__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.company-vision__text p {
    font-size: var(--font-p-base);
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.company-vision__stat {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
}

.company-vision__stat-number {
    display: block;
    font-family: var(--font-family-display);
    font-size: var(--font-h2);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.company-vision__stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .company-vision__grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .company-vision__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .company-vision__statement {
        font-size: var(--text-xl);
    }
}

/* --------------------------------------------------------------------------
   Company Team Section
   -------------------------------------------------------------------------- */
.company-team {
    padding: var(--space-20) 0;
}

.company-team__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.company-team__header .h2 {
    margin-bottom: var(--space-4);
}

.company-team__header .text-lead {
    max-width: 600px;
    margin: 0 auto;
}

/* Founders Row */
.company-team__founders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

/* Team Card */
.team-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-card--founder {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.team-card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--beige-soft);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-card__image img {
    transform: scale(1.05);
}

.team-card__content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card__name {
    font-family: var(--font-family-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.team-card__role {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.team-card__bio {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.team-card__specialty {
    font-size: var(--text-xs);
    color: var(--text-muted);
    padding: var(--space-2) var(--space-3);
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-full);
    display: inline-block;
    margin-top: auto;
}

.team-card__social {
    display: flex;
    gap: var(--space-2);
}

.team-card__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.team-card__social a:hover {
    background: var(--text-primary);
    color: var(--white);
}

/* Lawyers Grid */
.company-team__lawyers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.company-team__lawyers .team-card {
    display: flex;
    flex-direction: column;
}

.company-team__lawyers .team-card__image {
    aspect-ratio: 4/3;
}

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

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

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

    .team-card--founder .team-card__image {
        aspect-ratio: 16/9;
    }

    .company-team__lawyers {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Company Careers Section
   -------------------------------------------------------------------------- */
.company-careers {
    padding: var(--space-20) 0;
}

.company-careers__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.company-careers__header .h2 {
    margin-bottom: var(--space-4);
}

.company-careers__header .text-lead {
    max-width: 600px;
    margin: 0 auto;
}

.company-careers__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}

/* Career Item (Accordion) */
.career-item {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

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

.career-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    cursor: pointer;
    text-align: left;
    background: transparent;
    border: none;
    transition: background var(--transition-fast);
}

.career-item__header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.career-item__info {
    flex: 1;
}

.career-item__title {
    font-family: var(--font-family-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.career-item__meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.career-item__tag {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.06);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.career-item__location {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.career-item__icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

.career-item.is-open .career-item__icon {
    transform: rotate(45deg);
}

/* Career Item Content (Accordion Body) */
.career-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-item.is-open .career-item__content {
    max-height: 800px;
}

.career-item__body {
    padding: 0 var(--space-6) var(--space-6);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: var(--space-6);
}

.career-item__section {
    margin-bottom: var(--space-6);
}

.career-item__section:last-of-type {
    margin-bottom: var(--space-8);
}

.career-item__section h4 {
    font-family: var(--font-family-display);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

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

.career-item__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-item__section ul li {
    position: relative;
    padding-left: var(--space-5);
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--text-secondary);
}

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

/* Careers CTA */
.company-careers__cta {
    text-align: center;
    margin-top: var(--space-12);
    padding: var(--space-8);
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.company-careers__cta p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
    .career-item__header {
        padding: var(--space-4);
    }

    .career-item__title {
        font-size: var(--text-base);
    }

    .career-item__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .career-item__body {
        padding: 0 var(--space-4) var(--space-4);
        padding-top: var(--space-4);
    }
}

/* ==========================================================================
   SERVICES V2 - 3-COLUMN LAYOUT (Ornn-inspired)
   ========================================================================== */

/* Page Body - Dark theme */
.services-v2-body {
    background: #0a0a0a;
    min-height: 100vh;
}

.services-v2-body::before {
    display: none;
}

/* Header overrides for dark page */
.services-v2-body .header .header__logo {
    color: var(--white);
}

.services-v2-body .header .nav__link {
    color: rgba(255, 255, 255, 0.7);
}

.services-v2-body .header .nav__link:hover,
.services-v2-body .header .nav__link--active {
    color: var(--white);
}

.services-v2-body .header .lang-dropdown__trigger {
    color: rgba(255, 255, 255, 0.7);
}

.services-v2-body .header .header__cta.btn--primary {
    background: var(--white);
    color: var(--text-primary);
    border-color: var(--white);
}

.services-v2-body .header .header__cta.btn--primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.services-v2-body .header--scrolled .header__inner {
    background: rgba(10, 10, 10, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Main Container */
.services-v2 {
    padding-top: 120px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

/* Service Row - 3 Column Grid */
.service-row {
    display: grid;
    grid-template-columns: 280px 1fr 200px;
    gap: var(--space-12);
    padding: var(--space-12) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}

.service-row:first-child {
    border-top: none;
    padding-top: var(--space-8);
}

/* Left Column - Service Label */
.service-row__label {
    position: sticky;
    top: 120px;
}

.service-row__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-4);
}

.service-row__description {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    max-width: 240px;
}

/* Middle Column - Offerings List */
.service-row__offerings {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-row__offering {
    font-family: var(--font-family-display);
    font-size: 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.2;
    transition: color 0.3s ease;
    cursor: default;
}

.service-row__offering--primary {
    color: var(--white);
}

.service-row__offering:hover {
    color: rgba(255, 255, 255, 0.7);
}

.service-row__offering--primary:hover {
    color: var(--white);
}

/* Right Column - Attorney */
.service-row__attorney {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
    position: sticky;
    top: 120px;
}

.service-row__attorney-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(100%);
    transition: filter 0.3s ease, border-color 0.3s ease;
}

.service-row:hover .service-row__attorney-img {
    filter: grayscale(0%);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-row__attorney-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.service-row__attorney-name {
    font-family: var(--font-family-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.service-row__attorney-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* CTA Section */
.services-v2-cta {
    padding: var(--space-24) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: var(--space-12);
}

.services-v2-cta__content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.services-v2-cta__title {
    font-family: var(--font-family-display);
    font-size: var(--font-h3);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.services-v2-cta__text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-8);
}

/* Light button variant */
.btn--light {
    background: var(--white);
    color: var(--text-primary);
    border-color: var(--white);
}

.btn--light:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Dark Footer */
.footer--dark {
    background: #0a0a0a;
    padding-top: var(--space-16);
}

.footer__card--dark {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.footer--dark .footer__logo {
    color: var(--white);
}

.footer--dark .footer__tagline {
    color: rgba(255, 255, 255, 0.5);
}

.footer--dark .footer__nav-title {
    color: var(--white);
}

.footer--dark .footer__nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.footer--dark .footer__nav-link:hover {
    color: var(--white);
}

.footer--dark .footer__social-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer--dark .footer__social-btn svg {
    stroke: rgba(255, 255, 255, 0.6);
}

.footer--dark .footer__social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer--dark .footer__social-btn:hover svg {
    stroke: var(--white);
}

.footer--dark .footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.footer--dark .footer__copyright,
.footer--dark .footer__credit {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .service-row {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .service-row__label {
        position: static;
    }

    .service-row__attorney {
        position: static;
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding-top: var(--space-6);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .service-row__attorney-img {
        width: 64px;
        height: 64px;
    }

    .service-row__offering {
        font-size: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .services-v2 {
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: var(--space-8) 0;
    }

    .service-row__tag {
        font-size: 10px;
    }

    .service-row__description {
        max-width: 100%;
    }

    .service-row__offering {
        font-size: 1.25rem;
    }

    .service-row__attorney {
        padding-top: var(--space-4);
    }

    .services-v2-cta__title {
        font-size: var(--text-2xl);
    }
}