/* ============================================
   LAV LEGAL P.C. — Redesigned Stylesheet
   "Tech Meets Law Firm"
   ============================================ */

/* Variables */
:root {
    --navy: #0a1628;
    --navy-light: #152238;
    --navy-mid: #0e1d35;
    --gold: #c9a962;
    --gold-light: #ddc48a;
    --gold-dim: rgba(201, 169, 98, 0.15);
    --gold-text: #8a6d2b;
    --cream: #faf9f6;
    --cream-dark: #f0efe9;
    --text: #1a1a1a;
    --text-muted: #3d4250;
    --white-08: rgba(255, 255, 255, 0.08);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-80: rgba(255, 255, 255, 0.8);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
    --blur: 20px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-gold: 0 0 30px rgba(201, 169, 98, 0.2);
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Language Toggle System */
.es { display: none; }
html.spanish .en { display: none; }
html.spanish .es { display: block; }
html.spanish span.es,
html.spanish a.es { display: inline; }
.hidden { display: none !important; }

/* ============================================
   Utility Classes
   ============================================ */
.mono {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dot-pattern {
    background-image: radial-gradient(circle, rgba(201, 169, 98, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* ============================================
   Navigation — Glassmorphic
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-legal,
.logo-accent {
    color: var(--gold);
}

.nav-links {
    display: none;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--white-80);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
    letter-spacing: 0.2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-toggle {
    display: flex;
    background: var(--white-08);
    border-radius: 25px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--mono);
    color: var(--white-60);
    background: transparent;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 1px;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
}

.btn-consultation,
.nav-cta {
    display: none;
    padding: 0.6rem 1.25rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
    letter-spacing: 0.2px;
}

.btn-consultation:hover,
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--glow-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s;
    display: block;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin: 1.5rem 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-links li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 500;
    font-family: var(--serif);
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--gold);
}

.mobile-cta {
    margin-top: 2.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.mobile-menu.active .mobile-cta {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   Buttons — Modern with Glow
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--sans);
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    position: relative;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Arrow in buttons */
.btn .arrow {
    transition: transform var(--transition);
    display: inline-block;
}

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

/* ============================================
   Section Headers — Modern
   ============================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-text);
}

/* On dark backgrounds, use brighter gold */
.team .section-label,
.cta-home .section-label,
[class*="navy"] .section-label {
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Section divider */
.section-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ============================================
   CTA Section — Gradient
   ============================================ */
.cta {
    padding: 5rem 2rem;
    background: var(--cream);
    text-align: center;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--serif);
    font-size: 2.75rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.15;
}

.cta-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* ============================================
   Footer — Modern with Wave
   ============================================ */
.footer-wave {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--navy);
    margin-bottom: -2px;
}

footer {
    background: var(--navy);
    color: var(--white-80);
    padding: 5rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 3.5rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    color: var(--white-60);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white-08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--white-60);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid var(--white-08);
    margin-top: 3.5rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   WhatsApp Float — Enhanced
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 998;
}

.whatsapp-btn {
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    border-radius: 18px;
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 5.25rem;
    right: 1.5rem;
    z-index: 998;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(201, 169, 98, 0.35);
    background: rgba(14, 22, 42, 0.72);
    color: var(--gold, #c9a962);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, background .25s ease, border-color .25s ease, color .25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.back-to-top.is-visible {
    opacity: 0.85;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    opacity: 1;
    background: rgba(201, 169, 98, 0.12);
    border-color: var(--gold, #c9a962);
    color: #ddc48a;
}

/* ============================================
   Trusted By / Logo Strip
   ============================================ */
.trusted-by {
    background: var(--cream);
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(10, 22, 40, 0.04);
    border-bottom: 1px solid rgba(10, 22, 40, 0.04);
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-label {
    text-align: center;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.logos-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logos-wrapper::before,
.logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
}

.logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
}

.logos-track {
    display: flex;
    gap: 2rem;
    animation: slide 40s linear infinite;
    width: max-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-box {
    flex-shrink: 0;
    width: 140px;
    height: 65px;
    background: white;
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.logo-box:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.logo-box img {
    max-width: 80%;
    max-height: 55%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: all var(--transition);
}

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

/* ============================================
   Blog Cards
   ============================================ */
.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-dim);
}

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

.blog-image-wrapper {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    background: radial-gradient(ellipse 120% 100% at 70% 50%, #12233f 0%, #0a1628 55%, #081223 100%);
    height: 200px;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-art { transform: scale(1.04); }

.blog-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 169, 98, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.blog-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(8, 18, 35, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.blog-content {
    padding: 1.75rem;
}

/* Blog card is wrapped in <a>, children don't need separate pointer-events */

.blog-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.blog-tag {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-text);
    background: rgba(201, 169, 98, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Page Header — Shared for inner pages
   ============================================ */
.page-header {
    background: var(--navy);
    padding: 110px 2rem 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(201, 169, 98, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-label {
    display: inline-block;
    font-family: var(--mono);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
}

.page-title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
}

.page-description {
    color: var(--white-60);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Legacy compat */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   Card Base
   ============================================ */
.card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all var(--transition);
    overflow: hidden;
}

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

/* Service/Why/Team card shared hover */
.service-card,
.why-card,
.team-card,
.blog-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* ============================================
   Responsive — Shared
   ============================================ */
@media (min-width: 768px) {
    .nav-container {
        padding: 0 3rem;
    }

    .logo img {
        height: 52px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .btn-consultation,
    .nav-cta {
        display: inline-flex;
    }

    .mobile-menu {
        display: none !important;
    }

    .section-header {
        margin: 0 auto 4rem;
    }

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

    .trusted-by {
        padding: 3.5rem 3rem;
    }

    .cta {
        padding: 6rem 3rem;
    }

    .page-header {
        padding: 130px 3rem 90px;
    }
}

/* clamp() handles responsive sizing for section-title and page-title */

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

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

    .logos-track {
        animation: none;
    }

    .reveal,
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Small screens */
@media (max-width: 374px) {
    .section-title {
        font-size: 2rem;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-header {
        padding: 90px 1rem 50px;
    }
}
