/* =========================================================
   SUR AMERICANA DE VIDRIOS
   MAIN WEBSITE STYLES
========================================================= */

:root {
    --bg: #f2f3f1;
    --bg-soft: #e9ebe8;
    --white: #ffffff;

    --dark: #0b0d0d;
    --dark-soft: #111515;
    --dark-card: #171c1c;

    --text: #151818;
    --muted: #6d7473;
    --muted-dark: #9ba4a2;

    --line: rgba(21, 24, 24, 0.12);
    --line-light: rgba(255, 255, 255, 0.12);

    --accent: #b9ff5c;
    --accent-dark: #87c52e;

    --max-width: 1380px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-smooth: cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

address {
    font-style: normal;
}

::selection {
    background: var(--accent);
    color: var(--dark);
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(calc(100% - 80px), var(--max-width));
    margin-inline: auto;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.small-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}

.section-dark .small-label {
    color: var(--muted-dark);
}

.section-heading {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    margin-bottom: 90px;
}

.section-index {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-index span:first-child {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    letter-spacing: .02em;
}

.section-heading h2 {
    max-width: 780px;
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 6vw, 92px);
    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 1s var(--ease-smooth),
        transform 1s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: .2s;
}


/* =========================================================
   LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--dark);
    color: white;
    transition:
        opacity .8s var(--ease),
        visibility .8s var(--ease);
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: flex;
    gap: 6px;
    height: 36px;
    align-items: flex-end;
}

.loader-mark span {
    width: 5px;
    height: 100%;
    background: var(--accent);
    animation: loaderBars 1s infinite ease-in-out;
}

.loader-mark span:nth-child(2) {
    animation-delay: .12s;
}

.loader-mark span:nth-child(3) {
    animation-delay: .24s;
}

.loader-text {
    font-size: 9px;
    letter-spacing: .28em;
    font-weight: 700;
}

@keyframes loaderBars {
    0%,
    100% {
        transform: scaleY(.35);
    }

    50% {
        transform: scaleY(1);
    }
}


/* =========================================================
   CURSOR
========================================================= */

.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width .3s var(--ease),
        height .3s var(--ease),
        background .3s var(--ease),
        border .3s var(--ease);
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(185, 255, 92, .65);
}

.cursor-ring.hover {
    width: 64px;
    height: 64px;
    background: rgba(185, 255, 92, .08);
    border-color: var(--accent);
}

@media (max-width: 900px) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: white;
    transition:
        background .4s var(--ease),
        backdrop-filter .4s var(--ease),
        padding .4s var(--ease);
}

.site-header.scrolled {
    background: rgba(11, 13, 13, .88);
    backdrop-filter: blur(20px);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-symbol {
    position: relative;
    width: 30px;
    height: 30px;
    transform: skew(-16deg);
}

.brand-line {
    position: absolute;
    width: 5px;
    height: 100%;
    background: var(--accent);
    bottom: 0;
}

.line-one {
    left: 0;
    height: 65%;
}

.line-two {
    left: 10px;
    height: 84%;
}

.line-three {
    left: 20px;
    height: 100%;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    letter-spacing: .13em;
    font-weight: 800;
}

.brand-copy small {
    margin-top: 5px;
    font-size: 7px;
    letter-spacing: .34em;
    color: rgba(255,255,255,.6);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-link {
    position: relative;
    padding: 10px 0;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 13px 16px 13px 19px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .35s var(--ease);
}

.header-button i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-style: normal;
}

.header-button:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 1px;
    background: white;
    transition: all .4s var(--ease);
}

.mobile-toggle span:nth-child(2) {
    width: 17px;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    width: 25px;
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .5s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    height: 100%;
    padding: 130px 40px 40px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-inner > a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted-dark);
    font-size: 12px;
}

.mobile-menu-footer a {
    color: var(--accent);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 35%, rgba(100,130,115,.15), transparent 35%),
        var(--dark);
    color: white;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-one {
    width: 500px;
    height: 500px;
    top: 10%;
    right: 5%;
    background: rgba(185,255,92,.05);
    animation: floatGlow 10s ease-in-out infinite;
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    bottom: -10%;
    left: 15%;
    background: rgba(100,150,255,.06);
    animation: floatGlow 13s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(30px,-30px,0);
    }
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 700px;
    height: 700px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    animation: orbitRotate 30s linear infinite;
}

