/* ============================================
   DETECTIVE AGENCY — NOIR DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;

    --navy-deep: #0F172A;
    --navy-mid: #1E293B;
    --navy-light: #334155;

    --gold: #C5A059;
    --gold-dim: #E5D5B7;
    --gold-extralight: #FDFBF7;

    --text-main: #111827;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;

    --danger: #991B1B;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 24px;

    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --container-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--navy-deep);
    text-decoration: none;
    transition: all 0.3s var(--transition);
}

a:hover {
    color: var(--gold);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 10px;
    border: 2px solid var(--bg-tertiary);
}

/* ---- CUSTOM CURSOR / FLASHLIGHT ---- */
.flashlight-cursor {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, .07) 0%, transparent 70%);
    mix-blend-mode: screen;
    transition: opacity .3s;
    opacity: 0;
}

body:hover .flashlight-cursor {
    opacity: 1;
}

/* ---- GSAP ANIMATION HELPERS ---- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

/* ---- SECTION DEFAULTS ---- */
section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--navy-deep);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.section-title span.gold {
    color: var(--gold);
    font-style: italic;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 680px;
    margin-bottom: 56px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    height: 48px;
    transition: transform 0.3s;
}

header .logo:hover img {
    transform: scale(1.05);
}

header .menu nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
}

header .menu nav ul li a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

header .menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--transition);
}

header .menu nav ul li a:hover::after,
header .menu nav ul li a.active::after {
    width: 100%;
}

header .menu nav ul li a:hover,
header .menu nav ul li a.active {
    color: var(--gold);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--navy-deep);
    cursor: pointer;
    transition: var(--transition);
}

.close-nav-btn {
    position: absolute;
    top: 24px;
    right: 24px;
}

header .actions .whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-deep);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.2);
}

header .actions .whatsapp:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px rgba(197, 160, 89, 0.35);
}

/* ---- PERSISTENT CTA ---- */
.persistent-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.persistent-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.persistent-cta .cta-phone {
    background: var(--gold);
    color: var(--noir-black);
}

.persistent-cta .cta-whatsapp {
    background: #25D366;
    color: #fff;
}

.persistent-cta a:hover {
    transform: scale(1.12);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #FFFFFF 0%, #F8FAFC 100%);
    padding-top: 100px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-extralight);
    border: 1px solid var(--gold-dim);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--navy-deep);
    line-height: 1;
    margin-bottom: 28px;
    font-weight: 900;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy-deep);
    color: white;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(197, 160, 89, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--navy-deep);
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--bg-tertiary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
}

.hero-img-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s;
}

.hero-img-wrapper:hover img {
    transform: scale(1.03);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-tertiary);
}

.hero-stat h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy-deep);
    font-weight: 800;
}

.hero-stat p {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   BRAND MARQUEE
   ============================================ */
.brand-marquee {
    padding: 64px 0;
    background: white;
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll marquee 40s linear infinite;
    width: max-content;
}

.marquee-item img {
    max-height: 48px;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.4s;
}

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 56px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s var(--transition);
}

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

.service-card .card-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-extralight);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 32px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 16px;
    font-weight: 800;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

.service-card .card-link {
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--navy-deep);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .card-link i {
    transition: transform 0.3s;
}

.service-card:hover .card-link i {
    transform: translateX(8px);
    color: var(--gold);
}

/* ============================================
   EVIDENCE ARCHIVE (REVIEWS)
   ============================================ */
.evidence-section {
    background: white;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.evidence-card {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid var(--bg-tertiary);
}

.evidence-card::after {
    content: '\f10e';
    font-family: 'line-awesome';
    position: absolute;
    top: 32px;
    right: 40px;
    font-size: 3rem;
    color: var(--gold-dim);
    opacity: 0.2;
}

.ev-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ev-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 4px white;
}

.ev-name {
    font-weight: 800;
    color: var(--navy-deep);
    font-size: 1.125rem;
}

.ev-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.ev-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
}

.ev-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px;
}

.stamp {
    display: inline-block;
    padding: 4px 12px;
    border: 2px solid var(--danger);
    color: var(--danger);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transform: rotate(-3deg);
    opacity: 0.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, white, var(--bg-secondary));
}

