/* ============================
   OMX.AZ — Vətən-N MMC
   Corporate / Institutional Theme
============================ */

:root {
    --bg: #0a0d12;
    --bg-2: #11151c;
    --bg-3: #161c26;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-hover: rgba(255, 255, 255, 0.04);

    --gold: #c9a26a;
    --gold-bright: #d4b07a;
    --gold-dim: #8e7148;

    --crimson: #c4404a;
    --crimson-dim: #8b2c32;

    --text: #ffffff;
    --text-muted: #9aa3b0;
    --text-dim: #5d6878;
    --text-soft: #ced3db;

    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.14);
    --border-gold: rgba(201, 162, 106, 0.35);

    --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);

    --ease: cubic-bezier(.4, 0, .2, 1);

    --font-display: 'Manrope', -apple-system, system-ui, sans-serif;
    --font-body: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold); color: #000; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-soft);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 15px;
    font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================
   BUTTONS — Square, Strong
============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all .25s var(--ease);
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-display);
    border-radius: 2px;
    position: relative;
}
.btn i { font-size: 0.9em; }

.btn-primary {
    background: var(--gold);
    color: #0a0d12;
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: #0a0d12;
}

.btn-outline {
    border-color: var(--border-strong);
    color: var(--text);
    background: transparent;
}
.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-ghost {
    color: var(--text-soft);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text);
}

.btn-lg { padding: 18px 34px; font-size: 12px; }
.btn-block { width: 100%; }

/* ============================
   HEADER & NAV — Tight, Bold
============================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(10, 13, 18, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all .35s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    padding: 12px 0;
    background: rgba(10, 13, 18, 0.97);
    border-bottom-color: var(--border);
}

.top-bar { display: none; }
.navbar { padding: 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand:hover { color: var(--text); }
.brand-logo {
    height: 64px;
    width: auto;
    display: block;
    transition: all .3s;
}
.brand:hover .brand-logo {
    opacity: 0.92;
}
.site-header.scrolled .brand-logo {
    height: 52px;
}
.brand-icon { display: none; }
.brand-text { display: none; }
.brand-logo-footer {
    height: 80px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}
.nav-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color .25s;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px; right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-cta { display: none; }

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.lang-switch a { padding: 6px 8px; color: var(--text-dim); transition: color .25s; border: 1px solid transparent; }
.lang-switch a:hover { color: var(--text-soft); }
.lang-switch a.active { color: var(--gold); border-color: var(--border-gold); }
.lang-switch span { display: none; }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .25s; }

/* ============================
   HERO — Strong, Direct
============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    background: var(--bg);
    overflow: hidden;
    text-align: left;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    transform: scale(1.05);
}
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero-dot {
    width: 44px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: all .35s;
}
.hero-dot.active, .hero-dot:hover {
    background: var(--gold);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 13, 18, 0.92) 0%, rgba(10, 13, 18, 0.7) 50%, rgba(10, 13, 18, 0.5) 100%),
        linear-gradient(180deg, transparent 60%, rgba(10, 13, 18, 0.9) 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
}

.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 880px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: transparent;
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--gold);
    border-radius: 0;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    display: inline-block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 30px;
    color: var(--text);
    text-transform: uppercase;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
    display: block;
    font-weight: 700;
}
.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 0 32px 0;
}
.hero-subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 44px;
    line-height: 1.65;
    font-weight: 400;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 80px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 940px;
    padding-top: 36px;
    border-top: 1px solid var(--border-strong);
}
.hero-stat {
    padding: 6px 28px 6px 0;
    text-align: left;
    border-right: 1px solid var(--border);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: 0; padding-right: 0; }
.hero-stat .stat-num {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.hero-stat .stat-label {
    font-size: 10px;
    color: var(--text-dim);
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================
   PAGE HEADER
============================ */
.page-header {
    padding: 180px 0 90px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
}
.page-header > .container { position: relative; }
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    margin: 14px 0 18px;
    color: var(--text);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.page-header h1 em { color: var(--gold); font-style: normal; }
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    font-weight: 600;
    font-family: var(--font-display);
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 8px; }
.breadcrumb span { color: var(--gold); }

/* ============================
   SECTIONS
============================ */
.section { padding: 110px 0; position: relative; }