.orbit-two {
    width: 1000px;
    height: 1000px;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    animation: orbitRotate 45s linear infinite reverse;
}

@keyframes orbitRotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 80px), var(--max-width));
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
    align-items: center;
    gap: 70px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: rgba(255,255,255,.6);
}

.eyebrow-line {
    width: 42px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    max-width: 850px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(62px, 8vw, 128px);
    line-height: .87;
    letter-spacing: -.075em;
    font-weight: 700;
}

.gradient-text {
    color: var(--accent);
}

.hero-description {
    max-width: 580px;
    margin-top: 36px;
    color: rgba(255,255,255,.58);
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
}

.primary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 190px;
    padding: 8px 8px 8px 22px;
    gap: 20px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform .4s var(--ease);
}

.primary-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    transform: translateX(-110%);
    transition: transform .5s var(--ease);
}

.primary-button:hover::before {
    transform: translateX(0);
}

.primary-button span,
.primary-button i {
    position: relative;
    z-index: 1;
}

.primary-button i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    font-style: normal;
}

.primary-button:hover {
    transform: translateY(-3px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .3s ease;
}

.secondary-button span {
    color: var(--accent);
}

.secondary-button:hover {
    color: white;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 70px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-item strong {
    font-size: 9px;
    letter-spacing: .18em;
}

.meta-item span {
    font-size: 10px;
    color: rgba(255,255,255,.45);
}

.meta-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-frame {
    position: relative;
    width: min(500px, 100%);
    aspect-ratio: .78;
    border: 1px solid rgba(255,255,255,.16);
    padding: 16px;
    transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
    transition: transform 1s var(--ease);
}

.hero-visual:hover .glass-frame {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.glass-surface {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,.1), transparent 40%),
        linear-gradient(330deg, rgba(100,140,130,.08), transparent 60%);
    border: 1px solid rgba(255,255,255,.1);
}

.glass-reflection {
    position: absolute;
    width: 35%;
    height: 150%;
    top: -30%;
    transform: rotate(27deg);
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );
    animation: glassSweep 8s ease-in-out infinite;
}

.reflection-one {
    left: 15%;
}

.reflection-two {
    right: 5%;
    animation-delay: 3s;
}

@keyframes glassSweep {
    0%,
    100% {
        transform: translateX(-80px) rotate(27deg);
        opacity: .25;
    }

    50% {
        transform: translateX(180px) rotate(27deg);
        opacity: .7;
    }
}

.visual-cross {
    position: absolute;
    background: rgba(255,255,255,.06);
}

.cross-horizontal {
    top: 36%;
    left: 0;
    right: 0;
    height: 1px;
}

.cross-vertical {
    top: 0;
    bottom: 0;
    left: 62%;
    width: 1px;
}

.visual-card {
    position: absolute;
    left: 12%;
    bottom: 13%;
    width: 70%;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(10,12,12,.45);
    backdrop-filter: blur(15px);
}

.visual-number {
    color: var(--accent);
    font-size: 10px;
    letter-spacing: .2em;
}

.visual-card-line {
    width: 45px;
    height: 1px;
    margin: 28px 0;
    background: var(--accent);
}

.visual-card h3 {
    max-width: 270px;
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.05em;
}

.visual-card p {
    margin-top: 20px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    line-height: 1.7;
}

.frame-edge {
    position: absolute;
    background: var(--accent);
}

.edge-top {
    width: 50px;
    height: 2px;
    top: -1px;
    left: 20%;
}

.edge-right {
    width: 2px;
    height: 80px;
    right: -1px;
    bottom: 15%;
}

.edge-bottom {
    width: 80px;
    height: 2px;
    bottom: -1px;
    right: 15%;
}