/* ============================================
   PAGE HERO SYSTEM (ABOUT, SERVICES, CONTACT)
   ============================================ */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, white, var(--bg-secondary));
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--navy-deep);
    line-height: 1.1;
    margin-bottom: 32px;
}

.page-hero-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.page-hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.about-stat-card {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-stat-card h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 800;
}

.about-stat-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Mission boxes */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.mission-box {
    padding: 56px;
    background: white;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-md);
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.mission-box h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--navy-deep);
    margin-bottom: 20px;
    font-weight: 800;
}

.mission-box p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 48px;
    margin-top: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg-tertiary);
}

.timeline-item {
    position: relative;
    margin-bottom: 56px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--gold-dim);
}

.timeline-item h4 {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.timeline-item .year {
    font-family: var(--font-mono);
    font-size: 0.825rem;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 700;
}

.timeline-item p {
    color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
}

.contact-form-noir {
    background: white;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 64px;
    box-shadow: var(--shadow-lg);
}

.contact-form-noir h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 12px;
    font-weight: 800;
}

.contact-form-noir>p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    color: var(--navy-mid);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 2px solid var(--bg-tertiary);
    color: var(--text-main);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 5px var(--gold-extralight);
}

.form-group textarea {
    min-height: 160px;
}

.contact-info-noir {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: white;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius);
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.contact-info-card:hover {
    transform: translateX(12px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .ci-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-extralight);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--navy-deep);
    text-align: center;
    padding: 120px 0;
    color: white;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 24px;
    font-weight: 800;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: white;
    border-top: 1px solid var(--bg-tertiary);
    padding: 100px 0 40px;
}

footer .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 64px;
}

footer .description p {
    color: var(--text-muted);
    line-height: 1.8;
}

footer .contact {
    margin-top: 32px;
}

footer .contact div:first-child {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 4px;
}

footer .contact div:last-child {
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 1.125rem;
}

footer .menu .title {
    font-family: var(--font-heading);
    color: var(--navy-deep);
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 800;
}

footer .menu a {
    display: block;
    color: var(--text-muted);
    padding: 8px 0;
    transition: all 0.3s;
    font-weight: 500;
}

footer .menu a:hover {
    color: var(--gold);
    padding-left: 10px;
}

footer .copyright {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copyright .text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

footer .copyright .policy a {
    color: var(--text-light);
    margin-left: 32px;
    font-size: 0.875rem;
    font-weight: 500;
}

footer .copyright .policy a:hover {
    color: var(--gold);
}

/* Newsletter */
.newsletter-bg {
    background: var(--bg-secondary);
    padding: 80px 0;
    border-top: 1px solid var(--bg-tertiary);
    border-bottom: 1px solid var(--bg-tertiary);
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.newsletter .title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy-deep);
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter .description {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.newsletter form {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.newsletter input {
    background: white;
    border: 2px solid var(--bg-tertiary);
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: var(--radius);
    min-width: 320px;
    font-family: var(--font-body);
}

.newsletter button,
.button-baykus {
    background: var(--navy-deep);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.newsletter button:hover,
.button-baykus:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }

    .hero .container,
    .about-hero .container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }

    .hero {
        text-align: center;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

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

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background: white;
        z-index: 2000;
        padding: 100px 32px;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        /* Overriding display none but using position off-screen */
    }

    header .menu.active {
        right: 0;
    }

    header .menu .close-nav-btn {
        display: block;
    }

    header .menu nav ul {
        flex-direction: column;
        gap: 0;
    }

    header .menu nav ul li a {
        display: block;
        padding: 16px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--bg-tertiary);
    }

    .page-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .bg-layers span {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(4px);
        z-index: 1999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    header .menu.active+.bg-layers span,
    header.menu-active .bg-layers span {
        opacity: 1;
        pointer-events: all;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    footer .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer .copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    footer .copyright .policy a {
        margin: 0 16px;
    }

    .newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter input {
        min-width: 0;
        width: 100%;
    }
}