@charset "UTF-8";

:root {
    --brand-dark: #16153A;
    --brand-orange: #FF5700;
    --brand-gold: #FFC600;
    --brand-gold-alt: #F0C000;
    --brand-blue: #103178;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-muted: #5c5c72;
    --surface: #f4f5f9;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(22, 21, 58, 0.06);
    --shadow-md: 0 8px 30px rgba(22, 21, 58, 0.1);
    --shadow-lg: 0 20px 50px rgba(22, 21, 58, 0.14);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --header-height: 13rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 10px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: "Jost", system-ui, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--surface);
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--brand-orange);
    text-decoration: none;
    transition: color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--brand-gold);
    outline-offset: 3px;
}

ul { list-style: none; }

.pageContainer {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.8rem 1.4rem;
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-weight: 700;
    border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Buttons */
.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: inherit;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s var(--ease);
}
.btn-brand:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-brand:active { transform: translateY(0); }
.btn-brand-fill {
    background: var(--brand-orange);
    color: var(--white);
    border-color: var(--brand-orange);
}
.btn-brand-fill:hover { background: #e64e00; color: var(--white); border-color: #e64e00; }
.btn-brand-outline {
    background: var(--white);
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}
.btn-brand-outline:hover { background: var(--brand-orange); color: var(--white); }
.btn-brand-gold {
    background: var(--brand-gold);
    color: var(--brand-dark);
    border-color: var(--brand-gold);
}
.btn-brand-gold:hover { background: var(--brand-gold-alt); color: var(--brand-dark); }
.btn-lg { padding: 1.2rem 2.2rem; font-size: 1.6rem; border-radius: var(--radius-md); }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 1.4rem; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    transition: box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
    box-shadow: var(--shadow-lg);
}

.header_top {
    background: var(--brand-dark);
    color: var(--white);
    font-size: 1.35rem;
}
.header_top_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem 2.5rem;
    padding: 0.55rem 0;
}
.header_top_link {
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.header_top_link:hover { color: var(--brand-gold); text-decoration: none; }

.header_mid {
    background: var(--brand-dark);
    padding: 1rem 0;
    transition: padding 0.35s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header_mid_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.logo img {
    max-height: 6.5rem;
    width: auto;
    transition: max-height 0.35s var(--ease);
}
.header_ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
}

.header_bottom {
    background: var(--brand-blue);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5rem;
    position: relative;
}

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--brand-gold);
    border: none;
    color: var(--brand-dark);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: inherit;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-toggle:hover { background: var(--brand-gold-alt); }
.nav-toggle_icon {
    width: 1.8rem;
    height: 2px;
    background: currentColor;
    position: relative;
    display: block;
    transition: background 0.2s;
}
.nav-toggle_icon::before,
.nav-toggle_icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s var(--ease);
}
.nav-toggle_icon::before { top: -6px; }
.nav-toggle_icon::after { top: 6px; }
body.nav-open .nav-toggle_icon { background: transparent; }
body.nav-open .nav-toggle_icon::before { transform: rotate(45deg) translate(4px, 5px); }
body.nav-open .nav-toggle_icon::after { transform: rotate(-45deg) translate(4px, -5px); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 21, 58, 0.55);
    backdrop-filter: blur(4px);
    z-index: 280;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}
body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

