:root {
    --bg: #0b1117;
    --bg-soft: #111a22;
    --text: #f6f8fb;
    --muted: #aeb8c2;
    --line: rgba(255, 255, 255, .12);
    --green: #a6ce39;
    --green-dark: #7aa518;
    --blue: #245889;
    --blue-soft: #1b3d60;
    --white: #ffffff;
    --light: #f5f7f4;
    --dark-text: #17202a;
    --radius: 24px;
    --shadow: 0 28px 80px rgba(0, 0, 0, .28);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark-text);
    background: var(--light);
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 14px 0;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
    color: var(--text);
}
.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(11, 17, 23, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-grid {
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 26px;
}
.brand img { width: 190px; height: auto; }
.main-nav { display: flex; justify-content: center; gap: 26px; font-size: 14px; font-weight: 700; }
.main-nav a { opacity: .9; }
.main-nav a:hover { color: var(--green); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.07); border-radius: 12px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 999px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -.02em;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #0b1117; box-shadow: 0 18px 36px rgba(166,206,57,.22); }
.btn-primary:hover { background: #b8e047; }
.btn-outline { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.08); }
.btn-outline.dark { color: var(--dark-text); border-color: rgba(23,32,42,.22); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn-large { min-height: 58px; padding: 0 30px; }
.hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
}
.hero-picture,
.hero-picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-picture img { object-fit: cover; object-position: center; filter: saturate(1.03) contrast(1.03); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 85%, rgba(166,206,57,.30), transparent 34%),
        linear-gradient(90deg, rgba(6,10,14,.88) 0%, rgba(6,10,14,.62) 42%, rgba(6,10,14,.18) 100%),
        linear-gradient(0deg, rgba(6,10,14,.72) 0%, rgba(6,10,14,.08) 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 90px;
    max-width: min(var(--container), calc(100% - 40px));
}
.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
}
.eyebrow::before,
.section-tag::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}
.hero h1 {
    max-width: 760px;
    margin: 18px 0 20px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: .95;
    letter-spacing: -.07em;
}
.hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: clamp(17px, 2vw, 22px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.section { padding: 96px 0; }
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.section h2 {
    margin: 12px 0 0;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -.055em;
}
.section-heading { max-width: 820px; margin-bottom: 40px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .section-tag { justify-content: center; }
.section-heading p,
.lead-box p,
.service-card p,
.feature-card p,
.target-card li,
.cta-card p,
.location p { color: #51606c; font-size: 18px; }
.lead-box {
    background: #fff;
    border: 1px solid rgba(23,32,42,.08);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 20px 60px rgba(23,32,42,.08);
}
.lead-box p { margin: 0; }
.dark-section { background: var(--bg); color: var(--text); }
.dark-section .section-heading p,
.dark-section p { color: var(--muted); }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.feature-card {
    min-height: 260px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--green);
    color: #0b1117;
    font-weight: 900;
    margin-bottom: 28px;
}
.feature-card h3,
.service-card h3 { font-size: 23px; line-height: 1.1; margin: 0 0 12px; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 14px;
}
.gallery-item,
.portrait-card {
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #111;
    cursor: zoom-in;
    box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.gallery-item.wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img,
.portrait-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img,
.portrait-card:hover img { transform: scale(1.045); }
.services { background: #fff; }
.sticky-title { position: sticky; top: 110px; margin-bottom: 0; }
.service-list { display: grid; gap: 16px; }
.service-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--light);
    border: 1px solid rgba(23,32,42,.08);
}
.service-card p { margin: 0; font-size: 17px; }
.target-section {
    background:
        radial-gradient(circle at 90% 30%, rgba(166,206,57,.24), transparent 28%),
        var(--bg-soft);
    color: var(--text);
}
.target-card {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: start;
    padding: 48px;
    border-radius: 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
}
.target-card h2 { color: var(--text); }
.check-list { margin: 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.check-list li {
    position: relative;
    padding: 18px 18px 18px 54px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 17px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #0b1117;
    font-weight: 900;
}
.portrait-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.portrait-card { height: 470px; }
.cta-section { padding-top: 40px; }
.cta-card {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 52px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(36,88,137,.94), rgba(11,17,23,.96)),
        var(--bg);
    color: var(--text);
    box-shadow: var(--shadow);
}
.cta-card h2 { margin-top: 10px; }
.cta-card p { max-width: 620px; color: rgba(255,255,255,.76); margin: 16px 0 0; }
.location { background: #fff; }
.contact-list { margin-top: 26px; display: grid; gap: 14px; }
.contact-list p { margin: 0; }
.contact-list a { color: var(--blue); font-weight: 800; }
.map-box { min-height: 430px; border-radius: 30px; overflow: hidden; background: var(--bg); box-shadow: var(--shadow); }
.map-box iframe { width: 100%; height: 100%; border: 0; min-height: 430px; }
.map-placeholder { height: 100%; min-height: 430px; display: grid; place-items: center; text-align: center; color: #fff; padding: 30px; }
.map-placeholder span { display: block; color: var(--muted); margin-top: 8px; }
.site-footer { background: #080c11; color: rgba(255,255,255,.78); padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 34px; align-items: center; }
.footer-logo { width: 160px; margin-bottom: 12px; }
.site-footer p { margin: 0; }
.site-footer nav { display: grid; gap: 9px; font-size: 14px; }
.site-footer nav a:hover { color: var(--green); }
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--green);
    color: #0b1117;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,.9);
    display: grid;
    place-items: center;
    padding: 26px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 90svh; border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox button {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}
.simple-page { background: #fff; }
.simple-content { max-width: 800px; padding: 80px 0; }
.simple-content h1 { font-size: clamp(34px, 6vw, 64px); letter-spacing: -.05em; }
.back-link { color: var(--blue); font-weight: 800; }
@media (max-width: 980px) {
    .header-grid { grid-template-columns: 170px auto auto; }
    .brand img { width: 160px; }
    .menu-toggle { display: block; justify-self: end; }
    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 74px;
        display: none;
        flex-direction: column;
        padding: 20px;
        background: rgba(11,17,23,.96);
        border: 1px solid var(--line);
        border-radius: 18px;
    }
    .main-nav.is-open { display: flex; }
    .header-cta { display: none; }
    .split,
    .target-card,
    .footer-grid { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .portrait-grid { grid-template-columns: repeat(2, 1fr); }
    .sticky-title { position: static; }
    .cta-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
    .container { width: min(100% - 28px, var(--container)); }
    .site-header { padding: 10px 0; }
    .hero { min-height: 92svh; align-items: end; }
    .hero-picture img { object-position: center top; }
    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(6,10,14,.90) 0%, rgba(6,10,14,.50) 55%, rgba(6,10,14,.18) 100%);
    }
    .hero-content { padding: 124px 0 54px; }
    .hero h1 { font-size: clamp(40px, 14vw, 58px); }
    .hero p { font-size: 17px; }
    .hero-actions .btn { width: 100%; }
    .section { padding: 68px 0; }
    .section h2 { font-size: clamp(32px, 11vw, 46px); }
    .cards-grid,
    .gallery-grid,
    .portrait-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-auto-rows: 250px; }
    .gallery-item.wide { grid-column: auto; grid-row: span 1; }
    .portrait-card { height: 520px; }
    .lead-box,
    .target-card,
    .cta-card { padding: 28px; border-radius: 24px; }
    .map-box,
    .map-box iframe,
    .map-placeholder { min-height: 350px; }
    .floating-whatsapp { display: inline-flex; }
}