.section-head {
    text-align: left;
    max-width: 720px;
    margin: 0 0 70px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head.center { text-align: center; margin: 0 auto 70px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
}
.section-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.section-title em { color: var(--gold); font-style: normal; }

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 24px 0 24px;
}
.section-head.center .section-divider { margin-left: auto; margin-right: auto; }

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 640px;
}
.section-head.center .section-desc { margin: 0 auto; }
.section-actions { text-align: left; margin-top: 56px; }
.section-head.center ~ .section-actions { text-align: center; }

/* ============================
   ABOUT
============================ */
.about-brief, .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-brief-content .section-head, .about-content .section-head {
    text-align: left;
    margin: 0 0 28px;
}
.about-brief-content p, .about-content p {
    color: var(--text-muted);
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}
.about-features {
    list-style: none;
    margin: 36px 0 40px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.about-features > div, .about-features li {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    counter-increment: item;
}
.about-features > div::before, .about-features li::before {
    content: counter(item, decimal-leading-zero);
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    min-width: 28px;
}
.about-features { counter-reset: item; }
.about-features i { display: none; }

.about-visual, .about-brief-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 540px;
    margin-left: auto;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border-strong);
}
.about-visual::before, .about-brief-visual::before { display: none; }
.about-visual > i, .about-brief-visual > i { display: none; }
.about-brief-visual-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.08);
    transition: filter .5s;
}
.about-brief-visual-photo:hover img {
    filter: contrast(1.1) saturate(1.15);
}
.about-visual-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 32px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
    color: var(--text);
    z-index: 2;
    text-align: left;
    border-left: 3px solid var(--gold);
}
.about-visual-badge strong {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.03em;
}
.about-visual-badge span {
    font-size: 11px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-top: 12px;
    display: block;
}

/* ============================
   SERVICES — Grid with Numbers
============================ */
.services-section { background: var(--bg-2); padding: 110px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.service-card {
    position: relative;
    padding: 48px 36px;
    background: transparent;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: all .35s var(--ease);
    color: var(--text);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height .35s var(--ease);
}
.service-card:hover {
    background: var(--bg-card);
}
.service-card:hover::before { height: 100%; }

.service-number {
    font-family: var(--font-display);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 32px;
    letter-spacing: 2.5px;
    position: relative;
    z-index: 2;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-gold);
}

.service-icon {
    width: 48px; height: 48px;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--gold);
    font-size: 26px;
    display: flex; align-items: center; justify-content: flex-start;
    margin-bottom: 28px;
    transition: all .35s;
    position: relative;
    z-index: 2;
}
.service-icon img { width: 36px; height: 36px; object-fit: contain; opacity: 0.95; }
.service-card:hover .service-icon {
    transform: translateX(4px);
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--text);
    position: relative;
    z-index: 2;
    line-height: 1.2;
    text-transform: uppercase;
}
.service-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    flex: 1;
    font-weight: 400;
    position: relative;
    z-index: 2;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: gap .3s;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}
.service-card:hover .service-link { gap: 16px; }

/* ============================
   FEATURES
============================ */
.why-us-section { background: var(--bg); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.feature-card {
    padding: 50px 32px;
    background: transparent;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
    transition: all .35s;
    position: relative;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.feature-card:hover {
    background: var(--bg-card);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 52px; height: 52px;
    margin: 0 0 26px;
    border-radius: 0;
    background: rgba(201, 162, 106, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    transition: all .35s;
}
.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--bg);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
}

/* ============================
   STATS BLOCK
============================ */
.stats-block {
    background: var(--bg);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-block-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-block {
    text-align: left;
    padding: 0 30px;
    border-right: 1px solid var(--border);
}
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child { border-right: 0; padding-right: 0; }
.stat-block .stat-icon {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.9;
    display: none;
}
.stat-block .stat-num {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}
.stat-block .stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    font-family: var(--font-display);
}

/* Stats with BG */
.stats-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-color: transparent;
    overflow: hidden;
}
.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 13, 18, 0.92) 0%, rgba(10, 13, 18, 0.95) 100%);
}
.stats-with-bg .container { position: relative; z-index: 2; }
.stats-with-bg .stat-block .stat-num { color: var(--text); }

