/* ==========================================================
   ATLAZ MEDIA — Premium Landing Page Styles
   Orange accent • Light/Dark mode • Mobile-first
   ========================================================== */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;

    /* Orange Palette - Light */
    --primary-color: #e8590c;
    --primary-rgb: 232, 89, 12;
    --primary-hover: #d14b08;
    --accent-color: #f97316;
    --accent-rgb: 249, 115, 22;
    --accent-secondary: #fb923c;
    --accent-secondary-rgb: 251, 146, 60;

    --bg-body: #fafaf9;
    --bg-body-rgb: 250, 250, 249;
    --bg-surface: #ffffff;
    --bg-surface-rgb: 255, 255, 255;
    --bg-alt: #f5f0eb;

    --border-color: #e7e0d8;
    --border-color-rgb: 231, 224, 216;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius: 0.5rem;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 60px rgba(var(--primary-rgb),0.15);
    --shadow-glow-lg: 0 0 100px rgba(var(--primary-rgb),0.25);

    --text-primary: #1c1917;
    --text-secondary: #57534e;
    --text-muted: #a8a29e;

    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(var(--primary-rgb),0.08) 0%, rgba(var(--accent-rgb),0.05) 50%, rgba(var(--accent-secondary-rgb),0.03) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--accent-secondary) 100%);

    --color-success: #10b981;
    --color-success-subtle: rgba(16,185,129,0.1);
    --color-danger: #ef4444;
    --color-danger-subtle: rgba(239,68,68,0.1);
}

[data-theme="dark"] {
    --primary-color: #f97316;
    --primary-rgb: 249, 115, 22;
    --primary-hover: #fb923c;
    --accent-color: #fb923c;
    --accent-rgb: 251, 146, 60;
    --accent-secondary: #fdba74;
    --accent-secondary-rgb: 253, 186, 116;

    --bg-body: #0c0a09;
    --bg-body-rgb: 12, 10, 9;
    --bg-surface: #1c1917;
    --bg-surface-rgb: 28, 25, 23;
    --bg-alt: #292524;

    --border-color: #292524;
    --border-color-rgb: 41, 37, 36;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 60px rgba(var(--primary-rgb),0.2);
    --shadow-glow-lg: 0 0 100px rgba(var(--primary-rgb),0.3);

    --text-primary: #fafaf9;
    --text-secondary: #d6d3d1;
    --text-muted: #78716c;

    --gradient-hero: linear-gradient(135deg, rgba(var(--primary-rgb),0.1) 0%, rgba(var(--accent-rgb),0.08) 50%, rgba(var(--accent-secondary-rgb),0.05) 100%);

    --color-success: #34d399;
    --color-danger: #f87171;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-primary);
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    line-height: 1.6;
}

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
}

a { color: var(--primary-color); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-hover); }

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

.text-center { text-align: center; }
.me-2 { margin-right: 0.5rem; }

/* --- ANIMATIONS --- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- SCROLL PROGRESS --- */
.scroll-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(var(--primary-rgb),0.5);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
    padding: 0.5rem 0;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between; position: relative;
}
@media (min-width: 992px) {
    .nav-container {
        background-color: rgba(var(--bg-surface-rgb), 0.75);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(var(--border-color-rgb), 0.5);
        border-radius: 50rem;
        padding: 0.5rem 1rem 0.5rem 1.5rem;
        box-shadow: var(--shadow-lg);
    }
}
@media (max-width: 991px) {
    .navbar.scrolled {
        background-color: rgba(var(--bg-body-rgb), 0.9);
        backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    }
    .nav-container { padding: 0; }
}
.navbar-brand {
    font-family: var(--font-display); font-weight: 800;
    color: var(--primary-color) !important; font-size: 1.6rem; text-decoration: none;
    display: flex; align-items: center;
}
.nav-links { display: flex; gap: 0.25rem; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-link {
    font-weight: 600; color: var(--text-secondary); text-decoration: none;
    padding: 0.5rem 1rem; border-radius: 50rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link:hover { color: var(--text-primary); background-color: var(--bg-alt); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle-btn {
    background: none; border: 1px solid var(--border-color);
    color: var(--text-secondary); width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: all 0.3s ease;
}
.theme-toggle-btn:hover { color: var(--primary-color); border-color: var(--primary-color); }

/* Mobile menu button */
.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer;
    width: 30px; height: 24px; position: relative; z-index: 1001;
}
.mobile-menu-btn span {
    display: block; width: 100%; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: all 0.3s ease; position: absolute; left: 0;
}
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }
.mobile-menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
    background: rgba(var(--bg-body-rgb), 0.97); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.5rem; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-nav-link {
    font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
    color: var(--text-primary); text-decoration: none; transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--primary-color); }
