:root {
    --black: #050505;
    --charcoal: #111214;
    --charcoal-2: #191a1d;
    --line: rgba(213, 174, 82, .34);
    --gold: #d7aa45;
    --gold-2: #f0c96a;
    --white: #ffffff;
    --muted: #b9bdc6;
    --soft: #e8e2d5;
    --danger: #ff6b6b;
    --success: #48d39a;
    --shadow: 0 28px 90px rgba(0, 0, 0, .48);
    --radius: 8px;
    --header-height: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(215, 170, 69, .12), transparent 31rem),
        linear-gradient(135deg, #050505 0%, #111214 54%, #060606 100%);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(215, 170, 69, .18);
    background: rgba(5, 5, 5, .76);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
    background: rgba(5, 5, 5, .93);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .38);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 176px;
}

.brand-logo {
    width: 174px;
    height: 56px;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a,
.mobile-menu a:not(.btn) {
    position: relative;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--white);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    color: #090909;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    box-shadow: 0 14px 34px rgba(215, 170, 69, .22);
}

.btn-outline {
    color: var(--gold-2);
    border-color: var(--line);
    background: rgba(255, 255, 255, .03);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(215, 170, 69, .08);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--gold-2);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.hero,
.page-hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .34;
    background-image:
        linear-gradient(rgba(215, 170, 69, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 170, 69, .12) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.page-hero {
    min-height: 470px;
}

.hero-bg,
.image-card img,
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    filter: saturate(.85) contrast(1.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .74) 46%, rgba(0, 0, 0, .38) 100%),
        linear-gradient(0deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .2) 45%, rgba(5, 5, 5, .55) 100%);
}

.hero-content,
.page-hero-content {
    padding: 80px 0 130px;
}

.page-hero-content {
    padding: 80px 0;
    max-width: 780px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .45fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    max-width: 780px;
}

.hero-command-panel {
    position: relative;
    align-self: end;
    padding: 28px;
    border: 1px solid rgba(215, 170, 69, .42);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(215, 170, 69, .16), rgba(255, 255, 255, .035)),
        rgba(6, 6, 6, .78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-command-panel::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-2);
    box-shadow: 0 0 0 8px rgba(215, 170, 69, .1);
}

.hero-command-panel span {
    color: var(--gold-2);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-command-panel strong {
    display: block;
    margin-top: 12px;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.12;
}

.hero-command-panel ul {
    display: grid;
    gap: 12px;
    padding: 22px 0 0;
    margin: 22px 0 0;
    border-top: 1px solid rgba(215, 170, 69, .2);
    list-style: none;
}

.hero-command-panel li {
    color: var(--soft);
    font-weight: 800;
}

.hero-command-panel li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    background: var(--gold);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

h1,
h2,
h3 {
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.08;
    margin: 0;
}

h1 {
    max-width: 850px;
    margin-top: 18px;
    font-size: clamp(2.7rem, 8vw, 6.8rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
}

h3 {
    font-size: 1.18rem;
    font-weight: 800;
}

p {
    color: var(--muted);
    margin: 0;
}

.hero-content p,
.page-hero-content p {
    max-width: 690px;
    margin-top: 22px;
    font-size: clamp(1.02rem, 2.2vw, 1.28rem);
    color: #e4e6ea;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-indicators {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(1120px, calc(100% - 40px));
    border: 1px solid var(--line);
    background: rgba(12, 12, 12, .74);
    backdrop-filter: blur(14px);
}

.hero-indicators span {
    display: grid;
    place-items: center;
    min-height: 76px;
    padding: 18px 16px;
    color: var(--soft);
    font-size: clamp(.72rem, .95vw, .82rem);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-right: 1px solid rgba(215, 170, 69, .16);
    overflow-wrap: anywhere;
}

.hero-indicators span:last-child {
    border-right: 0;
}

.section {
    padding: 96px 0;
    position: relative;
}

.split-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.section-copy p,
.section-heading p {
    margin-top: 20px;
    font-size: 1.08rem;
}

.section-copy h2,
.section-heading h2 {
    margin-top: 16px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.metric-wide {
    grid-template-columns: repeat(4, 1fr);
}

.metric-grid article,
.premium-card,
.contact-panel,
.contact-form,
.trust-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.metric-grid article {
    padding: 28px;
}

.metric-grid strong {
    display: block;
    color: var(--gold-2);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
}

.metric-grid span {
    display: block;
    margin-top: 10px;
    color: var(--soft);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.collaborators {
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(215, 170, 69, .14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(215, 170, 69, .05));
    border-top: 1px solid rgba(215, 170, 69, .22);
    border-bottom: 1px solid rgba(215, 170, 69, .22);
}

.collaborator-carousel {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    overflow: hidden;
}

.collaborator-carousel::before,
.collaborator-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 110px;
    pointer-events: none;
}

.collaborator-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #11100d, transparent);
}

.collaborator-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #11100d, transparent);
}

.collaborator-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: collaborator-scroll 34s linear infinite;
}