/* ============================
   MISSION / VISION
============================ */
.mv-section { background: var(--bg-2); }
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}
.mv-card {
    padding: 60px 50px;
    background: transparent;
    transition: all .35s;
    text-align: left;
    border-right: 1px solid var(--border);
    position: relative;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height .35s;
}
.mv-card:last-child { border-right: 0; }
.mv-card:hover { background: var(--bg-card); }
.mv-card:hover::before { height: 100%; }
.mv-icon {
    width: 56px; height: 56px;
    margin: 0 0 26px;
    border-radius: 0;
    background: rgba(201, 162, 106, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.mv-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.mv-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 15px;
    font-weight: 400;
}

/* ============================
   PROJECTS
============================ */
.projects-section { background: var(--bg); }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 28px;
}
.project-card {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    transition: all .35s var(--ease);
    color: var(--text);
    display: flex;
    flex-direction: column;
    position: relative;
}
.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
    z-index: 3;
}
.project-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}
.project-card:hover::before { transform: scaleX(1); }
.project-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-3);
}
.project-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
    filter: contrast(1.05);
}
.project-card:hover .project-image img { transform: scale(1.04); }
.project-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-3);
    color: rgba(201, 162, 106, 0.15);
    font-size: 90px;
}
.project-placeholder.large { font-size: 160px; }
.project-category {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 14px;
    background: var(--bg);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--border-gold);
    border-radius: 0;
    font-family: var(--font-display);
}
.project-content { padding: 28px; }
.project-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.25;
}
.project-location {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-family: var(--font-display);
}
.project-location i { color: var(--gold); font-size: 10px; }
.project-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

.project-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: flex-start;
}
.project-detail-image {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
}
.project-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.project-detail-info h2 {
    font-family: var(--font-display);
    font-size: 36px;
    margin: 22px 0 26px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.project-meta {
    display: flex; flex-direction: column; gap: 16px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 26px 0;
}
.meta-item {
    display: flex; align-items: baseline; gap: 16px;
    font-size: 14px;
    color: var(--text-soft);
}
.meta-item i { display: none; }
.meta-item strong {
    color: var(--gold);
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 130px;
}
.project-description {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
}

.pagination-wrap { margin-top: 60px; display: flex; justify-content: center; }

/* ============================
   SERVICE DETAIL
============================ */
.service-detail {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    align-items: flex-start;
}
.service-detail-main h2 {
    font-family: var(--font-display);
    font-size: 38px;
    margin: 32px 0 26px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.service-detail-icon {
    width: 72px; height: 72px;
    border-radius: 0;
    background: rgba(201, 162, 106, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
}
.service-detail-icon img { width: 48px; height: 48px; object-fit: contain; opacity: 0.9; }
.service-content {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
}
.service-detail-side {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 36px 32px;
    position: sticky; top: 120px;
}
.service-detail-side h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--gold);
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.side-list { list-style: none; }
.side-list li {
    border-bottom: 1px solid var(--border);
}
.side-list li:last-child { border-bottom: 0; }
.side-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: all .25s;
    font-family: var(--font-display);
}
.side-list a:hover {
    color: var(--gold);
    padding-left: 6px;
}
.side-list a > span { flex: 1; }
.side-list a > i:first-child {
    color: var(--gold);
    width: 18px;
    font-size: 13px;
    opacity: 0.7;
}
.side-arrow { font-size: 10px; opacity: 0; transition: all .25s; }
.side-list a:hover .side-arrow { opacity: 1; transform: translateX(3px); }
.side-cta {
    margin-top: 28px;
    padding: 28px;
    background: var(--bg);
    border-top: 3px solid var(--gold);
    text-align: left;
}
.side-cta h4 {
    font-family: var(--font-display);
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.side-cta p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.65;
}

/* ============================
   CONTACT
============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: flex-start;
}
.contact-info > .section-title { text-align: left; }
.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.75;
    font-size: 15px;
    font-weight: 400;
}
.contact-cards { display: flex; flex-direction: column; gap: 0; }
.contact-card {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    background: transparent;
    border-bottom: 1px solid var(--border);
    transition: all .25s;
    align-items: center;
}
.contact-card:first-child { border-top: 1px solid var(--border); }
.contact-card:hover {
    padding-left: 10px;
}
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 0;
    background: rgba(201, 162, 106, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-card strong {
    display: block;
    font-size: 10px;
    color: var(--text-dim);
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.contact-card a, .contact-card span {
    display: block;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    font-family: var(--font-display);
}
.contact-card a:hover { color: var(--gold); }

.contact-form-wrap {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 50px;
}
.contact-form-wrap .section-title {
    text-align: left;
    margin-bottom: 32px;
    font-size: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: var(--font-display);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-strong);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    transition: all .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa3b0' d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 30px;
}
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-error { color: var(--crimson); font-size: 11px; margin-top: 6px; display: block; font-family: var(--font-display); }

.alert {
    padding: 16px 20px;
    border-radius: 0;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--gold);
    background: rgba(201, 162, 106, 0.05);
    color: var(--gold);
    font-weight: 500;
}

/* ============================
   CTA
============================ */
.cta-section {
    padding: 110px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    text-align: left;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
}
.cta-inner {
    position: relative;
    text-align: left;
    max-width: 880px;
}
.cta-inner > .section-tag { margin-bottom: 22px; }
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    margin-bottom: 26px;
    color: var(--text);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}