.nav ul {
    display: none;
}
.nav.is-open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(32rem, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--brand-blue);
    z-index: 290;
    padding: 7rem 2rem 3rem;
    overflow-y: auto;
    animation: slideIn 0.35s var(--ease-out);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
}
.nav.is-open ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.nav.is-open ul a {
    display: block;
    color: var(--white);
    padding: 1.1rem 1.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
}
.nav.is-open ul a:hover,
.nav.is-open ul a.is-active {
    background: rgba(255, 198, 0, 0.2);
    color: var(--brand-gold);
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* ─── Homepage ─── */

/* Hero */
.hp-hero {
    position: relative;
    background: var(--brand-dark);
    color: var(--white);
    overflow: hidden;
    padding-bottom: 0;
}
.hp-hero_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.22;
    transform: scale(1.05);
}
.hp-hero_overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(22, 21, 58, 0.97) 0%, rgba(22, 21, 58, 0.88) 42%, rgba(16, 49, 120, 0.75) 100%);
}
.hp-hero_pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        radial-gradient(rgba(255, 198, 0, 0.45) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 80%);
}
.hp-hero_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hp-hero_glow--1 {
    width: 42rem;
    height: 42rem;
    top: -10rem;
    right: -8rem;
    background: rgba(255, 87, 0, 0.22);
}
.hp-hero_glow--2 {
    width: 36rem;
    height: 36rem;
    bottom: 0;
    left: -12rem;
    background: rgba(255, 198, 0, 0.12);
}
.hp-hero_inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 3.5rem;
    align-items: center;
    padding: 4.5rem 0 7rem;
}
.hp-hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 1.4rem 0.55rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 198, 0, 0.35);
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-gold);
    margin-bottom: 1.4rem;
    letter-spacing: 0.02em;
}
.hp-hero_badge_dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    animation: hpPulse 2s ease-in-out infinite;
}
@keyframes hpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.85); }
}
.hp-hero_badge i { font-size: 1.1rem; color: var(--brand-gold); }
.hp-hero_eyebrow {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.6rem;
}
.hp-hero_title {
    font-size: clamp(3.8rem, 7vw, 6.2rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}
.hp-hero_title_ji {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-gold), #ffe566);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 0.15em;
}
.hp-hero_lead {
    font-size: clamp(1.75rem, 2.8vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.45;
    padding-left: 1.4rem;
    border-left: 4px solid var(--brand-orange);
}
.hp-hero_desc {
    font-size: 1.65rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 50rem;
    margin-bottom: 2.4rem;
    line-height: 1.75;
}
.hp-hero_desc strong { color: var(--brand-gold); font-weight: 600; }

.hp-hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}
.hp-hero_btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.8rem 1rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.35s var(--ease);
    min-width: 19rem;
    border: 2px solid transparent;
}
.hp-hero_btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.hp-hero_btn_icon {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}
.hp-hero_btn_text small {
    display: block;
    font-size: 1.15rem;
    opacity: 0.85;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
}
.hp-hero_btn_text strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}
.hp-hero_btn--call {
    background: var(--brand-orange);
    color: var(--white);
    border-color: var(--brand-orange);
    box-shadow: 0 8px 24px rgba(255, 87, 0, 0.35);
}
.hp-hero_btn--call:hover { color: var(--white); background: #e64e00; }
.hp-hero_btn--call .hp-hero_btn_icon { background: rgba(255, 255, 255, 0.2); }
.hp-hero_btn--wa {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}
.hp-hero_btn--wa:hover { color: var(--white); background: #25d366; border-color: #25d366; }
.hp-hero_btn--wa .hp-hero_btn_icon { background: rgba(37, 211, 102, 0.25); color: #25d366; }
.hp-hero_btn--wa:hover .hp-hero_btn_icon { background: rgba(255, 255, 255, 0.2); color: var(--white); }

.hp-hero_trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.hp-hero_trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 1.35rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.hp-hero_trust i { color: var(--brand-gold); font-size: 1.2rem; }

/* Hero photo frame */
.hp-hero_visual {
    position: relative;
    max-width: 44rem;
    margin: 0 auto;
}
.hp-hero_frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.hp-hero_ring {
    position: absolute;
    width: 88%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px dashed rgba(255, 198, 0, 0.35);
    animation: hpSpin 40s linear infinite;
}
.hp-hero_ring--2 {
    width: 96%;
    border-style: solid;
    border-color: rgba(255, 87, 0, 0.15);
    animation-direction: reverse;
    animation-duration: 55s;
}
@keyframes hpSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hp-hero_photo {
    position: relative;
    z-index: 1;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--brand-gold);
    box-shadow:
        0 0 0 8px rgba(255, 198, 0, 0.15),
        0 24px 60px rgba(0, 0, 0, 0.4);
}
.hp-hero_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hp-hero_float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.4rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--brand-dark);
    animation: hpFloat 4s ease-in-out infinite;
}
.hp-hero_float i {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand-orange), #ff7a33);
    color: var(--white);
    font-size: 1.7rem;
    flex-shrink: 0;
}
.hp-hero_float strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.1;
}
.hp-hero_float span {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hp-hero_float--exp {
    bottom: 8%;
    left: -2%;
    animation-delay: 0s;
}
.hp-hero_float--clients {
    top: 10%;
    right: -4%;
    animation-delay: 2s;
}
.hp-hero_float--clients i {
    background: linear-gradient(135deg, var(--brand-blue), #1a4a9e);
}
@keyframes hpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hp-hero_wave {
    position: relative;
    z-index: 2;
    line-height: 0;
    margin-top: -1px;
}
.hp-hero_wave svg {
    display: block;
    width: 100%;
    height: 5rem;
}

/* Trust strip */
.hp-trust {
    background: var(--white);
    position: relative;
    z-index: 2;
    padding: 0 0 1rem;
    margin-top: -1rem;
}
.hp-trust_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    border: 1px solid rgba(22, 21, 58, 0.06);
}
.hp-trust_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    transition: background 0.25s var(--ease);
}
.hp-trust_item:hover { background: var(--surface); }
.hp-trust_item i {
    font-size: 2.4rem;
    color: var(--brand-orange);
    flex-shrink: 0;
}
.hp-trust_item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.1;
}
.hp-trust_item span {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Homepage sections */
.hp-section { padding: 5rem 0; }
.hp-about { background: var(--white); }
.hp-about_grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
.hp-about_visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hp-about_visual img { width: 100%; }
.hp-about_visual_badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    background: var(--brand-dark);
    color: var(--brand-gold);
    border-radius: 50px;
    font-size: 1.35rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}
