/* ========================================
   ROOT VARIABLES & DESIGN TOKENS
   ======================================== */
:root {
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dark: #a8872e;
    --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f0d78c 40%, #c9a84c 60%, #a8872e 100%);
    --gold-gradient-hover: linear-gradient(135deg, #e2c97e 0%, #f5e4a8 40%, #e2c97e 60%, #c9a84c 100%);
    --gold-text-gradient: linear-gradient(135deg, #f0d78c, #c9a84c, #a8872e);

    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #151515;
    --charcoal: #1a1a1a;
    --charcoal-light: #222222;
    --dark-gray: #2a2a2a;
    --medium-gray: #555555;
    --light-gray: #999999;
    --off-white: #e8e8e8;
    --white: #ffffff;

    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg-strong: rgba(255, 255, 255, 0.07);
    --glass-border-strong: rgba(255, 255, 255, 0.12);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Outfit', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
    --shadow-gold-lg: 0 8px 48px rgba(201, 168, 76, 0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-max: 1320px;
    --section-padding: 120px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

::selection { background: rgba(201, 168, 76, 0.3); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a { color: var(--gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed; inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; justify-content: center; }
.logo-icon-pre { font-size: 40px; filter: grayscale(0.3); }
.logo-text-pre {
    font-family: var(--font-heading); font-size: 48px; font-weight: 700;
    background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.preloader-bar { width: 200px; height: 3px; background: var(--charcoal); border-radius: 3px; overflow: hidden; margin: 0 auto; }
.preloader-bar-fill {
    height: 100%; width: 0; background: var(--gold-gradient); border-radius: 3px;
    animation: preloaderFill 1.8s ease-in-out forwards;
}
@keyframes preloaderFill { to { width: 100%; } }

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99998;
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(201,168,76,0.4);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hovering { width: 56px; height: 56px; border-color: var(--gold); }

@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
    background: transparent;
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}
.nav-container {
    max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--white);
}
.logo-icon { font-size: 28px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-sub { font-family: var(--font-accent); font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--light-gray); }

.nav-links { display: flex; gap: 32px; }
.nav-link {
    font-family: var(--font-accent); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--off-white); text-decoration: none;
    position: relative; padding: 4px 0;
    transition: color var(--transition-fast);
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--gold-gradient);
    transition: width var(--transition-base);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { text-align: right; }
.phone-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--light-gray); display: block; }
.phone-number {
    font-family: var(--font-accent); font-size: 18px; font-weight: 700;
    color: var(--gold); text-decoration: none;
}
.nav-btn {
    font-family: var(--font-accent); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 12px 24px; border-radius: var(--radius-sm);
    background: var(--gold-gradient); color: var(--black);
    text-decoration: none; transition: all var(--transition-base);
    border: none; cursor: pointer;
}
.nav-btn:hover { background: var(--gold-gradient-hover); box-shadow: var(--shadow-gold); transform: translateY(-1px); color: var(--black); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span {
    display: block; width: 28px; height: 2px; background: var(--white);
    margin: 6px 0; transition: all var(--transition-base);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all var(--transition-slow);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; }
.mobile-link {
    display: block; font-family: var(--font-heading); font-size: 32px;
    color: var(--white); margin: 20px 0; text-decoration: none;
    transition: color var(--transition-fast);
}
.mobile-link:hover { color: var(--gold); }
.mobile-phone { margin-top: 40px; }
.mobile-phone span { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--light-gray); }
.mobile-phone a {
    font-family: var(--font-accent); font-size: 28px; font-weight: 700;
    color: var(--gold); text-decoration: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-accent); font-size: 14px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 16px 32px; border-radius: var(--radius-sm);
    text-decoration: none; cursor: pointer; border: none;
    transition: all var(--transition-base);
    position: relative; overflow: hidden;
}
.btn-gold {
    background: var(--gold-gradient); color: var(--black);
}
.btn-gold:hover { background: var(--gold-gradient-hover); box-shadow: var(--shadow-gold-lg); transform: translateY(-2px); color: var(--black); }
.btn-glass {
    background: var(--glass-bg-strong); color: var(--white);
    border: 1px solid var(--glass-border-strong);
    backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); color: var(--white); }