.cta-inner h2 em { color: var(--gold); font-style: normal; }
.cta-inner p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
    max-width: 540px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================
   ABOUT PHOTO
============================ */
.about-brief-visual-photo {
    aspect-ratio: 4 / 5;
    max-width: 540px;
    margin-left: auto;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-3);
    position: relative;
    border: 1px solid var(--border-strong);
}

/* ============================
   GALLERY
============================ */
.gallery-section { background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 6px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--border);
    background: var(--bg-3);
    cursor: pointer;
    transition: all .35s;
}
.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s var(--ease);
    filter: contrast(1.05) saturate(0.95);
}
.gallery-item:hover {
    border-color: var(--gold);
}
.gallery-item:hover img {
    transform: scale(1.04);
    filter: contrast(1.1) saturate(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 13, 18, 0.7);
    color: var(--gold);
    font-size: 28px;
    opacity: 0;
    transition: opacity .35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}
@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ============================
   LIGHTBOX
============================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
    backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border: 1px solid var(--border-gold);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 36px;
    color: var(--gold);
    font-size: 48px;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: transform .3s;
}
.lightbox-close:hover { transform: rotate(90deg); }

/* ============================
   CERTIFICATIONS
============================ */
.certifications-section { background: var(--bg-2); border-top: 1px solid var(--border); }
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.cert-card {
    padding: 40px 28px;
    background: transparent;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.cert-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height .35s;
}
.cert-card:hover {
    background: var(--bg-card);
}
.cert-card:hover::before { height: 100%; }
.cert-icon {
    width: 52px; height: 52px;
    margin: 0 0 24px;
    border-radius: 0;
    background: rgba(201, 162, 106, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.cert-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.cert-code {
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-display);
}
.cert-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
}

/* ============================
   MAP
============================ */
.contact-map {
    margin-top: 50px;
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-3);
    aspect-ratio: 21 / 9;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(0.92) hue-rotate(180deg) saturate(0.3);
}

/* ============================
   PARTNERS
============================ */
.partners-section {
    padding: 110px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.partners-marquee {
    position: relative;
    overflow: hidden;
    margin: 0 -32px;
    padding: 16px 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.partners-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: partnersScroll 45s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-item {
    flex-shrink: 0;
    width: 220px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 28px;
    margin: 0 10px;
    transition: all .35s;
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 0;
    border: 1px solid transparent;
}
.partner-item img {
    max-height: 68px;
    max-width: 165px;
    width: auto;
    object-fit: contain;
    transition: all .35s;
}
.partner-item:hover {
    background: #ffffff;
    border-color: var(--gold);
    transform: translateY(-2px);
}
.partner-item:hover img {
    transform: scale(1.04);
}
.partner-item span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #0a0d12;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: color .35s;
    padding: 0 6px;
    text-transform: uppercase;
}
.partner-item:hover span { color: var(--gold-dim); }

/* ============================
   FOOTER
============================ */
.site-footer {
    background: var(--bg);
    color: var(--text-muted);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-strong);
}
.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 60px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.brand-footer .brand-logo-footer {
    height: 84px;
}

.footer-about {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto;
    font-weight: 400;
}