.hp-about_visual_badge i { font-size: 1.5rem; }
.hp-about_text {
    font-size: 1.7rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.hp-checklist {
    display: grid;
    gap: 1rem;
    margin: 0 0 2rem;
}
.hp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}
.hp-checklist i {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    line-height: 2.4rem;
    text-align: center;
    background: rgba(255, 87, 0, 0.12);
    color: var(--brand-orange);
    border-radius: 50%;
    font-size: 1rem;
    margin-top: 0.15rem;
}

/* Services */
.hp-services { background: var(--surface); }
.hp-services_grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
.hp-service_card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(22, 21, 58, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease);
    overflow: hidden;
}
.hp-service_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 87, 0, 0.2);
}
.hp-service_link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    color: inherit;
    text-decoration: none;
}
.hp-service_link:hover { color: inherit; text-decoration: none; }
.hp-service_icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.2rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 87, 0, 0.1), rgba(255, 198, 0, 0.18));
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform 0.3s var(--ease);
}
.hp-service_card:hover .hp-service_icon { transform: scale(1.06); }
.hp-service_link h3 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.hp-service_link p {
    font-size: 1.45rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}
.hp-service_more {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.hp-service_more i { transition: transform 0.3s var(--ease); }
.hp-service_card:hover .hp-service_more i { transform: translateX(4px); }

/* Award banner */
.hp-award {
    padding: 3rem 0;
    background: var(--white);
}
.hp-award_frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(22, 21, 58, 0.08);
    line-height: 0;
}
.hp-award_frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews */
.hp-reviews { background: var(--brand-dark); }
.hp-reviews .section-title,
.hp-reviews .section-desc { color: var(--white); }
.hp-reviews .section-eyebrow { color: var(--brand-gold); }
.hp-reviews_wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hp-reviews_scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0 1.5rem;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) transparent;
}
.hp-reviews_scroll.is-dragging { scroll-snap-type: none; cursor: grabbing; }
.hp-reviews_scroll::-webkit-scrollbar { height: 6px; }
.hp-reviews_scroll::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 10px;
}
.hp-review_card {
    flex: 0 0 min(340px, 85vw);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s var(--ease);
}
.hp-review_card:hover { transform: translateY(-3px); }
.hp-review_title {
    padding: 1rem 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.4rem;
    font-weight: 500;
}
.hp-reviews_nav {
    flex-shrink: 0;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 198, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-gold);
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--ease);
}
.hp-reviews_nav:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
    border-color: var(--brand-gold);
}
.hp-reviews_hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.3rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Locations */
.hp-locations { background: var(--white); }
.hp-locations_grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
.hp-location_card {
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(22, 21, 58, 0.06);
    text-align: center;
    transition: all 0.3s var(--ease);
}
.hp-location_card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.hp-location_icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), #ff7a33);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.hp-location_card h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}
.hp-location_card p {
    font-size: 1.45rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.hp-location_card--cta {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    border-color: transparent;
}
.hp-location_card--cta h3,
.hp-location_card--cta p { color: var(--white); }
.hp-location_card--cta p { opacity: 0.85; }
.hp-location_card--cta .hp-location_icon {
    background: var(--brand-gold);
    color: var(--brand-dark);
}
.hp-location_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.hp-location_card--cta .btn-brand-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.hp-location_card--cta .btn-brand-outline:hover {
    background: var(--white);
    color: var(--brand-dark);
    border-color: var(--white);
}

/* Social / Instagram */
.hp-social {
    padding: 3rem 0 5rem;
    background: var(--surface);
}
.hp-social_card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(22, 21, 58, 0.06);
}
.hp-social_icon {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--white);
    flex-shrink: 0;
}
.hp-social_text { flex: 1; min-width: 18rem; }
.hp-social_text strong {
    display: block;
    font-size: 1.9rem;
    color: var(--brand-dark);
    margin-bottom: 0.2rem;
}
.hp-social_text p {
    font-size: 1.45rem;
    color: var(--text-muted);
}