.edge-left {
    width: 2px;
    height: 50px;
    left: -1px;
    top: 20%;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(17,21,21,.88);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.badge-top {
    top: 15%;
    right: -5%;
    animation: badgeFloat 5s ease-in-out infinite;
}

.badge-bottom {
    bottom: 12%;
    left: -7%;
    animation: badgeFloat 6s ease-in-out infinite reverse;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(185,255,92,.08);
}

.floating-badge > span:not(.badge-dot) {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: var(--accent);
}

.floating-badge div {
    display: flex;
    flex-direction: column;
}

.floating-badge strong {
    font-size: 9px;
    letter-spacing: .12em;
}

.floating-badge small {
    margin-top: 3px;
    color: rgba(255,255,255,.4);
    font-size: 7px;
    letter-spacing: .1em;
}

.hero-bottom {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-bottom-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,.3);
    font-size: 8px;
    letter-spacing: .2em;
}

.scroll-line {
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,.1);
    overflow: hidden;
}

.scroll-line span {
    display: block;
    width: 35%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2.5s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: translateX(-120%);
    }

    50% {
        transform: translateX(300%);
    }

    100% {
        transform: translateX(300%);
    }
}


/* =========================================================
   STATEMENT
========================================================= */

.statement-section {
    padding: 170px 0;
    background: var(--bg);
}

.statement-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
}

.statement-label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.statement-label span {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.statement-label p {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--muted);
}

.statement-content h2 {
    max-width: 1000px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: .98;
    letter-spacing: -.06em;
}

.statement-content h2 em {
    color: #87908e;
    font-style: normal;
}

.statement-content p {
    max-width: 650px;
    margin-top: 42px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 150px 0;
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 650px;
}

.about-image {
    position: absolute;
    inset: 0 12% 0 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(180,220,205,.15), transparent 50%),
        linear-gradient(30deg, #202827, #0c1010 70%);
}

.about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 35%, rgba(255,255,255,.08) 35.5%, transparent 36%),
        linear-gradient(35deg, transparent 55%, rgba(255,255,255,.04) 55.5%, transparent 56%);
    animation: architecturalShift 12s infinite alternate ease-in-out;
}

@keyframes architecturalShift {
    from {
        transform: translateX(-20px) scale(1);
    }

    to {
        transform: translateX(20px) scale(1.05);
    }
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(185,255,92,.08), transparent 25%),
        linear-gradient(to top, rgba(0,0,0,.8), transparent 50%);
}

.about-image-content {
    position: absolute;
    inset: auto 35px 35px 35px;
    display: flex;
    flex-direction: column;
}

.about-image-content span {
    font-size: 9px;
    letter-spacing: .18em;
    color: rgba(255,255,255,.45);
}

.about-image-content strong {
    margin-top: 15px;
    font-family: "Manrope", sans-serif;
    font-size: 58px;
    line-height: .87;
    letter-spacing: -.06em;
}

.about-image-content small {
    margin-top: 20px;
    color: rgba(255,255,255,.5);
    font-size: 9px;
    letter-spacing: .12em;
}

.about-float-card {
    position: absolute;
    right: 0;
    top: 20%;
    width: 220px;
    padding: 30px;
    background: var(--accent);
    color: var(--dark);
}

.about-float-card span {
    font-size: 8px;
    letter-spacing: .2em;
    font-weight: 800;
}

.about-float-card strong {
    display: block;
    margin-top: 25px;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.04em;
}

.about-float-card small {
    display: block;
    margin-top: 20px;
    font-size: 10px;
    line-height: 1.5;
}

.about-copy {
    display: flex;
    gap: 35px;
}

.vertical-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255,255,255,.25);
    font-size: 8px;
    letter-spacing: .2em;
    white-space: nowrap;
}

.about-copy-inner {
    flex: 1;
}