.btn-outline-gold {
    background: transparent; color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-lg { padding: 20px 40px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { transition: transform var(--transition-base); }
.btn:hover svg { transform: translateX(4px); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: var(--black);
    padding-top: 100px;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute; width: 2px; height: 2px;
    background: var(--gold); border-radius: 50%; opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
}
@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; transform: translateY(-40px) scale(1); }
    80% { opacity: 0.3; transform: translateY(-200px) scale(0.5); }
}

.hero-container {
    max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 2;
}
.hero-content { padding-right: 40px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-accent); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); padding: 8px 20px;
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px; margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-heading); font-size: clamp(40px, 5vw, 72px);
    font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: var(--white);
}
.title-gold {
    background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-italic { font-style: italic; font-weight: 400; }

.hero-subtitle {
    font-size: 18px; line-height: 1.8; color: var(--light-gray);
    margin-bottom: 36px; max-width: 520px;
}
.hero-subtitle strong { color: var(--gold); font-weight: 600; }

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero-trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}
.trust-badge:hover { background: var(--glass-bg-strong); border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.badge-icon { font-size: 20px; }
.trust-badge span { font-size: 11px; line-height: 1.3; color: var(--light-gray); font-family: var(--font-accent); }

.hero-image {
    position: relative; display: flex; justify-content: center;
}
.hero-image-glow {
    position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 0; animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
.attorney-hero-img {
    position: relative; z-index: 1;
    max-height: 600px; object-fit: cover; object-position: top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
.hero-image-badge {
    position: absolute; bottom: 80px; left: -20px; z-index: 2;
    background: var(--gold-gradient); color: var(--black);
    padding: 20px 24px; border-radius: var(--radius-md);
    text-align: center; box-shadow: var(--shadow-gold-lg);
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.big-number { display: block; font-family: var(--font-heading); font-size: 36px; font-weight: 900; line-height: 1; }
.badge-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.hero-scroll-indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-scroll-indicator span { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--light-gray); }

/* ========================================
   RESULTS TICKER
   ======================================== */
.results-ticker {
    background: var(--white); color: var(--black); padding: 40px 0;
    position: relative; z-index: 5;
}
.ticker-container {
    max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.ticker-item { text-align: center; flex: 1; min-width: 150px; }
.ticker-amount {
    display: block; font-family: var(--font-heading); font-size: 32px; font-weight: 800;
    color: var(--black); position: relative; padding-bottom: 8px;
}
.ticker-amount::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 3px; background: var(--gold-gradient);
}
.ticker-case { font-size: 13px; color: var(--medium-gray); margin-top: 8px; display: block; }
.ticker-divider { width: 1px; height: 50px; background: #ddd; flex-shrink: 0; }

/* ========================================
   DIFFERENTIATORS
   ======================================== */
.differentiators { padding: 80px 0; background: var(--charcoal); }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.diff-card {
    padding: 36px 28px; text-align: center; border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.glass-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.glass-card:hover { background: var(--glass-bg-strong); border-color: rgba(201,168,76,0.25); }
.diff-icon { color: var(--gold); margin-bottom: 20px; display: flex; justify-content: center; }
.diff-card h3 {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
}
.diff-card p { font-size: 14px; color: var(--light-gray); line-height: 1.7; }

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-label {
    font-family: var(--font-accent); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px; color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading); font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.15;
}
.section-subtitle { font-size: 17px; color: var(--light-gray); max-width: 600px; line-height: 1.8; }
.section-header.center { text-align: center; margin-bottom: 64px; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section { padding: var(--section-padding) 0; background: var(--black); position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-col { position: relative; }
.about-image-wrapper {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrapper::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 50%);
}
.about-img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    width: 60%; margin-top: -60px; margin-left: auto; position: relative; z-index: 2;
    border: 4px solid var(--black);
}
.about-img-secondary .about-img { height: 250px; }
.about-floating-stat {
    position: absolute; bottom: 20px; left: 20px; z-index: 3;
    padding: 20px 24px; border-radius: var(--radius-md);
}
.stat-number {
    display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 900;
    background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 12px; color: var(--light-gray); text-transform: uppercase; letter-spacing: 1px; }

.about-content-col .section-label { margin-bottom: 8px; }
.about-text { font-size: 16px; line-height: 1.9; color: var(--light-gray); margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; margin: 36px 0; }
.about-stat { text-align: center; }
.about-stat-number {
    display: block; font-family: var(--font-heading); font-size: 36px; font-weight: 900;
    color: var(--gold);
}
.about-stat-label { font-size: 13px; color: var(--light-gray); text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   PRACTICE AREAS
   ======================================== */
.practice-section { padding: var(--section-padding) 0; background: var(--charcoal); position: relative; }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.tilt-card {
    perspective: 1000px;
    border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer;
}
.tilt-card-inner {
    position: relative; height: 380px; border-radius: var(--radius-md); overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}
.practice-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform var(--transition-slow);
}
.tilt-card:hover .practice-card-bg { transform: scale(1.1); }
.practice-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(10,10,10,0.95) 0%,
        rgba(10,10,10,0.7) 40%,
        rgba(10,10,10,0.4) 100%
    );
    transition: background var(--transition-base);
}
.tilt-card:hover .practice-card-overlay {
    background: linear-gradient(to top,
        rgba(10,10,10,0.98) 0%,
        rgba(10,10,10,0.8) 40%,
        rgba(201,168,76,0.1) 100%
    );
}
.practice-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px; z-index: 2;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}
.tilt-card:hover .practice-card-content { transform: translateY(0); }
.practice-icon { color: var(--gold); margin-bottom: 16px; }
.practice-card-title {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
}
.practice-card-desc {
    font-size: 14px; color: var(--light-gray); line-height: 1.7;
    opacity: 0; max-height: 0; overflow: hidden;
    transition: all var(--transition-base);
}
.tilt-card:hover .practice-card-desc { opacity: 1; max-height: 100px; margin-bottom: 16px; }
.practice-card-link {
    font-family: var(--font-accent); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gold); text-decoration: none;
    opacity: 0; transition: opacity var(--transition-base);
}
.tilt-card:hover .practice-card-link { opacity: 1; }