.collaborator-carousel:hover .collaborator-track {
    animation-play-state: paused;
}

.collaborator-item {
    display: grid;
    grid-template-rows: 120px auto;
    align-items: center;
    justify-items: center;
    gap: 18px;
    min-width: 310px;
    min-height: 224px;
    padding: 24px;
    border: 1px solid rgba(215, 170, 69, .58);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(235, 236, 238, .94)),
        #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.collaborator-item img {
    max-width: 235px;
    max-height: 112px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .16));
}

.collaborator-item div {
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(193, 143, 35, .32);
    text-align: center;
}

.collaborator-item span {
    color: #b17d12;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .2em;
}

.collaborator-item strong {
    display: block;
    margin-bottom: 7px;
    color: #111214;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
}

@keyframes collaborator-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 8px));
    }
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.image-card {
    min-height: 440px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--charcoal);
    box-shadow: var(--shadow);
}

.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .88) 100%);
}

.image-card img {
    position: absolute;
    inset: 0;
    transition: transform .45s ease;
}

.image-card:hover img {
    transform: scale(1.06);
}

.image-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 26px;
}

.card-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: #080808;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .38);
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .42), transparent 32%),
        linear-gradient(135deg, var(--gold), var(--gold-2));
    box-shadow:
        0 14px 30px rgba(215, 170, 69, .2),
        inset 0 0 0 1px rgba(6, 6, 6, .16);
}

.lrp-icon {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.premium-card .card-icon,
.service-card .card-icon,
.image-card .card-icon {
    transition: transform .25s ease, box-shadow .25s ease;
}

.premium-card:hover .card-icon,
.service-card:hover .card-icon,
.image-card:hover .card-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 18px 38px rgba(215, 170, 69, .28),
        inset 0 0 0 1px rgba(6, 6, 6, .2);
}

.image-card h3,
.service-card h2,
.premium-card h2,
.premium-card h3 {
    margin-bottom: 12px;
}

.image-card p {
    margin-bottom: 18px;
}

.card-note {
    display: inline-flex;
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.coverage,
.sectors {
    background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(215, 170, 69, .035));
    border-top: 1px solid rgba(215, 170, 69, .14);
    border-bottom: 1px solid rgba(215, 170, 69, .14);
}

.coverage-list {
    display: grid;
    gap: 14px;
}

.coverage-map {
    display: grid;
    grid-template-columns: .86fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.map-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 54% 38%, rgba(215, 170, 69, .34), transparent 12%),
        linear-gradient(155deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .02)),
        #0b0b0c;
    box-shadow: var(--shadow);
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 26px 42px;
    border: 1px solid rgba(215, 170, 69, .28);
    clip-path: polygon(54% 0, 62% 12%, 58% 23%, 65% 36%, 57% 49%, 64% 61%, 52% 76%, 56% 100%, 42% 78%, 47% 62%, 39% 50%, 46% 35%, 38% 23%, 45% 11%);
    background: linear-gradient(180deg, rgba(215, 170, 69, .2), rgba(215, 170, 69, .045));
}

.map-card span,
.map-card strong {
    position: relative;
    z-index: 1;
    display: block;
}