/* Shared embed */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}
.embed-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sections (shared) */
.section { padding: 5rem 0; }
.section-head { margin-bottom: 3rem; max-width: 60rem; }
.section-head--light .section-title,
.section-head--light .section-desc { color: var(--white); }
.section-head--light .section-eyebrow { color: var(--brand-gold); }
.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 64rem;
}
.section-head.centered .section-desc { margin-left: auto; margin-right: auto; }
.section-eyebrow {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}
.section-desc {
    font-size: 1.65rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Legacy homepage classes (inner pages may reference) */
.intro-section { background: var(--white); }
.intro_grid { display: grid; gap: 3rem; align-items: center; }
.intro_content p { font-size: 1.7rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.75; }
.feature-list { display: grid; gap: 1rem; margin: 2rem 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.55rem; font-weight: 500; color: var(--text); }
.feature-list_icon { flex-shrink: 0; width: 2.4rem; height: 2.4rem; background: rgba(255, 87, 0, 0.12); color: var(--brand-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact_card { display: flex; align-items: center; gap: 1.2rem; padding: 1.4rem 1.8rem; background: var(--brand-dark); color: var(--white); border-radius: var(--radius-md); text-decoration: none; transition: all 0.3s var(--ease); margin-top: 0.5rem; }
.contact_card:hover { background: var(--brand-blue); color: var(--white); text-decoration: none; transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact_card_icon { width: 4.8rem; height: 4.8rem; background: var(--brand-gold); color: var(--brand-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.contact_card_text small { display: block; font-size: 1.2rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.06em; }
.contact_card_text strong { font-size: 2rem; font-weight: 700; }
.contact_card_arrow { margin-left: auto; opacity: 0.7; transition: transform 0.3s var(--ease); }
.contact_card:hover .contact_card_arrow { transform: translateX(4px); opacity: 1; }
.intro_visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.services-section { background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.services_grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.service_card { background: var(--white); border-radius: var(--radius-md); border: 1px solid rgba(22, 21, 58, 0.06); box-shadow: var(--shadow-sm); transition: all 0.35s var(--ease); overflow: hidden; }
.service_card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255, 87, 0, 0.25); }
.service_card_link { display: block; padding: 2rem; color: inherit; text-decoration: none; height: 100%; }
.service_card_link:hover { color: inherit; text-decoration: none; }
.service_card_icon { width: 5.2rem; height: 5.2rem; margin-bottom: 1.2rem; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(255, 87, 0, 0.12), rgba(255, 198, 0, 0.2)); color: var(--brand-orange); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; transition: transform 0.3s var(--ease); }
.service_card:hover .service_card_icon { transform: scale(1.08); }
.service_card h3 { font-size: 1.9rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 0.6rem; line-height: 1.3; }
.service_card p { font-size: 1.45rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.2rem; }
.service_card_more { font-size: 1.4rem; font-weight: 600; color: var(--brand-orange); display: inline-flex; align-items: center; gap: 0.4rem; }
.service_card_more i { transition: transform 0.3s var(--ease); }
.service_card:hover .service_card_more i { transform: translateX(4px); }
.stats-section { background: var(--brand-dark); padding: 4rem 0; }
.stats_grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat_card { text-align: center; padding: 2rem 1.5rem; background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--white); transition: background 0.3s var(--ease); }
.stat_card:hover { background: rgba(255, 255, 255, 0.1); }
.stat_card i { font-size: 2.8rem; color: var(--brand-gold); margin-bottom: 1rem; }
.stat_card strong { display: block; font-size: 2.6rem; font-weight: 700; color: var(--brand-gold); margin-bottom: 0.3rem; line-height: 1.1; }
.stat_card span { font-size: 1.35rem; opacity: 0.85; }
.promo-banner { line-height: 0; background: var(--surface); }
.promo-banner img { width: 100%; height: auto; display: block; }
.reviews-section { background: linear-gradient(160deg, var(--brand-dark) 0%, #1e1d45 100%); padding: 5rem 0; }
.reviews-scroll-wrap { position: relative; }
.reviews-scroll { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 0.5rem 0 1.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--brand-gold) transparent; }
.reviews-scroll.is-dragging { scroll-snap-type: none; cursor: grabbing; }
.reviews-scroll::-webkit-scrollbar { height: 6px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--brand-gold); border-radius: 10px; }
.review-card { flex: 0 0 min(340px, 85vw); scroll-snap-align: start; background: rgba(255, 255, 255, 0.06); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }
.review-card_title { padding: 1rem 1.2rem; color: rgba(255, 255, 255, 0.85); font-size: 1.4rem; font-weight: 500; }
.scroll-hint { text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 1.3rem; margin-top: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.instagram_card { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 3rem; padding: 2rem; background: rgba(255, 255, 255, 0.08); border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.12); }
.instagram_card_icon { width: 5rem; height: 5rem; border-radius: var(--radius-md); background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--white); }
.instagram_card strong { display: block; color: var(--white); font-size: 1.8rem; }
.instagram_card p { color: rgba(255, 255, 255, 0.7); font-size: 1.4rem; margin-top: 0.2rem; }
.instagram_card .btn-brand { margin-left: auto; }
.hero-home { position: relative; overflow: hidden; min-height: min(90vh, 720px); display: flex; align-items: center; }
.hero-home_bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); }
.hero-home_overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.75) 100%); }
.hero-home_inner { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: center; padding: 4rem 0 5rem; }
.hero-photo-frame { max-width: 38rem; margin: 0 auto; padding: 0.6rem; background: linear-gradient(135deg, var(--brand-gold), var(--brand-orange)); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.hero-photo-frame img { border-radius: calc(var(--radius-xl) - 4px); width: 100%; }
.eyebrow { display: inline-block; font-size: 1.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand-blue); margin-bottom: 0.6rem; }
.hero-title { font-size: clamp(3.6rem, 6vw, 5.6rem); font-weight: 700; line-height: 1.08; color: var(--brand-dark); margin-bottom: 1.2rem; }
.hero-title span { color: var(--brand-orange); }
.hero-desc { font-size: 1.75rem; color: var(--text-muted); max-width: 52rem; margin-bottom: 1.8rem; line-height: 1.7; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.hero-badges span { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; background: var(--white); border: 1px solid rgba(22, 21, 58, 0.08); border-radius: 50px; font-size: 1.35rem; font-weight: 500; color: var(--brand-dark); box-shadow: var(--shadow-sm); }
.hero-badges i { color: var(--brand-orange); font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* CTA band */
.cta-band {
    background: linear-gradient(90deg, var(--brand-orange), #ff7a33);
    padding: 2.5rem 0;
}
.cta-band_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cta-band_text {
    color: var(--white);
}
.cta-band_text strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.cta-band_text span { font-size: 1.5rem; opacity: 0.95; }
.cta-band_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.cta-band .btn-brand-fill {
    background: var(--white);
    color: var(--brand-orange);
    border-color: var(--white);
}
.cta-band .btn-brand-fill:hover {
    background: var(--brand-dark);
    color: var(--white);
    border-color: var(--brand-dark);
}

/* Inner pages */
.page-hero {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    padding: 3.5rem 0;
    color: var(--white);
}
.page-hero h1 {
    color: var(--brand-gold);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
}
.page-hero_sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.6rem;
    margin-top: 0.5rem;
}
.breadcrumb {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--brand-gold); text-decoration: none; }

.page-content { padding: 4rem 0 5rem; }
.page-layout { display: grid; gap: 2.5rem; }
.page-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(22, 21, 58, 0.06);
    position: sticky;
    top: 10rem;
    height: fit-content;
}
.page-sidebar h3 {
    color: var(--brand-orange);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--brand-gold);
}
.page-sidebar ul { display: grid; gap: 0.2rem; }
.page-sidebar a {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all 0.25s var(--ease);
}
.page-sidebar a:hover,
.page-sidebar a.active {
    color: var(--brand-orange);
    background: rgba(255, 87, 0, 0.06);
    border-left-color: var(--brand-orange);
    text-decoration: none;
    padding-left: 1.2rem;
}
.sidebar-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.sidebar-cta .btn-brand { width: 100%; justify-content: center; }