.social-links { display: flex; gap: 8px; justify-content: center; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: all .25s;
    font-size: 14px;
}
.social-links a:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.footer-col h4 { display: none; }
.footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    list-style: none;
}
.footer-col:nth-child(2) .footer-list a,
.footer-col:nth-child(3) .footer-list a {
    color: var(--text-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: var(--font-display);
    transition: color .25s;
}
.footer-col:nth-child(2) .footer-list a:hover,
.footer-col:nth-child(3) .footer-list a:hover {
    color: var(--gold);
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
}

/* Corporate info bar */
.footer-corporate {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
}
.footer-corporate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}
.corp-item {
    text-align: center;
    padding: 4px 18px;
    border-right: 1px solid var(--border);
}
.corp-item:last-child { border-right: 0; }
.corp-item strong {
    display: block;
    font-size: 9.5px;
    color: var(--text-dim);
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 7px;
}
.corp-item span {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    background: rgba(0,0,0,0.4);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-display);
    font-weight: 500;
}

.legal-links {
    display: flex;
    gap: 18px;
    align-items: center;
}
.legal-links a {
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    transition: color .25s;
    font-family: var(--font-display);
    font-weight: 500;
}
.legal-links a:hover { color: var(--gold); }
.legal-links span { color: var(--text-dim); opacity: 0.5; }

/* ============================
   LEGAL PAGES
============================ */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.85;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text);
    margin: 44px 0 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: var(--text-muted); }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; color: var(--text-muted); }
.legal-content li { margin-bottom: 6px; }

/* ============================
   WHATSAPP FLOAT
============================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 52px; height: 52px;
    border-radius: 0;
    background: var(--gold);
    color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    z-index: 99;
    transition: all .3s;
    box-shadow: 0 8px 30px -8px rgba(201, 162, 106, 0.6);
}
.whatsapp-float:hover {
    background: var(--gold-bright);
    color: var(--bg);
    transform: translateY(-2px);
}

/* ============================
   PAGINATION
============================ */
.pagination {
    display: inline-flex;
    list-style: none;
    gap: 6px;
}
.pagination li > * {
    display: flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px;
    padding: 0 14px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 0;
    transition: all .2s;
    font-family: var(--font-display);
}
.pagination li > a:hover { border-color: var(--gold); color: var(--gold); }
.pagination li.active > * { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.pagination li.disabled > * { opacity: 0.3; }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
    .about-brief, .about-grid, .contact-grid, .project-detail, .service-detail {
        grid-template-columns: 1fr; gap: 50px;
    }
    .about-visual, .about-brief-visual { margin: 0; max-width: 100%; }
    .service-detail-side { position: static; }
    .stats-block-grid { grid-template-columns: 1fr 1fr; }
    .stats-block-grid .stat-block:nth-child(2) { border-right: 0; }
    .stat-block { border-bottom: 1px solid var(--border); padding: 30px 20px; }
    .stats-block-grid .stat-block:nth-child(3),
    .stats-block-grid .stat-block:nth-child(4) { border-bottom: 0; }
    .mv-grid { grid-template-columns: 1fr; }
    .mv-card { border-right: 0; border-bottom: 1px solid var(--border); }
    .mv-card:last-child { border-bottom: 0; }
    .footer-corporate-grid { grid-template-columns: 1fr 1fr; }
    .corp-item { padding: 14px 8px; border-bottom: 1px solid var(--border); }
    .corp-item:nth-child(2) { border-right: 0; }
    .corp-item:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 22px; }
    .site-header { padding: 16px 0; }
    .brand-logo { height: 48px; }
    .site-header.scrolled .brand-logo { height: 42px; }
    .brand-logo-footer { height: 64px; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%; left: 16px; right: 16px;
        flex-direction: column;
        background: var(--bg);
        border: 1px solid var(--border-strong);
        border-radius: 0;
        padding: 20px;
        gap: 4px;
        margin-top: 8px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 12px 16px; }
    .nav-toggle { display: flex; }

    .hero { padding-top: 120px; padding-bottom: 70px; min-height: auto; text-align: left; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); padding-top: 30px; }
    .hero-stat { padding: 14px 16px 14px 0; border-right: 0; }
    .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }

    .section { padding: 70px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-list { flex-direction: column; gap: 14px; align-items: center; }
    .contact-form-wrap { padding: 30px 22px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 46px; height: 46px; font-size: 20px; }
    .page-header { padding: 130px 0 60px; }
}

/* ============================
   ANIMATIONS
============================ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