.map-card span {
    color: var(--gold-2);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.map-card strong {
    max-width: 220px;
    margin-top: 12px;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 2rem;
    line-height: 1.08;
}

.coverage-list span {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--soft);
    background: rgba(255, 255, 255, .045);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.local-proof-panel {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(215, 170, 69, .16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
        #090909;
    box-shadow: var(--shadow);
}

.local-proof-panel::before {
    content: "";
    position: absolute;
    top: -18%;
    right: -8%;
    width: 280px;
    height: 560px;
    border-left: 1px solid rgba(215, 170, 69, .28);
    background: linear-gradient(180deg, rgba(215, 170, 69, .2), transparent);
    transform: rotate(18deg);
}

.local-proof-panel h3 {
    position: relative;
    max-width: 430px;
    margin: 20px 0 28px;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.02;
}

.local-proof-panel ol {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: local-process;
}

.local-proof-panel li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(215, 170, 69, .24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
}

.local-proof-panel .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #070707;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .86rem;
    font-weight: 900;
}

.local-proof-panel .step-copy {
    min-width: 0;
}

.local-proof-panel strong,
.local-proof-panel span {
    display: block;
}

.local-proof-panel strong {
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
}

.local-proof-panel .step-copy span {
    margin-top: 4px;
    color: var(--muted);
    max-width: 36rem;
}

.instagram-section,
.news-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .15)),
        radial-gradient(circle at 82% 18%, rgba(215, 170, 69, .1), transparent 26rem);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.instagram-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--charcoal);
    box-shadow: var(--shadow);
    transition: transform .25s ease, border-color .25s ease;
}

.instagram-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 201, 106, .76);
}

.instagram-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.instagram-card:hover img {
    transform: scale(1.06);
}

.instagram-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .9)),
        linear-gradient(35deg, rgba(215, 170, 69, .25), transparent 48%);
}

.instagram-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 28px;
}

.instagram-card span {
    color: var(--gold-2);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.instagram-card h3 {
    margin-top: 10px;
    margin-bottom: 12px;
}

.news-card {
    cursor: default;
}

.final-cta {
    display: none;
}

.final-cta-box,
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(215, 170, 69, .16), rgba(10, 10, 10, .92)),
        var(--charcoal);
    box-shadow: var(--shadow);
}

.final-cta-box p,
.cta-strip p {
    margin-top: 10px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.breadcrumb a {
    color: var(--gold-2);
}

.breadcrumb span::before {
    content: "/";
    margin-right: 10px;
    color: var(--gold);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.company-three-grid,
.certification-grid,
.values-grid,
.leadership-grid {
    display: grid;
    gap: 22px;
}

.leadership-grid {
    grid-template-columns: 1fr .85fr;
    align-items: center;
}

.leadership-photo {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
}

.leader-contact-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.leader-contact-list a {
    color: var(--gold-2);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.company-three-grid {
    grid-template-columns: repeat(3, 1fr);
}

.certification-grid {
    grid-template-columns: repeat(2, 1fr);
}

.values-grid {
    grid-template-columns: repeat(3, 1fr);
}

.text-panel,
.cert-card,
.value-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    box-shadow: var(--shadow);
    padding: 34px;
}

.text-panel h2,
.cert-card h3,
.value-card h3 {
    margin: 12px 0;
}

.cert-badge {
    display: inline-grid;
    place-items: center;
    min-width: 118px;
    min-height: 94px;
    margin-bottom: 18px;
    border: 3px solid var(--gold);
    border-radius: 8px;
    color: var(--gold-2);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.value-card {
    text-align: center;
}

.value-card .card-icon {
    margin-left: auto;
    margin-right: auto;
}

.value-card.years strong {
    display: block;
    color: var(--gold-2);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 5rem;
    line-height: .9;
}

.value-card.years span {
    display: block;
    color: var(--soft);
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.premium-card {
    padding: 34px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.premium-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 201, 106, .76);
}

.premium-card.compact {
    min-height: 178px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    box-shadow: var(--shadow);
    transition: transform .25s ease, border-color .25s ease;
}

.service-media {
    position: relative;
    height: 310px;
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .52)),
        linear-gradient(35deg, rgba(215, 170, 69, .2), transparent 44%);
}

.service-media .card-icon {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 1;
    margin: 0;
}

.service-body {
    padding: 30px;
}

.service-body ul {
    padding: 0;
    margin: 22px 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-body li {
    color: var(--soft);
    font-weight: 700;
}

.service-body li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    background: var(--gold);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-box {
    padding: 46px;
    text-align: center;
}

.trust-box p {
    max-width: 880px;
    margin: 0 auto;
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.25;
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: start;
}

.contact-panel,
.contact-form {
    padding: 34px;
}

.contact-panel h2 {
    margin: 14px 0 22px;
}

.contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.contact-list li {
    display: grid;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(215, 170, 69, .16);
}

.contact-list strong {
    color: var(--gold-2);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--soft);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.contact-form .full,
.form-alert {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(215, 170, 69, .26);
    border-radius: 4px;
    background: rgba(0, 0, 0, .36);
    color: var(--white);
    font: inherit;
    padding: 15px 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(215, 170, 69, .14);
}

.field-error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, .12);
}

