:root {
    --navy: #0a2540;
    --navy-dark: #061829;
    --navy-light: #123456;
    --gold: #c9a227;
    --gold-light: #e4c76a;
    --gold-dark: #a8861a;
    --white: #ffffff;
    --surface: #f4f7fb;
    --surface-2: #eef2f7;
    --black: #020617;
    --silver: #64748b;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: rgba(10, 37, 64, 0.1);
    --border-strong: rgba(10, 37, 64, 0.18);
    --gradient: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    --radius: 14px;
    --shadow: 0 10px 30px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.14);
    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Montserrat', sans-serif;
    --header-h: 88px;
    --accent: var(--gold);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; text-decoration: none; transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s; }
img { max-width: 100%; height: auto; display: block; }

/* Logo — siyah zeminli PNG için beyaz kutu */
.logo-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: var(--shadow);
}
.logo-brand--loader { padding: 14px 24px; }
.logo-brand--footer { margin-bottom: 16px; padding: 10px 18px; background: var(--white); }
.logo-link.logo-brand { flex-shrink: 0; }
.site-logo { height: 68px; width: auto; max-width: 220px; object-fit: contain; }
.footer-logo { height: 72px; width: auto; max-width: 240px; object-fit: contain; }

#pageLoader {
    position: fixed; inset: 0; background: var(--navy-dark); z-index: 99999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
    transition: opacity 0.5s, visibility 0.5s;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#pageLoader p { color: var(--gold-light); font-size: 0.82rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.65} }
.logo-brand--loader { animation: pulse 1.5s ease infinite; }

.top-bar {
    background: var(--navy-dark);
    border-bottom: 2px solid var(--gold);
    font-size: 0.78rem;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; gap: 16px; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.top-brand-name { color: var(--gold-light); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.75rem; }
.top-bar a { color: rgba(255,255,255,0.9); font-weight: 500; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar a.top-cta {
    background: var(--gradient-gold);
    color: var(--navy-dark) !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
}
.top-bar-right a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
}

.main-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
}
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 20px; padding: 10px 0; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links > li > a {
    padding: 10px 14px; font-size: 0.82rem; font-weight: 600;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 6px; border-radius: 8px;
}
.nav-links > li > a:hover { color: var(--gold-dark); background: rgba(201, 162, 39, 0.1); }
.nav-links > li > a.active { color: var(--gold-dark); background: rgba(201, 162, 39, 0.14); }
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius);
    padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.25s; box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; color: var(--text); font-size: 0.85rem; border-radius: 8px; font-weight: 500; }
.dropdown-menu a:hover { background: var(--surface); color: var(--navy); }
.mega-menu { min-width: 480px; left: 50%; transform: translateX(-50%) translateY(8px); }
.has-dropdown:hover .mega-menu { transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px !important; color: var(--text) !important; border-radius: 8px; }
.mega-item i { color: var(--gold-dark); width: 20px; }
.mega-item:hover { background: var(--surface) !important; color: var(--navy) !important; }
.btn-header-cta {
    background: var(--gradient-gold); color: var(--navy-dark);
    padding: 12px 24px; border-radius: 30px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}
.btn-header-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--navy); transition: 0.3s; }

.hero-slider { position: relative; height: 85vh; min-height: 520px; overflow: hidden; }
.slides-wrapper { height: 100%; position: relative; }
.slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide.default-slide { background: var(--gradient); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,24,41,0.88) 0%, rgba(10,37,64,0.72) 100%); }
.slide-content { position: relative; z-index: 2; max-width: 700px; }
.slide-badge {
    display: inline-block; padding: 8px 18px; border: 1px solid var(--gold);
    color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
}
.slide-content h1 {
    font-family: var(--font-script); font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400; line-height: 1.2; margin-bottom: 16px; color: var(--white);
}
.slide-content p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 550px; }
.btn-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient-gold); color: var(--navy-dark); padding: 14px 32px;
    border-radius: 30px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-hero:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 2px solid var(--white); color: var(--white); padding: 14px 32px;
    border-radius: 30px; font-weight: 600; font-size: 0.9rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
    background: rgba(10,37,64,0.6); color: var(--white); cursor: pointer; font-size: 1rem;
}
.slider-prev { left: 20px; } .slider-next { right: 20px; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.35); cursor: pointer; }
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

