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

        :root {
            --navy: #1a2744;
            --navy-dark: #0f1a2e;
            --anthracite: #3a3f47;
            --warm-gray: #6b7280;
            --light-gray: #f5f5f3;
            --off-white: #faf9f7;
            --white: #ffffff;
            --gold: #b8965a;
            --gold-light: #d4b87c;
            --gold-muted: rgba(184, 150, 90, 0.1);
            --text-primary: #1a2744;
            --text-secondary: #4a5568;
            --text-muted: #6b7280;
            --border: #e5e5e5;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
            --radius: 8px;
            --radius-lg: 12px;
            --transition: 0.3s ease;
        }

        html { scroll-behavior: smooth; scroll-padding-top: 80px; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-primary);
            background: var(--white);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.3; }

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

        a { text-decoration: none; color: inherit; transition: color var(--transition); }

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

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 32px; border-radius: 6px; font-size: 15px;
            font-weight: 500; cursor: pointer; transition: all var(--transition);
            border: none; font-family: 'Inter', sans-serif; letter-spacing: 0.01em;
        }
        .btn-primary {
            background: var(--navy); color: var(--white);
        }
        .btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .btn-outline {
            background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
        }
        .btn-outline:hover { background: var(--navy); color: var(--white); }
        .btn-gold {
            background: var(--gold); color: var(--white);
        }
        .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
        .btn-white {
            background: var(--white); color: var(--navy);
        }
        .btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .btn-sm { padding: 10px 24px; font-size: 14px; }

        /* ===== HEADER / NAV ===== */
        .header {
            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 transparent;
            transition: all var(--transition);
        }
        .header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

        .header-inner {
            display: flex; align-items: center; justify-content: space-between;
            height: 76px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
        }

        .logo { display: flex; align-items: center; gap: 12px; }
        .logo-icon {
            width: 40px; height: 40px; background: var(--navy);
            border-radius: 6px; display: flex; align-items: center; justify-content: center;
            color: var(--gold); font-family: 'Playfair Display', serif;
            font-size: 18px; font-weight: 700;
        }
        .logo-text { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--navy); letter-spacing: 0; white-space: nowrap; }
        .logo-sub { font-size: 11px; color: var(--warm-gray); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Inter', sans-serif; }

        .nav { display: flex; align-items: center; gap: 32px; }
        .nav a {
            font-size: 14px; font-weight: 500; color: var(--text-secondary);
            position: relative; padding: 4px 0;
        }
        .nav a::after {
            content: ''; position: absolute; bottom: -2px; left: 0;
            width: 0; height: 2px; background: var(--gold);
            transition: width var(--transition);
        }
        .nav a:hover { color: var(--navy); }
        .nav a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--navy); color: var(--white) !important;
            padding: 10px 24px; border-radius: 6px; font-size: 13px !important;
            font-weight: 500; letter-spacing: 0.02em;
        }
        .nav-cta::after { display: none !important; }
        .nav-cta:hover { background: var(--navy-dark); color: var(--white) !important; transform: translateY(-1px); }

        /* Mobile menu */
        .menu-toggle {
            display: none; background: none; border: none; cursor: pointer;
            width: 32px; height: 32px; position: relative;
        }
        .menu-toggle span {
            display: block; width: 22px; height: 2px; background: var(--navy);
            position: absolute; left: 5px; transition: all var(--transition);
        }
        .menu-toggle span:nth-child(1) { top: 9px; }
        .menu-toggle span:nth-child(2) { top: 15px; }
        .menu-toggle span:nth-child(3) { top: 21px; }
        .menu-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

        .mobile-nav {
            display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
            background: var(--white); z-index: 999; padding: 32px 24px;
            overflow-y: auto;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav a {
            display: block; padding: 16px 0; font-size: 17px; font-weight: 500;
            color: var(--text-primary); border-bottom: 1px solid var(--border);
        }
        .mobile-nav .nav-cta {
            display: inline-block; margin-top: 24px; text-align: center; width: 100%;
            padding: 16px; border-radius: 6px;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 680px; padding: 176px 0 76px; position: relative; overflow: hidden;
            display: flex; align-items: flex-end;
            background:
                linear-gradient(90deg, rgba(15,26,46,0.88) 0%, rgba(15,26,46,0.72) 42%, rgba(15,26,46,0.32) 100%),
                url('../images/hero-ankara-night.jpg') center top / cover no-repeat;
        }
        .hero-inner { max-width: 920px; }
        .hero-content { position: relative; z-index: 1; transform: none; }
        .hero h1 {
            font-size: 56px; color: var(--white); margin-bottom: 36px;
            letter-spacing: -0.02em; line-height: 1.15;
            text-shadow: 0 2px 18px rgba(0,0,0,0.22);
        }
        .hero h1 span { color: var(--gold-light); white-space: nowrap; }
        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .hero .btn-primary { background: var(--gold); color: var(--white); }
        .hero .btn-primary:hover { background: var(--gold-light); }
        .hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.82); background: rgba(255,255,255,0.06); }
        .hero .btn-outline:hover { background: var(--white); color: var(--navy); }

        /* ===== TRUST BAND ===== */
        .trust-band {
            background: var(--navy); padding: 0; position: relative; z-index: 2;
        }
        .trust-band-inner {
            display: grid; grid-template-columns: repeat(4, 1fr);
        }
        .trust-item {
            padding: 36px 32px; text-align: center; color: var(--white);
            border-right: 1px solid rgba(255,255,255,0.08);
            position: relative;
        }
        .trust-item:last-child { border-right: none; }
        .trust-number {
            font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600;
            color: var(--gold-light); margin-bottom: 6px;
        }
        .trust-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

        /* ===== SECTIONS ===== */
        .section { padding: 100px 0; }
        .section-light { background: var(--off-white); }
        .section-dark { background: var(--navy); color: var(--white); }

        .section-header { text-align: center; margin-bottom: 64px; }
        .section-header h2 { font-size: 36px; color: var(--navy); margin-bottom: 16px; }
        .section-dark .section-header h2 { color: var(--white); }
        .section-header p { font-size: 17px; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }
        .section-dark .section-header p { color: rgba(255,255,255,0.7); }
        .section-line {
            width: 48px; height: 3px; background: var(--gold);
            margin: 0 auto 20px; border-radius: 2px;
        }

        /* ===== ABOUT PREVIEW ===== */
        .about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-preview-visual {
            position: relative;
        }
        .about-preview-box {
            background: var(--light-gray); border-radius: var(--radius-lg);
            padding: 48px; position: relative; overflow: hidden;
        }
        .about-preview-box::before {
            content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
            background: var(--gold);
        }
        .about-preview-box blockquote {
            font-family: 'Playfair Display', serif; font-size: 22px;
            color: var(--navy); line-height: 1.5; font-style: italic;
        }
        .about-preview-box .source {
            margin-top: 20px; font-family: 'Inter', sans-serif;
            font-size: 14px; color: var(--warm-gray); font-style: normal;
        }

        .about-preview-content h2 { font-size: 36px; margin-bottom: 20px; }
        .about-preview-content p { color: var(--text-secondary); margin-bottom: 16px; font-size: 16px; }
        .about-preview-content .btn { margin-top: 12px; }

        /* ===== PRACTICE AREA CARDS ===== */
        .practice-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
        }
        .practice-card {
            background: var(--white); border: 1px solid var(--border);
            border-radius: var(--radius-lg); padding: 36px 28px;
            transition: all var(--transition); cursor: pointer; position: relative;
            overflow: hidden;
        }
        .practice-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: var(--gold); transform: scaleX(0);
            transition: transform var(--transition); transform-origin: left;
        }
        .practice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
        .practice-card:hover::before { transform: scaleX(1); }

        .practice-icon {
            width: 48px; height: 48px; border-radius: 10px;
            background: var(--gold-muted); display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px; color: var(--gold); font-size: 20px;
        }
        .practice-card h3 { font-size: 18px; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-weight: 600; }
        .practice-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
        .practice-card .card-arrow {
            margin-top: 16px; color: var(--gold); font-size: 14px; font-weight: 500;
            display: inline-flex; align-items: center; gap: 6px;
            opacity: 0; transform: translateX(-8px); transition: all var(--transition);
        }
        .practice-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

        /* ===== CORPORATE SECTION ===== */
        .corporate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
        .corporate-content h2 { font-size: 36px; margin-bottom: 20px; }
        .corporate-content > p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; }
        .corporate-list { list-style: none; }
        .corporate-list li {
            display: flex; align-items: flex-start; gap: 14px;
            padding: 14px 0; border-bottom: 1px solid var(--border);
            font-size: 15px; color: var(--text-secondary);
        }
        .corporate-list li:last-child { border-bottom: none; }
        .corporate-check {
            width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
            background: var(--gold-muted); color: var(--gold);
            display: flex; align-items: center; justify-content: center;
            font-size: 12px; margin-top: 2px;
        }

        .corporate-sidebar {
            background: var(--navy); border-radius: var(--radius-lg);
            padding: 48px; color: var(--white);
        }
        .corporate-sidebar h3 {
            font-size: 22px; margin-bottom: 16px; color: var(--white);
        }
        .corporate-sidebar p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 28px; }
        .corporate-sidebar .btn { width: 100%; justify-content: center; }
        .corporate-sidebar-items { margin-top: 32px; }
        .corporate-sidebar-item {
            padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px; color: rgba(255,255,255,0.8);
            display: flex; align-items: center; gap: 12px;
        }
        .corporate-sidebar-item .num {
            width: 28px; height: 28px; border-radius: 50%;
            border: 1px solid var(--gold); color: var(--gold);
            display: flex; align-items: center; justify-content: center;
            font-size: 12px; font-weight: 600; flex-shrink: 0;
        }

        /* ===== WHY US ===== */
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .why-card {
            padding: 40px 32px; border-radius: var(--radius-lg);
            background: var(--white); border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .why-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
        .why-card h3 {
            font-size: 17px; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-weight: 600;
            display: flex; align-items: center; gap: 10px;
        }
        .why-card h3 .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
        .why-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

        /* ===== SECTORS ===== */
        .sectors-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
        .sector-tag {
            padding: 16px 36px; border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500;
            transition: all var(--transition);
        }
        .sector-tag:hover { border-color: var(--gold); color: var(--gold); }

        /* ===== FAQ ===== */
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-question {
            display: flex; justify-content: space-between; align-items: center;
            padding: 24px 0; cursor: pointer; width: 100%;
            background: none; border: none; text-align: left;
            font-size: 16px; font-weight: 500; color: var(--text-primary);
            font-family: 'Inter', sans-serif; gap: 16px;
        }
        .faq-question:hover { color: var(--navy); }
        .faq-icon {
            width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
            border: 1.5px solid var(--border); display: flex;
            align-items: center; justify-content: center;
            transition: all var(--transition); font-size: 16px; color: var(--warm-gray);
        }
        .faq-item.active .faq-icon { background: var(--navy); border-color: var(--navy); color: var(--white); transform: rotate(45deg); }
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
        }
        .faq-answer-inner {
            padding: 0 0 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.75;
        }
        .faq-item.active .faq-answer { max-height: 300px; }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            padding: 80px 0; text-align: center; position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; top: -100px; right: -100px;
            width: 400px; height: 400px; border-radius: 50%;
            border: 1px solid rgba(184,150,90,0.1);
        }
        .cta-section h2 { font-size: 34px; color: var(--white); margin-bottom: 16px; }
        .cta-section p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
        .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

        /* ===== DETAIL SECTIONS (Practice areas, About, Corporate, FAQ, Contact, Legal) ===== */
        .detail-page-main { padding: 120px 0 80px; }
        

        .detail-header { margin-bottom: 48px; }
        .detail-header h1 { font-size: 40px; margin-bottom: 16px; }
        .detail-header p { font-size: 17px; color: var(--text-secondary); max-width: 720px; }
        .detail-breadcrumb {
            font-size: 13px; color: var(--warm-gray); margin-bottom: 24px;
            display: flex; align-items: center; gap: 8px;
        }
        .detail-breadcrumb a { color: var(--gold); }

        .detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; }
        .detail-content h2 { font-size: 24px; margin: 32px 0 16px; }
        .detail-content h2:first-child { margin-top: 0; }
        .detail-content p { color: var(--text-secondary); margin-bottom: 16px; font-size: 16px; }
        .detail-content ul { list-style: none; margin-bottom: 24px; }
        .detail-content ul li {
            padding: 10px 0; padding-left: 24px; position: relative;
            color: var(--text-secondary); font-size: 15px;
            border-bottom: 1px solid var(--border);
        }
        .detail-content ul li:last-child { border-bottom: none; }
        .detail-content ul li::before {
            content: ''; position: absolute; left: 0; top: 18px;
            width: 8px; height: 8px; border-radius: 50%; background: var(--gold-muted);
            border: 2px solid var(--gold);
        }

        .detail-sidebar { position: sticky; top: 100px; }
        .sidebar-card {
            background: var(--off-white); border-radius: var(--radius-lg);
            padding: 32px; margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 18px; margin-bottom: 16px;
            font-family: 'Inter', sans-serif; font-weight: 600;
        }
        .sidebar-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
        .sidebar-card .btn { width: 100%; justify-content: center; font-size: 14px; }
        .sidebar-nav { list-style: none; }
        .sidebar-nav li {
            border-bottom: 1px solid var(--border);
        }
        .sidebar-nav li a {
            display: block; padding: 14px 0; font-size: 14px; color: var(--text-secondary);
            font-weight: 500; transition: all var(--transition);
        }
        .sidebar-nav li a:hover { color: var(--navy); padding-left: 8px; }
        .sidebar-nav li a.active-link { color: var(--gold); }

        /* About page specifics */
        .about-timeline { margin: 32px 0; }
        .timeline-item {
            display: flex; gap: 20px; padding: 16px 0;
            border-left: 2px solid var(--border); margin-left: 8px; padding-left: 24px;
            position: relative;
        }
        .timeline-item::before {
            content: ''; position: absolute; left: -6px; top: 22px;
            width: 10px; height: 10px; border-radius: 50%;
            background: var(--white); border: 2px solid var(--gold);
        }
        .timeline-year { font-weight: 600; color: var(--navy); font-size: 14px; min-width: 90px; flex-shrink: 0; }
        .timeline-desc { font-size: 15px; color: var(--text-secondary); }

        .principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
        .principle-item {
            padding: 20px; background: var(--off-white); border-radius: var(--radius);
            display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500;
            color: var(--text-primary);
        }
        .principle-item .pi { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

        /* Contact */
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
        .contact-info-items { margin: 32px 0; }
        .contact-info-item {
            display: flex; gap: 16px; align-items: flex-start; padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }
        .contact-info-item:last-child { border-bottom: none; }
        .contact-icon {
            width: 44px; height: 44px; border-radius: 10px;
            background: var(--gold-muted); color: var(--gold);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; flex-shrink: 0;
        }
        .contact-info-item h4 { font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
        .contact-info-item p { font-size: 14px; color: var(--text-secondary); }
        .contact-info-item a { color: var(--text-secondary); }
        .contact-info-item a:hover { color: var(--gold); }
        .contact-buttons { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

        .contact-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; }
        .contact-form h3 { font-size: 22px; margin-bottom: 24px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text-primary); }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%; padding: 12px 16px; border: 1px solid var(--border);
            border-radius: 6px; font-size: 15px; font-family: 'Inter', sans-serif;
            background: var(--white); transition: border-color var(--transition);
            color: var(--text-primary);
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none; border-color: var(--gold);
        }
        .form-group textarea { height: 120px; resize: vertical; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0; }
        .form-checkbox input { margin-top: 4px; accent-color: var(--navy); }
        .form-checkbox label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
        .form-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }

        .map-container {
            margin-top: 48px; border-radius: var(--radius-lg); overflow: hidden;
            height: 320px; background: var(--light-gray);
        }
        .map-container iframe { width: 100%; height: 100%; border: none; }

        /* Legal pages */
        .legal-content { max-width: 800px; margin: 0 auto; }
        .legal-content h2 { font-size: 22px; margin: 32px 0 12px; }
        .legal-content h2:first-child { margin-top: 0; }
        .legal-content p { color: var(--text-secondary); margin-bottom: 12px; font-size: 15px; }
        .legal-content ul { margin: 12px 0 24px 20px; }
        .legal-content ul li { color: var(--text-secondary); font-size: 15px; margin-bottom: 6px; }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--navy-dark); color: rgba(255,255,255,0.7);
            padding: 64px 0 0;
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
        .footer-brand .logo-text { color: var(--white); font-size: 20px; margin-bottom: 12px; }
        .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
        .footer h4 {
            font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
            color: var(--white); text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 20px;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; transition: color var(--transition); }
        .footer-links a:hover { color: var(--gold); }
        .footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
        .footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }

        .footer-bottom {
            margin-top: 48px; padding: 24px 0;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 16px;
        }
        .footer-bottom p { font-size: 13px; }
        .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-legal a { font-size: 13px; transition: color var(--transition); }
        .footer-legal a:hover { color: var(--gold); }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            padding: 20px 24px; z-index: 9999;
            display: flex; align-items: center; justify-content: space-between;
            gap: 24px; flex-wrap: wrap;
        }
        .cookie-banner.hidden { display: none; }
        .cookie-banner p { font-size: 14px; color: var(--text-secondary); max-width: 700px; }
        .cookie-banner a { color: var(--gold); text-decoration: underline; }
        .cookie-buttons { display: flex; gap: 12px; }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed; bottom: 32px; right: 32px;
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--navy); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; border: none; opacity: 0; visibility: hidden;
            transition: all var(--transition); z-index: 990;
            box-shadow: var(--shadow-md);
        }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner { max-width: 760px; }
            .hero h1 { font-size: 38px; }
            .practice-grid { grid-template-columns: repeat(2, 1fr); }
            .about-preview { grid-template-columns: 1fr; gap: 48px; }
            .about-preview-visual { order: 2; }
            .corporate-grid { grid-template-columns: 1fr; gap: 48px; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .detail-grid { grid-template-columns: 1fr; }
            .detail-sidebar { position: static; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav { display: none; }
            .menu-toggle { display: block; }
            .hero { min-height: 560px; padding: 132px 0 48px; background-position: 58% top; }
            .hero h1 { font-size: 34px; }
            .hero h1 span { white-space: normal; }
            .section { padding: 64px 0; }
            .section-header h2 { font-size: 28px; }
            .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
            .trust-item { padding: 24px 16px; }
            .trust-number { font-size: 22px; }
            .practice-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            .hero-buttons { flex-direction: column; }
            .hero-buttons .btn { width: 100%; justify-content: center; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-legal { justify-content: center; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .principles-grid { grid-template-columns: 1fr; }
            .detail-header h1 { font-size: 30px; }
            .cookie-banner { flex-direction: column; text-align: center; }
            .sectors-grid { gap: 12px; }
            .sector-tag { padding: 12px 24px; font-size: 14px; }
        }



        .nav a.active-link { color: var(--navy); }
        .nav a.active-link::after { width: 100%; }
