:root {
            --primary: #1B3A5C;
            --primary-dark: #122840;
            --primary-light: #2A5A8C;
            --accent: #C5A044;
            --white: #FFFFFF;
            --off-white: #F7F8FA;
            --light-gray: #E8ECF1;
            --text-dark: #1A1A2E;
            --text-medium: #4A4A5A;
            --text-light: #6B7280;
            --font-body: 'Inter', sans-serif;
            --font-heading: 'Playfair Display', Georgia, serif;
            --max-width: 1200px;
            --section-padding: 100px 0;
            --transition: all 0.3s ease;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.7; background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

        /* NAVIGATION */
        .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--light-gray); transition: var(--transition); }
        .navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
        .nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .logo { display: flex; align-items: center; gap: 14px; }
        .logo-svg { height: 56px; width: auto; color: var(--primary); }
        .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
        .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-medium); position: relative; padding: 4px 0; }
        .nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.active { color: var(--primary); }
        .nav-links a.active::after { width: 100%; }
        .nav-cta { background: var(--primary); color: var(--white) !important; padding: 10px 24px !important; border-radius: 6px; font-weight: 600 !important; font-size: 0.85rem !important; letter-spacing: 0.3px; }
        .nav-cta::after { display: none !important; }
        .nav-cta:hover { background: var(--primary-light) !important; color: var(--white) !important; transform: translateY(-1px); }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
        .menu-toggle span { width: 24px; height: 2px; background: var(--primary); transition: var(--transition); }

        /* LANGUAGE SWITCHER */
        .lang-switcher { position: relative; margin-left: 12px; }
        .lang-toggle { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--light-gray); border-radius: 6px; cursor: pointer; font-size: 0.82rem; font-weight: 500; color: var(--text-medium); background: transparent; transition: var(--transition); font-family: var(--font-body); }
        .lang-toggle:hover { border-color: var(--primary); color: var(--primary); }
        .lang-toggle .lang-globe { font-size: 1rem; line-height: 1; }
        .lang-toggle .lang-arrow { font-size: 0.6rem; margin-left: 2px; transition: transform 0.2s ease; }
        .lang-switcher.open .lang-arrow { transform: rotate(180deg); }
        .lang-dropdown { position: absolute; top: calc(100% + 6px); right: 0; background: var(--white); border: 1px solid var(--light-gray); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); min-width: 120px; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: all 0.2s ease; z-index: 100; overflow: hidden; }
        .lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .lang-dropdown a, .lang-dropdown span { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 0.85rem; font-weight: 500; color: var(--text-medium); transition: var(--transition); text-decoration: none; }
        .lang-dropdown a:hover { background: var(--off-white); color: var(--primary); }
        .lang-dropdown .lang-active { color: var(--primary); font-weight: 600; background: var(--off-white); cursor: default; }
        .lang-dropdown .lang-flag { font-size: 1.1rem; line-height: 1; }

        /* PAGE HERO */
        .page-hero {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            padding: 80px 0 72px;
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(197,160,68,0.08) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute; right: 8%; top: 10%; bottom: 10%; width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(197,160,68,0.2), transparent);
            pointer-events: none;
        }
        .page-hero .container { position: relative; z-index: 2; }
        .page-hero-badge {
            display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
            text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
            padding: 8px 0; border-bottom: 1px solid rgba(197,160,68,0.3);
        }
        .page-hero h1 {
            font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600; color: var(--white); line-height: 1.25; margin-bottom: 18px;
        }
        .page-hero p {
            font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 640px;
        }

        /* BREADCRUMB */
        .breadcrumb {
            display: flex; align-items: center; gap: 8px;
            margin-bottom: 20px; font-size: 0.8rem;
        }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 2; }
        .breadcrumb span { color: rgba(255,255,255,0.75); }

        /* SECTIONS */
        section { padding: var(--section-padding); }
        .section-header { text-align: center; margin-bottom: 64px; }
        .section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary-light); margin-bottom: 16px; }
        .section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; color: var(--text-dark); line-height: 1.3; margin-bottom: 18px; }
        .section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.7; }


        /* FINAL CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            text-align: center; position: relative; overflow: hidden;
        }
        .final-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 50% 50%, rgba(197,160,68,0.06) 0%, transparent 70%); }
        .final-cta .container { position: relative; z-index: 2; }
        .final-cta h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; color: var(--white); margin-bottom: 18px; }
        .final-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
        .btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 6px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); letter-spacing: 0.3px; }
        .btn-primary { background: var(--accent); color: var(--primary-dark); }
        .btn-primary:hover { background: #d4ad4e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197,160,68,0.3); }

        /* FOOTER */
        .footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.5fr 1.5fr; gap: 48px; margin-bottom: 48px; }
        .footer-logo-svg { height: 64px; width: auto; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
        .footer-brand p { margin-top: 18px; font-size: 0.9rem; line-height: 1.7; }
        .footer h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 20px; letter-spacing: 0.3px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
        .footer-links a:hover { color: var(--accent); padding-left: 4px; }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
        .footer-contact-item a { color: rgba(255,255,255,0.6); }
        .footer-contact-item a:hover { color: var(--accent); }
        .footer-contact-item svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 28px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
        .footer-legal-links { display: flex; align-items: center; gap: 12px; }
        .footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
        .footer-legal-links a:hover { color: var(--accent); }
        .footer-legal-sep { color: rgba(255,255,255,0.2); font-size: 0.9rem; }
        .footer-links-2col { columns: 2; column-gap: 20px; }
        .footer-links-2col li { break-inside: avoid; }
        .footer-links-2col a { font-size: 0.84rem; }
        .footer-social { display: flex; gap: 12px; margin-top: 20px; }
        .footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); transition: var(--transition); }
        .footer-social a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-2px); }
        .footer-social svg { width: 18px; height: 18px; }

        /* PRACTICE AREA — INTRO + SIDEBAR */
        .pa-intro { background: var(--off-white); }
        .pa-intro-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }
        .pa-intro-text h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; color: var(--text-dark); margin-bottom: 24px; line-height: 1.3; }
        .pa-intro-text p { font-size: 1rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 20px; }
        .pa-sidebar { background: var(--white); border-radius: 12px; border: 1px solid var(--light-gray); padding: 36px 32px; position: sticky; top: 110px; }
        .pa-sidebar h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--accent); }
        .pa-sidebar-links { list-style: none; }
        .pa-sidebar-links li { margin-bottom: 6px; }
        .pa-sidebar-links a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; color: var(--text-medium); font-weight: 500; transition: var(--transition); }
        .pa-sidebar-links a:hover { background: var(--off-white); color: var(--primary); }
        .pa-sidebar-links a.current { background: var(--primary); color: var(--white); }
        .pa-sidebar-links a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

        /* PRACTICE AREA — SERVICE CARDS */
        .pa-services { background: var(--white); }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
        .service-card { background: var(--off-white); border-radius: 12px; padding: 36px 32px; border: 1px solid var(--light-gray); transition: var(--transition); position: relative; overflow: hidden; }
        .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
        .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,92,0.08); border-color: transparent; }
        .service-card:hover::before { transform: scaleX(1); }
        .service-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .service-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
        .service-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
        .service-card p { font-size: 0.93rem; color: var(--text-medium); line-height: 1.7; }
        .service-card ul { list-style: none; margin-top: 14px; }
        .service-card ul li { font-size: 0.9rem; color: var(--text-medium); line-height: 1.6; padding: 6px 0; padding-left: 22px; position: relative; }
        .service-card ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: 0.6; }

        /* PRACTICE AREA — WHY US */
        .pa-why { background: var(--off-white); }
        .pa-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .pa-why-card { text-align: center; padding: 36px 28px; background: var(--white); border-radius: 12px; border: 1px solid var(--light-gray); transition: var(--transition); }
        .pa-why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(27,58,92,0.06); }
        .pa-why-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
        .pa-why-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
        .pa-why-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
        .pa-why-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; }

        /* PRACTICE AREA — OTHER AREAS NAV */
        .pa-other { background: var(--white); }
        .pa-other-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
        .pa-other-card { flex: 0 1 calc(25% - 12px); min-width: 220px; padding: 24px 20px; border-radius: 10px; border: 1px solid var(--light-gray); transition: var(--transition); display: flex; align-items: center; gap: 14px; }
        .pa-other-card:hover { border-color: var(--primary); background: rgba(27,58,92,0.02); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,92,0.06); }
        .pa-ov-number { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--primary); opacity: 0.25; min-width: 26px; }
        .pa-other-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
        .pa-other-card:hover h3 { color: var(--primary); }

        /* RESPONSIVE */
        @media (max-width: 1080px) {
            .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 0; border-bottom: 1px solid var(--light-gray); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
            .nav-links.active { display: flex; }
            .nav-links li { width: 100%; }
            .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--light-gray); }
            .nav-links a::after { display: none; }
            .nav-cta { text-align: center; margin-top: 12px; border-bottom: none !important; }
            .menu-toggle { display: flex; }
            .lang-switcher { margin-left: auto; margin-right: 8px; }
            .lang-toggle { padding: 4px 8px; font-size: 0.78rem; }
            .lang-dropdown { right: 0; min-width: 100px; }
            .pa-intro-grid { grid-template-columns: 1fr; gap: 40px; }
            .pa-sidebar { position: static; }
            .pa-why-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
        }
        @media (max-width: 768px) {
            :root { --section-padding: 64px 0; }
            .page-hero { padding: 60px 0 52px; }
            .services-grid { grid-template-columns: 1fr; }
            .pa-other-grid { flex-direction: column; }
            .pa-other-card { flex: 1 1 100%; min-width: 0; }
            .pa-why-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; font-size: 0.7rem; }
            .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 8px; }
            .footer-legal-links a { font-size: 0.7rem; }
            .footer-legal-sep { font-size: 0.7rem; }
        }
        @media (max-width: 480px) {
            .footer-bottom { font-size: 0.62rem; }
            .footer-legal-links a { font-size: 0.62rem; }
            .footer-legal-sep { font-size: 0.62rem; }
        }

        /* ANIMATIONS */
        .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