.service-tags { background: var(--navy); padding: 20px 0; overflow: hidden; border-bottom: 3px solid var(--gold); }
.tags-track { display: flex; gap: 12px; animation: scrollTags 30s linear infinite; width: max-content; }
.tags-track a {
    padding: 10px 24px; border: 1px solid rgba(255,255,255,0.2); border-radius: 30px;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.85); white-space: nowrap; font-weight: 600;
}
.tags-track a:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,162,39,0.1); }
@keyframes scrollTags { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
    display: inline-block; color: var(--gold-dark); font-size: 0.75rem;
    letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; font-weight: 700;
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); line-height: 1.3;
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 16px auto 0; }

.stats-section { background: var(--gradient); padding: 60px 0; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item i { font-size: 2rem; color: var(--gold-light); margin-bottom: 12px; }
.stat-value { font-size: 2.5rem; font-weight: 800; color: var(--white); }
.stat-value span { color: var(--gold-light); }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 4px; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card-item {
    background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius);
    padding: 32px; transition: all 0.3s; box-shadow: var(--shadow);
}
.card-item:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.card-item .card-icon {
    width: 56px; height: 56px; border-radius: 14px; background: rgba(201, 162, 39, 0.12);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold-dark); margin-bottom: 20px;
}
.card-item h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); font-weight: 700; }
.card-item p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.card-link { color: var(--gold-dark); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.card-link i { margin-left: 6px; transition: transform 0.2s; }
.card-item:hover .card-link i { transform: translateX(4px); }

.why-section { background: var(--gradient); color: var(--white); }
.why-section .section-label { color: var(--gold-light); }
.why-section .section-header h2, .why-content h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.why-content p { color: rgba(255,255,255,0.82); margin-bottom: 24px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-feat { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.9); }
.why-feat i { color: var(--gold-light); margin-top: 4px; }

.project-card {
    border-radius: var(--radius); overflow: hidden; background: var(--white);
    border: 1px solid var(--border-strong); transition: 0.3s; box-shadow: var(--shadow);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.project-img { height: 200px; background: var(--surface-2); background-size: cover; background-position: center; }
.project-body { padding: 24px; }
.project-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.project-body .brand { color: var(--gold-dark); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

.influencer-card {
    text-align: center; background: var(--white); border: 1px solid var(--border-strong);
    border-radius: var(--radius); padding: 32px 24px; transition: 0.3s; box-shadow: var(--shadow);
}
.influencer-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.influencer-avatar {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px;
    background: var(--surface-2); background-size: cover; background-position: center;
    border: 3px solid var(--gold);
}
.influencer-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--navy); }
.influencer-card .cat { color: var(--gold-dark); font-size: 0.8rem; margin-bottom: 8px; font-weight: 600; }
.influencer-card .followers { color: var(--text-muted); font-size: 0.85rem; }
.influencer-social { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.influencer-social a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.influencer-social a:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,162,39,0.08); }

.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-item {
    background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius);
    padding: 40px; text-align: center; display: none; box-shadow: var(--shadow);
}
.testimonial-item.active { display: block; }
.testimonial-item blockquote { font-size: 1.05rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-item .author { font-weight: 700; color: var(--navy); }
.testimonial-item .brand-name { color: var(--gold-dark); font-size: 0.85rem; font-weight: 600; }
.testimonial-nav { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); border: none; cursor: pointer; }
.testimonial-dot.active { background: var(--gold); }

.partners-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.partners-strip img { height: 50px; filter: grayscale(1); opacity: 0.7; transition: 0.3s; }
.partners-strip img:hover { filter: none; opacity: 1; }
.partner-placeholder {
    padding: 16px 32px; border: 1px solid var(--border-strong); border-radius: 8px;
    color: var(--text-muted); font-size: 0.9rem; background: var(--white);
}

.blog-card {
    background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius);
    overflow: hidden; transition: 0.3s; box-shadow: var(--shadow);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 180px; background: var(--surface-2); background-size: cover; background-position: center; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 0.75rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; font-weight: 700; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; color: var(--navy); }
.blog-body p { color: var(--text-muted); font-size: 0.88rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.gallery-item {
    aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: var(--surface-2);
    background-size: cover; background-position: center; cursor: pointer; transition: 0.3s;
    border: 2px solid transparent;
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--gold); }