.page-body {
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(22, 21, 58, 0.06);
    font-size: 1.65rem;
    line-height: 1.85;
}
.page-body h2 {
    color: var(--brand-orange);
    font-size: 2.2rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { color: var(--brand-dark); font-size: 1.9rem; margin: 1.8rem 0 0.8rem; }
.page-body p { margin-bottom: 1.2rem; color: var(--text-muted); }
.page-body ul, .page-body ol { margin: 1rem 0 1.5rem 1.8rem; color: var(--text-muted); }
.page-body ul { list-style: disc; }
.page-body ol { list-style: decimal; }
.page-body li { margin-bottom: 0.5rem; }
.page-body a { color: var(--brand-orange); font-weight: 600; }
.page-body img { border-radius: var(--radius-sm); margin: 1.5rem 0; }
.page-cta {
    background: linear-gradient(135deg, #fff9f2, #fff);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    border: 1px solid rgba(255, 87, 0, 0.15);
}
.page-cta ul { list-style: none; margin-left: 0; }

.contact-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}
.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(22, 21, 58, 0.06);
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.contact-card h3 { color: var(--brand-orange); margin-bottom: 0.8rem; font-size: 1.9rem; }
.contact-card-highlight {
    border-color: var(--brand-gold);
    background: linear-gradient(135deg, #fffdf5, #fff);
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.sitemap-list { columns: 1; }
.sitemap-list li { margin-bottom: 0.6rem; break-inside: avoid; }
.sitemap-list a { color: var(--brand-blue); font-weight: 500; font-size: 1.55rem; }

/* Footer */
.site-footer { background: var(--brand-dark); color: var(--white); }
.footer_banner {
    position: relative;
    line-height: 0;
    background: var(--brand-dark);
}
.footer_banner img {
    width: 100%;
    height: auto;
    display: block;
}
.footer_banner_overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4rem;
    background: linear-gradient(to top, var(--brand-dark), transparent);
    pointer-events: none;
}
.footerSection {
    display: grid;
    gap: 2.5rem;
    padding: 4rem 0 2rem;
}
.footer_logo { max-width: 20rem; margin-bottom: 1rem; }
.footer_tagline { font-size: 1.45rem; opacity: 0.85; line-height: 1.65; }
.footer_col h5 {
    color: var(--brand-gold);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.footer_col ul { display: grid; gap: 0.5rem; }
.footer_col a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.45rem;
    font-weight: 400;
}
.footer_col a:hover { color: var(--brand-gold); text-decoration: none; }
.address p {
    margin-bottom: 0.7rem;
    font-size: 1.45rem;
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    line-height: 1.5;
}
.address i { color: var(--brand-gold); margin-top: 0.25rem; flex-shrink: 0; }
.address a { color: var(--white); }
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}
.footer-social a {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
    transform: translateY(-3px);
}
.copyright {
    text-align: center;
    padding: 1.5rem 0 11rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Float actions */
.float-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 250;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}
.float-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease);
}
.float-btn:hover {
    color: var(--white);
    text-decoration: none;
    transform: scale(1.06);
}
.float-btn--call {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    justify-content: center;
    background: var(--brand-orange);
    font-size: 2rem;
}
.float-btn--wa {
    padding: 1rem 1.4rem;
    border-radius: 50px;
    background: #25d366;
}
.float-btn--wa i { font-size: 2.4rem; }