/* ========================================
   CASE RESULTS
   ======================================== */
.results-section {
    padding: var(--section-padding) 0; background: var(--black); position: relative; overflow: hidden;
}
.results-bg-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 60px 60px;
}
.results-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.result-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md); padding: 32px;
    transition: all var(--transition-base);
    position: relative; overflow: hidden;
}
.result-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.result-card.featured { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.result-card-glow {
    position: absolute; top: -50%; right: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.result-label {
    font-family: var(--font-accent); font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: var(--gold);
    margin-bottom: 8px;
}
.result-amount {
    font-family: var(--font-heading); font-size: 42px; font-weight: 900;
    color: var(--white); line-height: 1;
}
.result-amount span {
    font-size: 18px; font-weight: 400; color: var(--light-gray);
    display: block; margin-top: 4px;
}
.result-type {
    font-family: var(--font-accent); font-size: 14px; font-weight: 600;
    color: var(--gold); margin: 8px 0 12px;
}
.result-desc { font-size: 14px; color: var(--light-gray); line-height: 1.7; margin-bottom: 20px; }
.result-bar { height: 3px; background: var(--dark-gray); border-radius: 3px; overflow: hidden; }
.result-bar-fill { height: 100%; background: var(--gold-gradient); border-radius: 3px; width: 0; transition: width 1.5s ease-out; }
.result-bar-fill.animated { width: var(--bar-width); }

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section { padding: var(--section-padding) 0; position: relative; overflow: hidden; }
.team-marble-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e4dd 50%, #f5f5f0 100%);
    opacity: 0.03;
}
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { border-radius: var(--radius-md); overflow: hidden; }
.team-card-inner {
    background: var(--glass-bg-strong); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md); overflow: hidden;
    transition: all var(--transition-base);
    transform-style: preserve-3d;
}
.team-card:hover .team-card-inner { border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); }
.team-image { position: relative; height: 300px; overflow: hidden; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
}
.team-info { padding: 24px; }
.team-info h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); }
.team-role {
    font-family: var(--font-accent); font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 2px; color: var(--gold);
    display: block; margin: 4px 0 12px;
}
.team-info p { font-size: 13px; color: var(--light-gray); line-height: 1.7; margin-bottom: 16px; }
.team-social { display: flex; gap: 8px; }
.team-social a {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--glass-border); border-radius: 50%;
    color: var(--light-gray); font-size: 12px; text-decoration: none;
    transition: all var(--transition-fast);
}
.team-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section { padding: var(--section-padding) 0; background: var(--charcoal); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card {
    min-width: calc(50% - 12px); margin-right: 24px;
    padding: 40px; border-radius: var(--radius-lg);
    flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); font-size: 20px; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-quote {
    font-family: var(--font-heading); font-size: 18px; font-style: italic;
    color: var(--off-white); line-height: 1.8; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { display: block; font-weight: 600; color: var(--white); font-size: 15px; }
.author-case { display: block; font-size: 13px; color: var(--gold); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.slider-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--glass-bg-strong); border: 1px solid var(--glass-border);
    color: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition-fast);
}
.slider-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--dark-gray); border: none; cursor: pointer;
    transition: all var(--transition-fast);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    padding: 80px 0; position: relative; overflow: hidden;
    background: var(--gold-gradient);
}
.cta-banner-bg {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0, rgba(0,0,0,0.02) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
}
.cta-banner-content { text-align: center; position: relative; z-index: 1; }
.cta-banner h2 {
    font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800; color: var(--black); margin-bottom: 32px; line-height: 1.2;
}
.cta-banner .title-gold { -webkit-text-fill-color: var(--charcoal); color: var(--charcoal); }
.cta-banner-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-banner .btn-gold { background: var(--black); color: var(--gold); }
.cta-banner .btn-gold:hover { background: var(--charcoal); box-shadow: var(--shadow-lg); color: var(--gold-light); }
.cta-banner .btn-outline-gold { border-color: var(--black); color: var(--black); }
.cta-banner .btn-outline-gold:hover { background: var(--black); color: var(--gold); }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section { padding: var(--section-padding) 0; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-intro { font-size: 16px; color: var(--light-gray); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.contact-item strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--light-gray); line-height: 1.6; }
.contact-item a { color: var(--gold); }