.mobile-cta { margin-top: 1rem; }

@media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700;
    padding: 0.75rem 1.75rem; border-radius: 50rem; border: none;
    cursor: pointer; font-size: 0.95rem; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 1; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

.btn-fancy-solid {
    background: var(--gradient-primary); color: white;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb),0.3);
}
.btn-fancy-solid::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
    opacity: 0; transition: opacity 0.4s ease;
}
.btn-fancy-solid:hover {
    transform: translateY(-4px) scale(1.02); color: white;
    box-shadow: 0 20px 50px rgba(var(--primary-rgb),0.4);
}
.btn-fancy-solid:hover::before { opacity: 1; }

.btn-fancy-ghost {
    background: transparent; color: var(--primary-color);
    border: 2px solid rgba(var(--primary-rgb),0.3);
}
.btn-fancy-ghost::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gradient-primary); opacity: 0; transition: opacity 0.4s ease;
}
.btn-fancy-ghost:hover {
    border-color: transparent; color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(var(--primary-rgb),0.3);
}
.btn-fancy-ghost:hover::before { opacity: 1; }

/* --- HERO --- */
.hero {
    padding: 160px 0 100px; position: relative; overflow: visible;
    background: var(--bg-body);
}
.hero::before {
    content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 100%; height: 100%;
    background: var(--gradient-hero); z-index: -2;
}
.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }

.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px);
    z-index: -1; animation: float 20s ease-in-out infinite;
}
.hero-orb-1 {
    width: 600px; height: 600px; background: rgba(var(--primary-rgb),0.15);
    top: -200px; left: -100px;
}
.hero-orb-2 {
    width: 500px; height: 500px; background: rgba(var(--accent-rgb),0.12);
    top: 100px; right: -150px; animation-delay: -7s;
}
.hero-orb-3 {
    width: 400px; height: 400px; background: rgba(var(--accent-secondary-rgb),0.1);
    bottom: -100px; left: 30%; animation-delay: -14s;
}

.particles-container {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.particle {
    position: absolute; width: 4px; height: 4px;
    background: rgba(var(--primary-rgb),0.4); border-radius: 50%;
    animation: particle-float linear infinite;
}
.particle:nth-child(odd) { background: rgba(var(--accent-rgb),0.3); }
.particle:nth-child(3n) { width: 6px; height: 6px; background: rgba(var(--accent-secondary-rgb),0.25); }

.gradient-text {
    background: var(--gradient-text); background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.05; letter-spacing: -0.02em; }
.hero-lead { font-size: 1.15rem; color: var(--text-secondary); max-width: 650px; margin: 1.5rem auto 0; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(var(--primary-rgb),0.1);
    border: 1px solid rgba(var(--primary-rgb),0.2);
    padding: 0.5rem 1rem; border-radius: 50rem;
    font-size: 0.85rem; font-weight: 600; color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.75rem; }

.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
    font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
    background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* --- PLATFORMS --- */
.section-platforms { padding: 3rem 0 4rem; text-align: center; }
.platforms-label {
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted); margin-bottom: 1.5rem;
}
.platforms-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.platform-icon {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-muted); transition: color 0.3s ease;
}
.platform-icon i { font-size: 2rem; }
.platform-icon span { font-size: 0.75rem; font-weight: 600; }
.platform-icon:hover { color: var(--primary-color); }

/* --- SECTIONS --- */
.section { padding: 100px 0; position: relative; overflow: hidden; background: var(--bg-body); }
.section-alt {
    background: var(--bg-surface); position: relative;
}
.section-alt::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(var(--primary-rgb),0.03) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(var(--accent-rgb),0.02) 0%, transparent 50%);
    pointer-events: none;
}
.section-gradient {
    background:
        radial-gradient(ellipse 100% 80% at 10% 20%, rgba(var(--primary-rgb),0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 90% 80%, rgba(var(--accent-rgb),0.06) 0%, transparent 50%),
        var(--bg-body);
}
.section-dots::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(var(--primary-rgb),0.08) 1px, transparent 1px);
    background-size: 24px 24px; pointer-events: none; opacity: 0.5;
}
.section-grid-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(var(--border-color-rgb),0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--border-color-rgb),0.3) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none; opacity: 0.4;
}