textarea {
    resize: vertical;
}

.form-alert {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, .05);
}

.form-alert.error {
    border-color: rgba(255, 107, 107, .55);
}

.form-alert.error p {
    color: var(--danger);
}

.form-alert.success p {
    color: var(--success);
}

.form-alert.warning p {
    color: var(--gold-2);
}

.cta-strip {
    padding: 42px 0 0;
}

.site-footer {
    padding: 70px 0 26px;
    border-top: 1px solid rgba(215, 170, 69, .18);
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .7fr 1fr 1fr;
    gap: 34px;
}

.footer-brand img {
    width: 180px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 18px;
}

.site-footer h3 {
    margin-bottom: 18px;
    color: var(--gold-2);
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer li,
.site-footer a {
    color: var(--muted);
}

.footer-contact-list li {
    display: grid;
    gap: 4px;
    align-items: start;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(215, 170, 69, .1);
}

.footer-contact-list strong {
    display: block;
    color: var(--gold-2);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-contact-list a {
    display: block;
    overflow-wrap: anywhere;
    line-height: 1.45;
}

.site-footer a:hover {
    color: var(--gold-2);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--gold-2);
    background: rgba(255, 255, 255, .035);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(215, 170, 69, .12);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: #071008;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1040px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        left: 20px;
        right: 20px;
        top: calc(var(--header-height) + 10px);
        display: grid;
        gap: 18px;
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(5, 5, 5, .96);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    .mobile-menu.open {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-command-panel {
        align-self: auto;
        max-width: 560px;
    }

    .service-feature-grid,
    .instagram-grid,
    .metric-wide,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-indicators {
        position: static;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
        width: min(100% - 40px, 760px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }

    .hero {
        padding-bottom: 0;
    }
}

@media (max-width: 780px) {
    :root {
        --header-height: 74px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand {
        min-width: 134px;
    }

    .brand-logo {
        width: 140px;
        height: 48px;
    }

    .hero,
    .page-hero {
        min-height: auto;
    }

    .hero-content,
    .page-hero-content {
        padding: 78px 0 68px;
    }

    .section {
        padding: 68px 0;
    }

    .split-grid,
    .premium-grid,
    .leadership-grid,
    .company-three-grid,
    .certification-grid,
    .values-grid,
    .services-grid,
    .sector-grid,
    .contact-grid,
    .coverage-map,
    .local-proof-panel ol,
    .instagram-grid,
    .service-feature-grid,
    .metric-grid,
    .metric-wide,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-indicators {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 420px);
    }

    .hero-indicators span {
        border-right: 0;
        border-bottom: 1px solid rgba(215, 170, 69, .16);
    }

    .hero-actions,
    .cta-actions {
        display: grid;
        width: 100%;
    }

    .btn {
        width: 100%;
        min-height: 52px;
    }

    .image-card {
        min-height: 380px;
    }

    .local-proof-panel {
        min-height: auto;
        padding: 26px;
    }

    .local-proof-panel li {
        grid-template-columns: 1fr;
    }

    .local-proof-panel .step-number {
        margin-bottom: 4px;
    }

    .collaborator-carousel {
        width: min(100% - 28px, 1180px);
    }

    .collaborator-carousel::before,
    .collaborator-carousel::after {
        width: 46px;
    }

    .collaborator-item {
        grid-template-rows: 96px auto;
        min-width: 245px;
        min-height: 190px;
        padding: 20px;
    }

    .collaborator-item img {
        max-width: 190px;
        max-height: 92px;
    }

    .final-cta-box,
    .cta-strip-inner {
        display: grid;
        padding: 28px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .contact-panel {
        padding: 24px;
    }

    .map-card {
        min-height: 220px;
    }

    .instagram-card {
        min-height: 360px;
    }
}

@media (max-width: 460px) {
    h1 {
        font-size: 2.45rem;
    }

    .eyebrow {
        font-size: .7rem;
    }

    .premium-card,
    .service-body,
    .metric-grid article,
    .trust-box {
        padding: 24px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}