.large-copy {
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.about-copy-inner > p:not(.large-copy) {
    margin-top: 25px;
    color: var(--muted-dark);
    font-size: 14px;
    line-height: 1.8;
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .4s var(--ease);
}

.text-link:hover::after {
    width: 100%;
}

.text-link i {
    color: var(--accent);
    font-style: normal;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: #dfe2df;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 0 40px;
    border-left: 1px solid rgba(0,0,0,.12);
}

.stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.stat-number {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.06em;
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.stat p {
    max-width: 200px;
    margin-top: 12px;
    color: #707875;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 160px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 440px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    transition:
        background .5s var(--ease),
        transform .5s var(--ease);
}

.service-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(50px);
    opacity: 0;
    transition: opacity .5s var(--ease);
}

.service-card:hover {
    background: white;
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: .12;
}

.service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-top > span {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .16em;
}

.service-icon {
    position: relative;
    width: 42px;
    height: 42px;
}

.service-icon span {
    position: absolute;
    border: 1px solid var(--text);
}

.service-icon span:nth-child(1) {
    inset: 4px;
}

.service-icon span:nth-child(2) {
    inset: 10px;
}

.icon-double span:nth-child(2) {
    transform: translate(7px, 7px);
}

.icon-frame span:nth-child(1) {
    inset: 3px 10px;
}

.icon-frame span:nth-child(2) {
    inset: 10px 3px;
}

.icon-frame span:nth-child(3) {
    inset: 17px 10px;
}

.icon-circle span {
    inset: 4px;
    border-radius: 50%;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.icon-grid span {
    position: static;
}

.icon-diagonal span:nth-child(1) {
    width: 2px;
    height: 48px;
    left: 18px;
    top: -3px;
    transform: rotate(35deg);
}

.icon-diagonal span:nth-child(2) {
    width: 2px;
    height: 48px;
    left: 28px;
    top: -3px;
    transform: rotate(35deg);
}

.service-content {
    position: relative;
    z-index: 2;
    margin-top: 120px;
}

.service-content h3 {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.045em;
}

.service-content p {
    max-width: 300px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.service-content a span {
    color: var(--accent-dark);
}

.service-number {
    position: absolute;
    right: 20px;
    bottom: -15px;
    color: rgba(0,0,0,.045);
    font-family: "Manrope", sans-serif;
    font-size: 120px;
    line-height: 1;
    font-weight: 800;
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee-section {
    overflow: hidden;
    padding: 28px 0;
    background: var(--accent);
    color: var(--dark);
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-right: 50px;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.marquee-item i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark);
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: 160px 0;
}

.process-list {
    border-top: 1px solid var(--line-light);
}

.process-item {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 50px;
    align-items: center;
    padding: 45px 0;
    border-bottom: 1px solid var(--line-light);
    transition: padding .4s var(--ease);
}

.process-item:hover {
    padding-left: 20px;
    padding-right: 20px;
}

.process-number {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--accent);
}

.process-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.process-main span {
    font-size: 8px;
    letter-spacing: .2em;
    color: var(--muted-dark);
}

.process-main h3 {
    margin-top: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.04em;
}

.process-main p {
    color: var(--muted-dark);
    font-size: 12px;
    line-height: 1.8;
}

.process-arrow {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: var(--accent);
    transition:
        background .3s ease,
        color .3s ease,
        transform .4s var(--ease);
}

.process-item:hover .process-arrow {
    background: var(--accent);
    color: var(--dark);
    transform: rotate(45deg);
}


/* =========================================================
   FEATURE
========================================================= */

.feature-section {
    padding: 170px 0;
    background: var(--bg-soft);
    overflow: hidden;
}

.feature-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.feature-copy h2 {
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 86px);
    line-height: .91;
    letter-spacing: -.065em;
}

.feature-copy h2 em {
    color: #8a928f;
    font-style: normal;
}

.feature-copy p {
    max-width: 480px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.feature-copy .primary-button {
    margin-top: 35px;
}

.feature-visual {
    min-height: 650px;
    display: grid;
    place-items: center;
}

.feature-frame {
    position: relative;
    width: min(600px, 100%);
    aspect-ratio: 1;
    border: 1px solid rgba(0,0,0,.12);
    transform: rotate(3deg);
    transition: transform 1s var(--ease);
}

.feature-visual:hover .feature-frame {
    transform: rotate(0deg) scale(1.02);
}

.feature-panel {
    position: absolute;
    border: 1px solid rgba(0,0,0,.12);
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.8),
            rgba(200,210,205,.25)
        );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    overflow: hidden;
}

.feature-panel::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 180%;
    top: -40%;
    left: -80%;
    transform: rotate(25deg);
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );
    animation: panelReflection 6s infinite ease-in-out;
}