.contact-cta { background: var(--white); border-top: 1px solid var(--border-strong); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 14px 18px; background: var(--surface);
    border: 1px solid var(--border-strong); border-radius: 10px; color: var(--text);
    font-family: var(--font-sans); font-size: 0.9rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.btn-primary {
    background: var(--gradient-gold); color: var(--navy-dark); border: none; padding: 14px 32px;
    border-radius: 30px; font-weight: 700; cursor: pointer; font-family: var(--font-sans);
    text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}
.btn-primary.full { width: 100%; }
.btn-primary:hover { filter: brightness(1.05); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item i { color: var(--gold-dark); font-size: 1.2rem; margin-top: 4px; }
.contact-info-item strong { color: var(--navy); }

.page-hero {
    padding: 100px 0 60px; background: var(--gradient); text-align: center;
    border-bottom: 3px solid var(--gold);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; color: var(--white); font-weight: 800; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.page-hero .breadcrumb a { color: var(--gold-light); }

.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 60px 0; }
.detail-content { background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.detail-content h2 { margin: 24px 0 12px; color: var(--navy); }
.detail-sidebar .sidebar-box {
    background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius);
    padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow);
}
.detail-sidebar h4 { margin-bottom: 16px; color: var(--gold-dark); font-weight: 700; }

.float-whatsapp, .float-form {
    position: fixed; right: 24px; width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
    z-index: 999; border: none; cursor: pointer; box-shadow: var(--shadow-lg); transition: 0.3s;
}
.float-whatsapp { bottom: 24px; background: #25d366; color: white; }
.float-form { bottom: 90px; background: var(--gradient-gold); color: var(--navy-dark); }
.float-whatsapp:hover, .float-form:hover { transform: scale(1.08); }

.modal-overlay {
    position: fixed; inset: 0; background: rgba(6,24,41,0.75); z-index: 10000;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius);
    padding: 40px; max-width: 480px; width: 100%; position: relative; box-shadow: var(--shadow-lg);
}
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; }
.form-modal-box h3 { text-align: center; margin-bottom: 24px; font-size: 1.3rem; line-height: 1.4; color: var(--navy); font-weight: 800; }
.form-modal-box h3 span { color: var(--gold-dark); font-size: 0.9rem; }
.form-modal-box input, .form-modal-box select, .form-modal-box textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 8px;
    background: var(--surface); color: var(--text); font-family: var(--font-sans);
}
.form-modal-box .form-group { margin-bottom: 14px; }

.main-footer { background: var(--navy-dark); border-top: 3px solid var(--gold); padding: 60px 0 0; color: rgba(255,255,255,0.85); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 { color: var(--gold-light); margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.footer-col p, .footer-col li { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-footer-cta {
    margin-top: 16px; background: var(--gradient-gold); border: none;
    color: var(--navy-dark); padding: 10px 24px; border-radius: 30px; cursor: pointer;
    font-family: var(--font-sans); font-weight: 700; font-size: 0.8rem;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; text-align: center; color: rgba(255,255,255,0.55); font-size: 0.82rem; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
    padding: 10px 16px; border: 1px solid var(--border-strong); border-radius: 8px; color: var(--text-muted); font-size: 0.85rem; background: var(--white);
}
.pagination a:hover, .pagination span.active { border-color: var(--gold); color: var(--gold-dark); font-weight: 700; }

.content-html p { margin-bottom: 1em; color: var(--text-muted); line-height: 1.8; }
.content-html ul { margin: 1em 0; padding-left: 1.5em; color: var(--text-muted); }
.content-html li { margin-bottom: 0.5em; }
.content-html h2, .content-html h3, .content-html h4 { color: var(--navy); margin: 1.2em 0 0.6em; }

.section-dark { background: var(--gradient) !important; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-label { color: var(--gold-light); }

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .contact-grid, .detail-layout, .footer-grid { grid-template-columns: 1fr; }
    .mega-menu { min-width: 300px; }
}
@media (max-width: 768px) {
    .top-bar-left a:not(.top-cta) { display: none; }
    .top-brand-name { display: none; }
    .nav-links {
        position: fixed; top: calc(var(--header-h) + 42px); left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column; padding: 24px;
        transform: translateX(100%); transition: 0.3s; align-items: stretch;
        box-shadow: var(--shadow-lg); z-index: 999;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links > li > a { padding: 16px; border-bottom: 1px solid var(--border); color: var(--navy); }
    .dropdown-menu, .mega-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; background: var(--surface); padding-left: 16px;
    }
    .mobile-menu-btn { display: flex; }
    .btn-header-cta { display: none; }
    .hero-slider { height: 70vh; }
    .site-logo { height: 56px; }
}