.back-top {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 250;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    border: none;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease);
}
.back-top:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
    transform: translateY(-4px);
}
.back-top[hidden] { display: none; }

/* Utilities */
.hide-mobile { display: none; }
.hide-mobile-flex { display: none; }

/* Desktop */
@media (min-width: 600px) {
    .hp-services_grid { grid-template-columns: repeat(2, 1fr); }
    .hp-locations_grid { grid-template-columns: repeat(2, 1fr); }
    .hp-trust_grid { grid-template-columns: repeat(4, 1fr); }
    .hp-review_card { flex: 0 0 min(380px, 45vw); }
    .services_grid { grid-template-columns: repeat(2, 1fr); }
    .review-card { flex: 0 0 min(380px, 45vw); }
    .scroll-hint { display: none; }
}

@media (min-width: 768px) {
    .hide-mobile { display: inline; }
    .hide-mobile-flex { display: flex; }

    .nav-toggle { display: none; }
    .nav {
        display: block !important;
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        animation: none;
    }
    .nav ul {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.2rem;
    }
    .nav ul a {
        color: var(--white);
        padding: 0.9rem 1rem;
        font-size: 1.35rem;
        font-weight: 600;
        border-radius: var(--radius-sm);
        text-decoration: none;
        position: relative;
    }
    .nav ul a::after {
        content: "";
        position: absolute;
        bottom: 0.4rem;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--brand-gold);
        transition: width 0.3s var(--ease), left 0.3s var(--ease);
    }
    .nav ul a:hover::after,
    .nav ul a.is-active::after {
        width: 60%;
        left: 20%;
    }
    .nav ul a:hover,
    .nav ul a.is-active {
        color: var(--brand-gold);
        background: transparent;
    }

    .hp-hero_inner {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
        padding: 5.5rem 0 8rem;
    }
    .hp-hero_visual { order: 2; }
    .hp-hero_content { order: 1; }
    .hp-hero_wave svg { height: 6rem; }
    .hp-about_grid { grid-template-columns: 1fr 1.05fr; }
    .hp-reviews_nav { display: flex; }
    .hp-reviews_hint { display: none; }
    .hp-trust { margin-top: -1rem; }
    .hp-trust_grid { padding: 2rem; }

    .hero-home_inner {
        grid-template-columns: 1fr 1.05fr;
        gap: 4rem;
        padding: 5rem 0 6rem;
    }
    .hero-home_visual { order: 1; }
    .hero-home_content { order: 2; }

    .intro_grid { grid-template-columns: 1.1fr 1fr; }
    .page-layout { grid-template-columns: 27rem 1fr; align-items: start; }
    .footerSection { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .stats_grid { grid-template-columns: repeat(4, 1fr); }
    .page-body { padding: 3rem 3.5rem; }
}