@keyframes panelReflection {
    0% {
        left: -100%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

.feature-panel span {
    position: relative;
    z-index: 1;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
}

.panel-one {
    top: 8%;
    left: 8%;
    width: 38%;
    height: 84%;
}

.panel-two {
    top: 8%;
    right: 8%;
    width: 38%;
    height: 48%;
}

.panel-three {
    bottom: 8%;
    right: 8%;
    width: 38%;
    height: 28%;
}

.feature-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.center-ring {
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
    animation: centerRotate 12s linear infinite;
}

.center-ring::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: -4px;
    left: 50%;
    background: var(--accent);
    border-radius: 50%;
}

@keyframes centerRotate {
    to {
        transform: rotate(360deg);
    }
}

.feature-center strong {
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    letter-spacing: -.06em;
}

.feature-center small {
    margin-top: 7px;
    text-align: center;
    color: rgba(255,255,255,.4);
    font-size: 7px;
    line-height: 1.4;
    letter-spacing: .2em;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    padding: 160px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.project-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #151a19;
}

.project-large {
    min-height: 650px;
}

.project-wide {
    grid-column: span 2;
    min-height: 430px;
}

.project-background {
    position: absolute;
    inset: 0;
    transition: transform 1s var(--ease);
}

.project-card:hover .project-background {
    transform: scale(1.08);
}

.project-bg-one {
    background:
        linear-gradient(135deg, rgba(200,220,210,.2), transparent 45%),
        linear-gradient(35deg, #26312e, #101414 70%);
}

.project-bg-two {
    background:
        radial-gradient(circle at 70% 30%, rgba(185,255,92,.12), transparent 25%),
        linear-gradient(135deg, #1c2523, #0b0e0e);
}

.project-bg-three {
    background:
        linear-gradient(120deg, rgba(255,255,255,.1), transparent 35%),
        linear-gradient(300deg, #25302e, #0c1110);
}

.project-bg-four {
    background:
        radial-gradient(circle at 30% 50%, rgba(185,255,92,.12), transparent 25%),
        linear-gradient(90deg, #18201e, #080b0b);
}

.project-background::before,
.project-background::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
}

.project-background::before {
    width: 65%;
    height: 120%;
    left: 15%;
    top: -10%;
    transform: rotate(12deg);
}

.project-background::after {
    width: 40%;
    height: 130%;
    right: 10%;
    top: -15%;
    transform: rotate(-25deg);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,.85), transparent 65%);
}

.project-content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
}

.project-content > span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .2em;
    color: rgba(255,255,255,.45);
}

.project-content h3 {
    margin-top: 14px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 58px);
    line-height: .92;
    letter-spacing: -.055em;
}

.project-content p {
    max-width: 400px;
    margin-top: 15px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    line-height: 1.7;
}

.project-content a {
    display: inline-block;
    margin-top: 25px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    padding: 160px 0;
    background: var(--bg);
}

.location-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.location-copy h2 {
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(55px, 6vw, 92px);
    line-height: .9;
    letter-spacing: -.065em;
}

.location-copy > p {
    max-width: 480px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.address-card {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 440px;
    margin-top: 45px;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.5);
}

.address-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dark);
}

.address-icon span {
    width: 12px;
    height: 12px;
    border: 2px solid var(--accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.address-card div:last-child {
    display: flex;
    flex-direction: column;
}

.address-card small {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .2em;
    color: var(--muted);
}

.address-card strong {
    margin-top: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.map-link {
    display: inline-flex;
    gap: 18px;
    margin-top: 25px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--text);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.map-link span {
    color: var(--accent-dark);
}

.map-container {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: #d9ddd9;
    border: 1px solid rgba(0,0,0,.1);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.06) 1px, transparent 1px);
    background-size: 55px 55px;
}

.map-road {
    position: absolute;
    background: rgba(255,255,255,.75);
    box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}

.road-one {
    width: 130%;
    height: 40px;
    left: -15%;
    top: 48%;
    transform: rotate(-13deg);
}

.road-two {
    width: 110%;
    height: 24px;
    left: -5%;
    top: 28%;
    transform: rotate(28deg);
}

.road-three {
    width: 120%;
    height: 17px;
    left: -10%;
    top: 75%;
    transform: rotate(7deg);
}

.map-marker {
    position: absolute;
    left: 52%;
    top: 48%;
    transform: translate(-50%, -50%);
}

.marker-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px solid var(--accent-dark);
    transform: translate(-50%, -50%);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(.5);
        opacity: .8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.marker-core {
    position: relative;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dark);
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
}