.office-locations h4 { font-family: var(--font-heading); font-size: 18px; color: var(--white); margin-bottom: 12px; }
.office-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.office-badge {
    font-size: 12px; padding: 6px 16px; border-radius: 50px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    color: var(--light-gray); font-family: var(--font-accent); letter-spacing: 1px;
}

.contact-form { padding: 40px; border-radius: var(--radius-lg); }
.form-title {
    font-family: var(--font-heading); font-size: 24px; font-weight: 700;
    color: var(--white); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--light-gray); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); color: var(--white);
    font-family: var(--font-body); font-size: 15px;
    transition: all var(--transition-fast);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); background: rgba(201,168,76,0.05);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--medium-gray); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer { font-size: 12px; color: var(--medium-gray); text-align: center; margin-top: 12px; }

/* ========================================
   FOOTER
   ======================================== */
.footer { padding: 80px 0 0; background: var(--charcoal); border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 20px; }
.footer-desc { font-size: 14px; color: var(--light-gray); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--glass-border); border-radius: 50%;
    color: var(--light-gray); text-decoration: none; font-size: 14px;
    transition: all var(--transition-fast);
}
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-links-col h4 {
    font-family: var(--font-heading); font-size: 16px; color: var(--white);
    margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-links-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px;
    background: var(--gold-gradient);
}
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a { font-size: 14px; color: var(--light-gray); transition: all var(--transition-fast); }
.footer-links-col a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
    border-top: 1px solid var(--glass-border); padding: 28px 0;
    text-align: center;
}
.footer-disclaimer { font-size: 12px; color: var(--medium-gray); line-height: 1.7; margin-bottom: 16px; }
.footer-bottom-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links span, .footer-bottom-links a { font-size: 13px; color: var(--light-gray); }

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 900;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gold-gradient); color: var(--black);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold-lg); }

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-on-scroll {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .nav-links { gap: 20px; }
    .nav-link { font-size: 12px; }
}

@media (max-width: 1024px) {
    :root { --section-padding: 80px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { padding-right: 0; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-trust-badges { justify-content: center; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-image-badge { left: 50%; transform: translateX(-50%); }
    @keyframes floatBadge { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
    .results-showcase { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { min-width: calc(100% - 0px); margin-right: 0; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; }
    .ticker-container { flex-direction: column; gap: 24px; }
    .ticker-divider { width: 60px; height: 1px; }
    .practice-grid { grid-template-columns: 1fr; }
    .results-showcase { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .hero-trust-badges { gap: 10px; }
    .trust-badge { padding: 8px 12px; }
    .result-amount { font-size: 32px; }
    .contact-form { padding: 24px; }
    .btn { padding: 14px 24px; font-size: 13px; }
    .btn-lg { padding: 16px 28px; }
}