@media (min-width: 1024px) {
    .hp-services_grid { grid-template-columns: repeat(3, 1fr); }
    .hp-locations_grid { grid-template-columns: repeat(4, 1fr); }
    .services_grid { grid-template-columns: repeat(3, 1fr); }
    .sitemap-list { columns: 2; }
}

@media (max-width: 767px) {
    .pageContainer {
        padding-left: 1.8rem;
        padding-right: 1.8rem;
    }

    /* Header */
    .header_top { font-size: 1.25rem; }
    .header_top_inner {
        gap: 0.5rem 1.2rem;
        padding: 0.5rem 0;
    }
    .header_mid { padding: 0.75rem 0; }
    .header_mid_wrapper { gap: 0.8rem; }
    .logo {
        flex: 1;
        min-width: 0;
    }
    .logo img {
        max-height: 4.6rem;
        max-width: min(100%, 24rem);
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: left center;
    }

    /* Hero */
    .hp-hero_inner {
        padding: 2.4rem 0 3.5rem;
        gap: 2rem;
    }
    .hp-hero_badge {
        font-size: 1.15rem;
        padding: 0.45rem 1rem 0.45rem 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.35;
    }
    .hp-hero_eyebrow {
        font-size: 1.15rem;
        letter-spacing: 0.06em;
        margin-bottom: 0.5rem;
    }
    .hp-hero_title {
        font-size: clamp(2.8rem, 8.5vw, 3.6rem);
        margin-bottom: 0.9rem;
        line-height: 1.12;
    }
    .hp-hero_lead {
        font-size: 1.45rem;
        padding-left: 1rem;
        border-left-width: 3px;
        margin-bottom: 0.9rem;
        line-height: 1.4;
    }
    .hp-hero_desc {
        font-size: 1.4rem;
        margin-bottom: 1.6rem;
        line-height: 1.65;
    }
    .hp-hero_actions {
        flex-direction: column;
        gap: 0.85rem;
        margin-bottom: 1.4rem;
    }
    .hp-hero_btn {
        min-width: 0;
        width: 100%;
        padding: 0.85rem 1.1rem 0.85rem 0.85rem;
        gap: 1rem;
    }
    .hp-hero_btn_icon {
        width: 3.8rem;
        height: 3.8rem;
        font-size: 1.65rem;
    }
    .hp-hero_btn_text small { font-size: 1.05rem; }
    .hp-hero_btn_text strong { font-size: 1.5rem; }
    .hp-hero_trust { gap: 0.55rem; }
    .hp-hero_trust li {
        font-size: 1.2rem;
        padding: 0.45rem 0.85rem;
    }
    .hp-hero_visual {
        max-width: min(100%, 30rem);
        padding-inline: 0.5rem;
    }
    .hp-hero_frame { padding: 0.75rem; }
    .hp-hero_float--exp { left: 0; bottom: 2%; }
    .hp-hero_float--clients { right: 0; top: 4%; }
    .hp-hero_float {
        padding: 0.65rem 0.85rem;
        gap: 0.65rem;
        max-width: calc(100% - 1rem);
    }
    .hp-hero_float i {
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1.25rem;
    }
    .hp-hero_float strong { font-size: 1.35rem; }
    .hp-hero_float span { font-size: 0.95rem; }
    .hp-hero_btn { min-width: 100%; }
    .hp-hero_ring { display: none; }
    .hp-hero_visual { padding-bottom: 0.5rem; }
    .hp-hero_wave svg { height: 3.5rem; }
    .hp-hero_glow--1,
    .hp-hero_glow--2 {
        transform: scale(0.65);
        opacity: 0.5;
    }

    /* Trust strip & sections */
    .hp-trust { margin-top: 0; padding-bottom: 0.5rem; }
    .hp-trust_grid {
        padding: 1.2rem;
        gap: 0.75rem;
    }
    .hp-trust_item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    .hp-trust_item i { font-size: 2rem; }
    .hp-trust_item strong { font-size: 1.65rem; }
    .hp-trust_item span { font-size: 1.15rem; }
    .hp-section { padding: 3.5rem 0; }

    .hp-social_card .btn-brand { width: 100%; justify-content: center; }
}

@media (max-width: 479px) {
    .pageContainer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .logo img { max-height: 4rem; }

    .hp-hero_inner { padding-top: 2rem; }
    .hp-hero_title { font-size: clamp(2.5rem, 8vw, 3rem); }
    .hp-hero_eyebrow {
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }
    .hp-hero_lead { font-size: 1.35rem; }
    .hp-hero_trust li {
        flex: 1 1 100%;
        justify-content: center;
    }
    .hp-hero_float--exp,
    .hp-hero_float--clients { display: none; }
    .hp-trust_item span { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hp-hero_badge_dot,
    .hp-hero_ring,
    .hp-hero_float { animation: none; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