.marker-label {
    position: absolute;
    left: 45px;
    top: 20px;
    min-width: 180px;
    padding: 13px 16px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.marker-label strong {
    display: block;
    font-size: 10px;
}

.marker-label span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
}

.map-coordinates {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: rgba(0,0,0,.35);
    font-size: 7px;
    letter-spacing: .15em;
}

.map-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    color: rgba(0,0,0,.35);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 160px 0;
    background: var(--bg-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.faq-intro h2 {
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.5vw, 80px);
    line-height: .9;
    letter-spacing: -.065em;
}

.faq-intro > p {
    max-width: 380px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.faq-intro .text-link {
    color: var(--text);
    border-color: rgba(0,0,0,.15);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.faq-question i {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
    font-style: normal;
    font-size: 16px;
    transition:
        transform .4s var(--ease),
        background .4s var(--ease);
}

.faq-item.active .faq-question i {
    background: var(--dark);
    color: var(--accent);
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s var(--ease);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    max-width: 700px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 10%;
    right: -20%;
    border-radius: 50%;
    background: rgba(185,255,92,.035);
    filter: blur(100px);
    pointer-events: none;
}

.contact-header {
    max-width: 900px;
}

.contact-header h2 {
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    line-height: .88;
    letter-spacing: -.075em;
}

.contact-header h2 em {
    color: var(--accent);
    font-style: normal;
}

.contact-header p {
    max-width: 600px;
    margin-top: 35px;
    color: var(--muted-dark);
    font-size: 14px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
    margin-top: 100px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-detail {
    padding: 28px 0;
    border-top: 1px solid var(--line-light);
}

.contact-detail span {
    display: block;
    color: var(--muted-dark);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .2em;
}

.contact-detail a,
.contact-detail address {
    display: block;
    margin-top: 9px;
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.contact-detail a {
    transition: color .3s ease;
}

.contact-detail a:hover {
    color: var(--accent);
}

.contact-note {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.note-mark {
    color: var(--accent);
    font-size: 20px;
}

.contact-note p {
    max-width: 300px;
    color: var(--muted-dark);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: 45px;
    background: var(--dark-card);
    border: 1px solid var(--line-light);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.55);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    outline: 0;
    border-radius: 0;
    background: rgba(255,255,255,.035);
    color: white;
    padding: 16px 17px;
    font-size: 12px;
    transition:
        border .3s ease,
        background .3s ease;
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(185,255,92,.6);
    background: rgba(185,255,92,.025);
}

.field-error {
    display: none;
    margin-top: 7px;
    color: #ff8e8e;
    font-size: 9px;
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ff8e8e;
}

.form-group.invalid .field-error {
    display: block;
}

.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.consent {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 340px;
    color: rgba(255,255,255,.4);
    font-size: 9px;
    line-height: 1.5;
    cursor: pointer;
}

.consent input {
    position: absolute;
    opacity: 0;
}

.custom-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,.25);
    transition: all .3s ease;
}

.consent input:checked + .custom-checkbox {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: inset 0 0 0 4px var(--dark-card);
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 8px 8px 8px 22px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .4s var(--ease);
}

.submit-button i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    font-style: normal;
}

.submit-button:hover {
    transform: translateY(-3px);
}

.form-success {
    display: none;
    margin-top: 25px;
    padding: 18px;
    border: 1px solid rgba(185,255,92,.25);
    background: rgba(185,255,92,.05);
}

.form-success.visible {
    display: flex;
    flex-direction: column;
}

.form-success strong {
    color: var(--accent);
    font-size: 11px;
}

.form-success span {
    margin-top: 4px;
    color: var(--muted-dark);
    font-size: 10px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: var(--accent);
    color: var(--dark);
}

.cta-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 48%, rgba(0,0,0,.07) 49%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(0,0,0,.05) 49%, transparent 50%);
    background-size: 90px 90px;
    animation: ctaMove 15s linear infinite;
}