.section-header { max-width: 700px; margin: 0 auto 4rem; }
.eyebrow {
    color: var(--primary-color); font-weight: 700; font-family: var(--font-display);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem;
    display: block; font-size: 0.85rem;
}
.section-lead { color: var(--text-secondary); font-size: 1.1rem; margin-top: 1rem; }

/* --- COMPARISON CARDS --- */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } }

.comparison-card {
    background: var(--bg-surface); border: 1px solid rgba(var(--border-color-rgb),0.5);
    border-radius: var(--border-radius-xl); padding: 2.5rem; position: relative; overflow: hidden;
}
.comparison-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.comparison-card-pain::before { background: linear-gradient(90deg, #ef4444, #f87171); }
.comparison-card-solution::before { background: var(--gradient-primary); }
.comparison-card h3 { margin-bottom: 1.5rem; }

.comparison-list { list-style: none; }
.comparison-list li { display: flex; align-items: flex-start; margin-bottom: 1.5rem; gap: 1rem; }
.comparison-list li:last-child { margin-bottom: 0; }
.comparison-list i { font-size: 1.5rem; margin-top: 0.15rem; flex-shrink: 0; }
.comparison-list h5 { margin-bottom: 0.25rem; font-size: 1rem; }
.comparison-list p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
.icon-success { color: var(--color-success); }
.icon-danger { color: var(--color-danger); }

/* --- FEATURE CARDS --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 1; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: var(--bg-surface); border: 1px solid rgba(var(--border-color-rgb),0.5);
    border-radius: var(--border-radius-xl); padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--border-radius-xl);
    padding: 1px; background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.feature-card:hover::before { opacity: 1; }
.feature-card h3 { margin: 1rem 0 0.75rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

.feature-icon {
    width: 60px; height: 60px; border-radius: var(--border-radius);
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 8px 20px rgba(var(--primary-rgb),0.3);
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.feature-tag {
    background: rgba(var(--primary-rgb),0.1); color: var(--primary-color);
    padding: 0.25rem 0.75rem; border-radius: 50rem; font-size: 0.75rem; font-weight: 600;
}

/* --- SPLIT SECTION (Content + Visual) --- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .split-section { grid-template-columns: 1fr; } }
.split-content h2 { margin: 0.75rem 0 1rem; }

.icon-list { list-style: none; }
.icon-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.icon-list-icon {
    width: 44px; height: 44px; border-radius: var(--border-radius);
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 6px 16px rgba(var(--primary-rgb),0.25);
}
.icon-list h5 { margin-bottom: 0.25rem; font-size: 1rem; }
.icon-list p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }

/* Phone Mockups */
.phone-mockup-grid { display: flex; gap: 1.5rem; justify-content: center; }
.phone-mockup {
    width: 200px; border-radius: 1.5rem;
    background: var(--bg-surface); border: 2px solid rgba(var(--border-color-rgb),0.5);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.phone-mockup-offset { margin-top: 3rem; }
.phone-screen { padding: 1.5rem 1rem; }
.phone-header {
    font-weight: 700; font-size: 0.85rem; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.5rem; color: var(--text-primary);
}
.phone-content {
    text-align: center; padding: 2rem 0;
}
.phone-content i.fa-play-circle { font-size: 3rem; color: var(--primary-color); display: block; margin-bottom: 1rem; }
.phone-content span { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.phone-stats {
    display: flex; justify-content: center; gap: 1rem; margin-top: 1rem;
    font-size: 0.75rem; color: var(--text-muted);
}
.phone-stats i { color: var(--primary-color); margin-right: 0.25rem; }

/* --- STEPS --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
@media (max-width: 992px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card { position: relative; }
.step-number {
    font-size: 4rem; font-weight: 800; font-family: var(--font-display); line-height: 1;
    background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step-card h3 { margin: 1rem 0 0.75rem; font-size: 1.2rem; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- INDUSTRIES --- */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

.industry-card {
    background: var(--bg-surface); border: 1px solid rgba(var(--border-color-rgb),0.5);
    border-radius: var(--border-radius-lg); padding: 2rem 1.5rem; text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.industry-icon {
    width: 56px; height: 56px; border-radius: var(--border-radius);
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb),0.3);
}
.industry-card h5 { font-size: 0.95rem; margin: 0; }

/* --- TEAM --- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 1; margin-top: 3rem; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
.team-member { text-align: center; }
.team-photo {
    width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 1.5rem;
    background: var(--bg-surface); border: 2px solid rgba(var(--border-color-rgb),0.5);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow); overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.team-member:hover .team-photo { transform: translateY(-6px); border-color: var(--primary-color); }
.team-member h3 { margin-bottom: 0.25rem; font-size: 1.4rem; }
.team-member p { color: var(--primary-color); font-weight: 600; font-size: 0.95rem; }

/* --- CLIENTS --- */
.clients-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.client-box {
    background: var(--bg-surface); border: 1px solid rgba(var(--border-color-rgb),0.5);
    border-radius: var(--border-radius); padding: 1.5rem 2.5rem;
    font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
    color: var(--text-muted); transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; min-width: 180px;
    box-shadow: var(--shadow-sm); filter: grayscale(100%); opacity: 0.7;
}
.client-box:hover {
    color: var(--text-primary); border-color: var(--primary-color);
    box-shadow: var(--shadow-md), var(--shadow-glow); filter: grayscale(0%); opacity: 1;
    transform: translateY(-4px);
}

/* --- BIG QUOTE --- */
.big-quote {
    max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.big-quote-icon { font-size: 3rem; color: rgba(var(--primary-rgb),0.3); margin-bottom: 1rem; }
.big-quote blockquote {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.15;
}
.big-quote-sub { color: var(--text-secondary); max-width: 600px; margin: 1.5rem auto 0; font-size: 1.05rem; }

/* --- FAQ --- */
.faq-container { max-width: 750px; margin: 0 auto; }
.faq-item {
    background: var(--bg-surface); border: 1px solid rgba(var(--border-color-rgb),0.5);
    border-radius: var(--border-radius-lg); margin-bottom: 1rem; overflow: hidden;
}
.faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; font-weight: 600; font-size: 1rem;
    color: var(--text-primary); text-align: left;
    font-family: var(--font-primary);
    transition: background-color 0.3s ease;
}
.faq-question:hover { background: rgba(var(--primary-rgb),0.05); }
.faq-question i {
    transition: transform 0.3s ease; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem;
}
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.08), rgba(var(--accent-rgb),0.05));
}
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}
.faq-answer.open { max-height: 300px; padding: 1.25rem 1.5rem 1.5rem; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* --- QUALIFY SECTION --- */
.qualify-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .qualify-section { grid-template-columns: 1fr; } }
.qualify-content h2 { margin: 0.75rem 0 1rem; }
.qualify-checklist { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.qualify-check {
    display: flex; align-items: center; gap: 0.75rem; font-weight: 600; font-size: 0.95rem;
}
.qualify-check i { color: var(--primary-color); font-size: 1.25rem; }

.qualify-form-wrapper {
    position: relative; z-index: 1;
}
.qualify-form {
    background: var(--bg-surface); border: 1px solid rgba(var(--border-color-rgb),0.5);
    border-radius: var(--border-radius-xl); padding: 2.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.qualify-form h3 { margin-bottom: 1.5rem; text-align: center; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-group input, .form-group select {
    width: 100%; padding: 0.75rem 1rem; border-radius: var(--border-radius);
    border: 1px solid var(--border-color); background: var(--bg-body);
    color: var(--text-primary); font-family: var(--font-primary); font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.2);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-disclaimer { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

/* --- FINAL CTA --- */
.final-cta { max-width: 700px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 1rem; }
.final-cta .btn { margin-top: 1.5rem; }

/* --- FOOTER --- */
footer {
    position: relative; padding: 4rem 0 2rem; background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}
footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 200px; height: 2px; background: var(--gradient-primary); border-radius: 2px;
}
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
@media (max-width: 768px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-content { grid-template-columns: 1fr; } }

.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.75rem; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-socials a {
    color: var(--text-muted); font-size: 1.25rem; transition: color 0.2s ease;
}
.footer-socials a:hover { color: var(--primary-color); }

.footer-links h5 { font-size: 0.9rem; margin-bottom: 1rem; }
.footer-links a { display: block; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.5rem; text-decoration: none; }
.footer-links a:hover { color: var(--primary-color); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-color);
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: var(--text-muted); font-size: 0.85rem; margin-left: 1.5rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--primary-color); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero { padding: 130px 0 80px; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 2.5rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-divider { display: none; }
    .phone-mockup { width: 160px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-lead { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .qualify-form { padding: 1.5rem; }
}