@keyframes ctaMove {
    to {
        background-position: 90px 90px;
    }
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-inner .small-label {
    color: rgba(0,0,0,.5);
}

.cta-inner h2 {
    max-width: 950px;
    margin: 25px auto 45px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(58px, 8vw, 120px);
    line-height: .85;
    letter-spacing: -.08em;
}

.cta-inner h2 span {
    display: block;
    color: rgba(0,0,0,.38);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 10px 10px 10px 25px;
    border-radius: 50px;
    background: var(--dark);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .4s var(--ease);
}

.cta-button i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-style: normal;
}

.cta-button:hover {
    transform: translateY(-4px);
}


/* =========================================================
   LEGAL
========================================================= */

.legal-section {
    display: none;
    min-height: 100vh;
    padding: 180px 0 120px;
    background: var(--bg);
}

.legal-section.active {
    display: block;
}

.legal-header {
    max-width: 900px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--line);
}

.legal-header h1 {
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(55px, 8vw, 110px);
    line-height: .9;
    letter-spacing: -.07em;
}

.legal-header p {
    margin-top: 25px;
    color: var(--muted);
    font-size: 11px;
}

.legal-content {
    max-width: 850px;
    padding-top: 70px;
}

.legal-content h2 {
    margin-top: 45px;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    letter-spacing: -.03em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 100px 0 30px;
    background: #080a0a;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 80px;
}

.footer-brand p {
    max-width: 280px;
    margin-top: 25px;
    color: var(--muted-dark);
    font-size: 11px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column > span {
    margin-bottom: 10px;
    color: rgba(255,255,255,.35);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .2em;
}

.footer-column a,
.footer-column address {
    color: rgba(255,255,255,.65);
    font-size: 10px;
    line-height: 1.7;
    transition: color .3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-contact a {
    font-size: 11px;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.3);
    font-size: 8px;
    letter-spacing: .08em;
}

.back-top {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: transparent;
    color: var(--accent);
    transition: all .3s ease;
}

.back-top:hover {
    background: var(--accent);
    color: var(--dark);
}


/* =========================================================
   COOKIE NOTICE
========================================================= */

.cookie-notice {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 2000;
    width: min(430px, calc(100% - 50px));
    display: flex;
    align-items: flex-end;
    gap: 25px;
    padding: 20px;
    background: rgba(12,15,15,.94);
    color: white;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
    backdrop-filter: blur(20px);
    transform: translateY(120%);
    opacity: 0;
    transition: all .5s var(--ease);
}

.cookie-notice.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-notice strong {
    display: block;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cookie-notice p {
    margin-top: 6px;
    color: var(--muted-dark);
    font-size: 9px;
    line-height: 1.6;
}

.cookie-notice button {
    flex-shrink: 0;
    padding: 10px 14px;
    background: var(--accent);
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* =========================================================
   RESPONSIVE — 1200
========================================================= */

@media (max-width: 1200px) {

    .desktop-nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr .85fr;
    }

    .hero h1 {
        font-size: clamp(58px, 7.5vw, 105px);
    }

    .hero-visual {
        min-height: 560px;
    }

    .glass-frame {
        width: 420px;
    }

    .about-layout {
        gap: 70px;
    }

    .section-heading {
        grid-template-columns: 160px 1fr;
    }

    .feature-layout,
    .location-layout,
    .faq-layout {
        gap: 70px;
    }

}


/* =========================================================
   RESPONSIVE — 1000
========================================================= */

@media (max-width: 1000px) {

    .container {
        width: min(calc(100% - 50px), var(--max-width));
    }

    .desktop-nav,
    .header-button {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 150px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-visual {
        min-height: 500px;
        margin-top: 20px;
    }

    .hero h1 {
        max-width: 800px;
    }

    .glass-frame {
        width: 390px;
    }

    .hero-meta {
        margin-top: 45px;
    }

    .statement-grid,
    .about-layout,
    .feature-layout,
    .location-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .statement-grid {
        gap: 30px;
    }

    .about-layout {
        gap: 80px;
    }

    .about-copy {
        max-width: 800px;
    }

    .feature-layout {
        gap: 60px;
    }

    .feature-copy {
        max-width: 750px;
    }

    .feature-visual {
        min-height: 550px;
    }

    .location-copy {
        max-width: 700px;
    }

    .faq-intro {
        max-width: 700px;
    }

    .faq-list {
        margin-top: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .contact-detail {
        border-top: 1px solid var(--line-light);
    }

    .contact-note {
        grid-column: span 3;
    }

    .footer-main {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }

    .footer-contact {
        grid-column: span 3;
        margin-top: 30px;
    }

}


/* =========================================================
   RESPONSIVE — 760
========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(calc(100% - 36px), var(--max-width));
    }

    .header-inner {
        min-height: 75px;
    }

    .hero-container {
        padding-top: 125px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(52px, 15vw, 86px);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-meta {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 45px;
    }

    .meta-divider {
        display: none;
    }

    .hero-visual {
        min-height: 430px;
    }

    .glass-frame {
        width: 290px;
    }

    .visual-card {
        padding: 20px;
    }

    .visual-card h3 {
        font-size: 25px;
    }

    .floating-badge {
        padding: 10px 12px;
    }

    .badge-top {
        right: -5px;
    }

    .badge-bottom {
        left: -5px;
    }

    .statement-section,
    .about-section,
    .services-section,
    .process-section,
    .feature-section,
    .projects-section,
    .location-section,
    .faq-section,
    .contact-section {
        padding: 100px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 55px;
    }

    .section-heading > div:last-child {
        margin-top: 25px;
    }

    .section-heading h2 {
        font-size: clamp(45px, 13vw, 70px);
    }

    .about-visual {
        min-height: 500px;
    }

    .about-image {
        inset: 0 30px 0 0;
    }

    .about-float-card {
        width: 170px;
        padding: 22px;
    }

    .about-float-card strong {
        font-size: 21px;
    }

    .about-copy {
        gap: 18px;
    }

    .large-copy {
        font-size: 27px;
    }

    .stats-section {
        padding: 55px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        padding: 25px 15px;
        border-left: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .stat:nth-child(odd) {
        border-left: 0;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: 0;
    }

    .stat-number {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 390px;
    }

    .service-content {
        margin-top: 100px;
    }

    .process-item {
        grid-template-columns: 45px 1fr;
        gap: 20px;
    }

    .process-main {
        display: block;
    }

    .process-main p {
        margin-top: 20px;
    }

    .process-arrow {
        display: none;
    }

    .feature-frame {
        transform: none;
    }

    .feature-visual {
        min-height: 400px;
    }

    .feature-center {
        width: 125px;
        height: 125px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-large,
    .project-wide {
        grid-column: auto;
        min-height: 470px;
    }

    .project-card {
        min-height: 430px;
    }

    .map-container {
        min-height: 450px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-note {
        grid-column: auto;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-right: 55px;
    }

    .cookie-notice {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

}


/* =========================================================
   RESPONSIVE — 480
========================================================= */

@media (max-width: 480px) {

    .brand-copy strong {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 51px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-bottom {
        display: none;
    }

    .hero-visual {
        min-height: 370px;
    }

    .glass-frame {
        width: 245px;
    }

    .visual-card {
        left: 9%;
        width: 78%;
        padding: 16px;
    }

    .visual-card-line {
        margin: 17px 0;
    }

    .visual-card h3 {
        font-size: 20px;
    }

    .visual-card p {
        font-size: 9px;
    }

    .floating-badge {
        transform: scale(.8);
    }

    .statement-content h2 {
        font-size: 45px;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-image-content strong {
        font-size: 43px;
    }

    .about-float-card {
        width: 145px;
        right: -5px;
    }

    .service-card {
        min-height: 360px;
        padding: 24px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .marquee-item {
        font-size: 24px;
    }

    .feature-frame {
        width: 90%;
    }

    .feature-panel {
        padding: 14px;
    }

    .feature-center {
        width: 105px;
        height: 105px;
    }

    .feature-center strong {
        font-size: 25px;
    }

    .project-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .project-content h3 {
        font-size: 34px;
    }

    .map-container {
        min-height: 380px;
    }

    .marker-label {
        left: 30px;
        top: 50px;
    }

    .contact-header h2 {
        font-size: 58px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}