/* ==========================================================================
   Parallax Starter - Free HTML CSS Template
   
TemplateMo 612 Parallax Starter

https://templatemo.com/tm-612-parallax-starter

   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --nav-bg: rgba(8, 10, 12, 0.45);
    --nav-bg-scrolled: rgba(8, 10, 12, 0.92);
    --nav-pill-bg: rgba(255, 255, 255, 0.06);
    --nav-pill-border: rgba(255, 255, 255, 0.1);
    --nav-link-active-bg: rgba(255, 255, 255, 0.12);
    --nav-accent: rgba(255, 255, 255, 0.95);
    --transition-smooth: 0.3s ease;
    --transition-nav: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-surface: rgba(255, 255, 255, 0.035);
    --glass-surface-hover: rgba(255, 255, 255, 0.055);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-strong: rgba(255, 255, 255, 0.14);
    --glass-radius: 16px;
    --glass-blur: 14px;
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.preloader-active {
    overflow: hidden;
}

/* --- Page preloader --- */
.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.page-preloader--done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.5s;
}

.page-preloader__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 45%, rgba(28, 32, 42, 0.95) 0%, rgba(6, 8, 12, 0.98) 55%, #030305 100%);
}

.page-preloader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 32px;
}

.page-preloader__logo {
    display: block;
    height: clamp(56px, 12vw, 80px);
    width: auto;
    max-width: min(280px, 75vw);
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
    animation: preloaderLogoPulse 2.4s ease-in-out infinite;
}

.page-preloader__track {
    width: min(200px, 55vw);
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.page-preloader__glow {
    display: block;
    height: 100%;
    width: 42%;
    border-radius: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.45),
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: preloaderGlow 1.35s ease-in-out infinite;
}

@keyframes preloaderLogoPulse {
    0%,
    100% {
        opacity: 0.88;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes preloaderGlow {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(320%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-preloader__logo {
        animation: none;
    }

    .page-preloader__glow {
        animation: none;
        width: 100%;
        opacity: 0.35;
    }

    .page-preloader--done {
        transition-duration: 0.15s, 0s;
        transition-delay: 0s, 0.15s;
    }
}

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

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

/* --- Navigation --- */
#templatemo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition:
        background var(--transition-smooth),
        border-color var(--transition-nav),
        box-shadow var(--transition-nav);
}

#templatemo-nav.scrolled {
    background: var(--nav-bg-scrolled);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.nav-logo:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 6px;
    border-radius: 4px;
}

.nav-logo-img {
    display: block;
    height: 54px;
    width: auto;
    max-width: min(300px, 58vw);
    object-fit: contain;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

.nav-logo:hover .nav-logo-img,
.nav-logo:focus-visible .nav-logo-img {
    transform: scale(1.05) translateY(-2px);
    filter: brightness(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 3px;
    margin: 0;
    padding: 5px;
    background: var(--nav-pill-bg);
    border: 1px solid var(--nav-pill-border);
    border-radius: 100px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-links .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    padding: 11px 16px;
    border-radius: 100px;
    border: none;
    background: transparent;
    transition:
        color var(--transition-nav),
        background var(--transition-nav),
        box-shadow var(--transition-nav);
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 0;
    height: 2px;
    border-radius: 1px;
    background: var(--nav-accent);
    transform: translateX(-50%);
    opacity: 0;
    transition:
        width var(--transition-nav),
        opacity var(--transition-nav);
}

.nav-links .nav-link:hover {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-link:hover::after {
    width: 18px;
    opacity: 0.85;
}

.nav-links .nav-link.active {
    color: var(--white);
    background: var(--nav-link-active-bg);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-links .nav-link.active::after {
    width: 22px;
    opacity: 1;
}

.nav-links .nav-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .nav-links .nav-link {
        padding: 10px 12px;
        font-size: 10px;
        letter-spacing: 0.16em;
    }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-smooth);
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Shows through where background image is masked out at top/bottom — hides texture break at section seams */
    background-color: #050505;
}

/* Parallax Background Image Layer
   Height is 200% and starts at top: -50% to give
   maximum room for large vertical translations */
.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    /* Fade photo at vertical edges so the seam is solid colour, not two different textures */
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Dark overlay + strong edge veils (matches masked photo edges; crushes any remaining seam) */
.parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        rgba(0, 0, 0, 0.42);
}

.parallax-overlay.overlay-dark {
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.98) 4%,
            rgba(0, 0, 0, 0.88) 14%,
            rgba(0, 0, 0, 0.48) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.98) 4%,
            rgba(0, 0, 0, 0.88) 14%,
            rgba(0, 0, 0, 0.48) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        rgba(0, 0, 0, 0.55);
}

.parallax-overlay.overlay-medium {
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.98) 4%,
            rgba(0, 0, 0, 0.85) 14%,
            rgba(0, 0, 0, 0.45) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.98) 4%,
            rgba(0, 0, 0, 0.85) 14%,
            rgba(0, 0, 0, 0.45) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        rgba(0, 0, 0, 0.5);
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    padding: 100px 30px;
    text-align: center;
}

/* --- Shared section chrome (matches FAQs language) --- */
.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 16px;
}

.section-block-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-display-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: var(--white);
    margin: 0;
    text-transform: none;
}

.section-tagline {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 300;
    color: var(--white-70);
    letter-spacing: 0.04em;
    line-height: 1.55;
    margin: -12px auto 44px;
    max-width: 38ch;
    text-align: center;
}

/* --- Hero --- */
.hero-overlay {
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(125deg, rgba(10, 12, 18, 0.55) 0%, rgba(4, 6, 10, 0.72) 100%);
}

.section-content--hero {
    max-width: 900px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.5);
}

.hero-display-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(32px, 5.2vw, 54px);
    line-height: 1.12;
    letter-spacing: 0.03em;
    color: var(--white);
    margin: 0 0 22px;
    text-transform: none;
}

.hero-lead {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.7vw, 18px);
    font-weight: 300;
    color: var(--white-70);
    line-height: 1.65;
    letter-spacing: 0.03em;
    margin: 0 auto;
    max-width: 38ch;
}

/* --- About --- */
.about-overlay {
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(6, 8, 12, 0.48) 100%);
}

.section-content--about {
    max-width: 1120px;
}

/* --- Services --- */
.services-overlay {
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.98) 4%,
            rgba(0, 0, 0, 0.88) 14%,
            rgba(0, 0, 0, 0.48) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.98) 4%,
            rgba(0, 0, 0, 0.88) 14%,
            rgba(0, 0, 0, 0.48) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(210deg, rgba(6, 8, 14, 0.65) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.section-content--services {
    max-width: 1080px;
}

/* --- Services page: pricing tiers --- */
.pricing-block {
    width: 100%;
    margin-top: clamp(48px, 8vw, 88px);
    padding-top: clamp(40px, 6vw, 72px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-block__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}

.pricing-block__eyebrow {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-block__intro {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.55vw, 17px);
    font-weight: 300;
    line-height: 1.65;
    color: var(--white-70);
    letter-spacing: 0.03em;
    margin: 20px auto 0;
    max-width: 52ch;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.5vw, 26px);
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-radius: calc(var(--glass-radius) + 2px);
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.35s ease,
        background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    background: var(--glass-surface-hover);
    border-color: var(--glass-border-strong);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.045);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.pricing-card--featured:hover {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.pricing-card--featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.15));
    pointer-events: none;
}

.pricing-card__badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #0a0a0c;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.pricing-card__inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 32px 26px 28px;
    min-height: 100%;
}

.pricing-card--featured .pricing-card__inner {
    padding-top: 38px;
}

.pricing-card__label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin: 0 0 10px;
}

.pricing-card__title {
    font-family: var(--font-heading);
    font-size: clamp(17px, 1.9vw, 20px);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 14px;
    line-height: 1.3;
}

.pricing-card__pitch {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--white-70);
    margin: 0 0 22px;
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card__price-note {
    display: block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.48);
}

.pricing-card__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex: 1 1 auto;
}

.pricing-card__features li {
    position: relative;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    padding-left: 22px;
    margin-bottom: 12px;
}

.pricing-card__features li:last-child {
    margin-bottom: 0;
}

.pricing-card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.pricing-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 22px;
    border-radius: 100px;
    color: #0a0a0c;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.95);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.pricing-card__cta:hover {
    background: var(--white);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.12);
}

.pricing-card__cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
}

.pricing-card__cta--ghost {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
}

.pricing-card__cta--ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

button.pricing-card__cta {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.pricing-email-modal__form {
    margin-top: 6px;
}

.pricing-email-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 4px;
}

.pricing-email-modal__actions .cookie-banner__btn {
    flex: 1 1 120px;
    min-width: 0;
    justify-content: center;
}

.pricing-block__footnote {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    max-width: 48ch;
    margin: clamp(32px, 5vw, 44px) auto 0;
    letter-spacing: 0.03em;
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card:hover {
        transform: none;
    }
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card--featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pricing-card__inner {
        padding: 28px 22px 24px;
    }

    .pricing-card--featured .pricing-card__inner {
        padding-top: 36px;
    }
}

/* --- Contact --- */
.contact-overlay {
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(165deg, rgba(12, 14, 20, 0.48) 0%, rgba(8, 10, 14, 0.52) 100%);
}

.section-content--contact {
    max-width: 880px;
}

.contact-tagline {
    margin-top: -8px;
}

/* --- Legacy utility --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 4px;
    color: var(--white-70);
    margin-bottom: 40px;
}

.caps {
    text-transform: uppercase;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.contact-panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 36px 36px;
    text-align: left;
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    border-left: 3px solid rgba(255, 255, 255, 0.22);
}

.contact-panel-lead {
    font-size: 16px;
    color: var(--white-90);
    margin: 0 0 24px;
    line-height: 1.8;
    font-weight: 300;
}

.contact-details-block {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-line {
    font-size: 15px;
    color: var(--white-70);
    line-height: 1.65;
    margin: 0 0 12px;
    font-weight: 300;
}

.contact-line:last-child {
    margin-bottom: 0;
}

.contact-line--company {
    color: var(--white-90);
    font-size: 16px;
}

.contact-mail {
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: color var(--transition-nav), border-color var(--transition-nav);
}

.contact-mail:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.contact-form-wrap--in-panel {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: none;
}

.contact-panel-lead--compact {
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact-map--in-panel {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-line--map-note {
    margin-bottom: 16px;
}

.contact-map__frame-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--glass-radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    aspect-ratio: 16 / 10;
    min-height: 220px;
    max-height: 400px;
    background: rgba(0, 0, 0, 0.25);
}

.contact-map__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --- Legal / inner pages (e.g. privacy) --- */
.legal-page-section.parallax-section {
    min-height: 100vh;
    align-items: flex-start;
}

.section-content--legal {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: left;
}

.section-content--legal .section-block-header {
    text-align: center;
    margin-bottom: 36px;
}

.legal-document h2 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 32px 0 14px;
    line-height: 1.35;
}

.legal-document h2:first-of-type {
    margin-top: 24px;
}

.legal-document p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white-90);
    margin: 0 0 16px;
}

.legal-document p:last-child {
    margin-bottom: 0;
}

.legal-document a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-nav);
}

.legal-document a:hover {
    color: var(--white);
}

.legal-document ul {
    margin: 0 0 18px;
    padding-left: 1.35em;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--white-70);
}

.legal-document li {
    margin-bottom: 8px;
}

.legal-document li:last-child {
    margin-bottom: 0;
}

/* --- About Columns --- */
.unsplash-credit {
    font-size: 14px;
    color: var(--white-40);
    margin-top: 25px;
    letter-spacing: 1px;
}

.unsplash-credit a {
    color: var(--white-70);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.about-col {
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 28px 30px 32px;
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.about-col:hover {
    background: var(--glass-surface-hover);
    border-color: var(--glass-border-strong);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
}

.about-thumb-wide {
    overflow: hidden;
    width: 100%;
    max-width: none;
    aspect-ratio: 2 / 1;
    border-radius: 12px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.about-thumb-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-col:hover .about-thumb-wide img {
    transform: scale(1.03);
}

.about-col p {
    font-size: 16px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-col p:last-child {
    margin-bottom: 0;
}

.about-col a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- About page: custom layout --- */
.about-page-content {
    max-width: 1140px;
}

.about-page-header {
    max-width: 860px;
    margin-bottom: clamp(34px, 5vw, 54px);
}

.about-page-lead {
    margin: 18px auto 0;
    max-width: 60ch;
    font-size: clamp(16px, 1.75vw, 19px);
    font-weight: 300;
    line-height: 1.68;
    letter-spacing: 0.02em;
    color: var(--white-70);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: clamp(22px, 3.6vw, 40px);
    align-items: stretch;
    margin-bottom: clamp(30px, 5.4vw, 52px);
}

.about-story__media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.02);
}

.about-story__media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.about-story__content {
    padding: 28px 30px;
    border-radius: var(--glass-radius);
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    text-align: left;
}

.about-story__title {
    font-family: var(--font-heading);
    font-size: clamp(19px, 2.2vw, 25px);
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.3;
    margin: 0 0 18px;
}

.about-story__content p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.82;
    color: var(--white-90);
}

.about-story__content p:last-child {
    margin-bottom: 0;
}

.about-signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.2vw, 22px);
    margin-bottom: clamp(36px, 5.6vw, 56px);
}

.about-signal {
    padding: 18px 20px 20px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.about-signal__value {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 10px;
}

.about-signal__text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--white-70);
    margin: 0;
}

.about-focus__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(26px, 4vw, 34px);
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 26px);
}

.about-focus-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 18px 18px 20px;
    border-radius: var(--glass-radius);
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        border-color 0.3s ease;
}

.about-focus-card:hover {
    transform: translateY(-4px);
    background: var(--glass-surface-hover);
    border-color: var(--glass-border-strong);
}

.about-focus-card__media {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-focus-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-focus-card__title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 10px;
}

.about-focus-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-70);
}

.about-process {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(22px, 3.5vw, 38px);
    margin: clamp(40px, 6vw, 60px) 0;
}

.about-process__media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.about-process__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-process__content {
    text-align: left;
    padding: 26px 28px;
    border-radius: var(--glass-radius);
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
}

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

.about-process__steps li {
    padding: 14px 14px 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.about-process__steps h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
}

.about-process__steps p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-70);
}

.about-sectors {
    margin: clamp(40px, 6vw, 62px) 0;
}

.about-sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.7vw, 26px);
}

.about-sector-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 18px;
    border-radius: var(--glass-radius);
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease;
}

.about-sector-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-strong);
}

.about-sector-card__media {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-sector-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-sector-card__title {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}

.about-sector-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
    color: var(--white-70);
}

.about-quality {
    margin-top: clamp(42px, 6vw, 66px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: clamp(22px, 3.3vw, 36px);
    align-items: stretch;
}

.about-quality__content {
    text-align: left;
    padding: 28px 30px;
    border-radius: var(--glass-radius);
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
}

.about-quality__list {
    margin: 18px 0 26px;
    padding-left: 1.25em;
    display: grid;
    gap: 10px;
}

.about-quality__list li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-70);
}

.about-quality__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.24);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.about-quality__cta:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.36);
}

.about-quality__cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.about-quality__media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.about-quality__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 28px);
    margin-top: 8px;
}

.service-item {
    text-align: center;
    padding: 36px 22px 32px;
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    background: var(--glass-surface-hover);
    border-color: var(--glass-border-strong);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.32);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.service-item:hover .service-icon {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-icon svg {
    opacity: 0.92;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: var(--white);
    line-height: 1.35;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--white-70);
    line-height: 1.7;
    margin: 0;
}

.services-section--detail .service-item {
    display: flex;
    flex-direction: column;
    padding-top: 28px;
}

.services-section--detail .service-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
}

.services-section--detail .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-section--detail .service-item:hover .service-thumb img {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .services-section--detail .service-thumb img {
        transition: none;
    }

    .services-section--detail .service-item:hover .service-thumb img {
        transform: none;
    }
}

.services-section--detail .service-desc {
    margin: 0 0 18px;
    flex: 1 1 auto;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: auto;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.service-learn-more:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

.service-learn-more:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
}

.services-gallery {
    margin-top: clamp(46px, 7vw, 78px);
    padding-top: clamp(36px, 5.5vw, 62px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-gallery__header {
    max-width: 760px;
    margin: 0 auto clamp(28px, 4vw, 36px);
    text-align: center;
}

.services-gallery__lead {
    margin: 18px auto 0;
    max-width: 58ch;
    font-size: clamp(15px, 1.55vw, 17px);
    font-weight: 300;
    line-height: 1.66;
    letter-spacing: 0.03em;
    color: var(--white-70);
}

.services-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.9vw, 18px);
}

.services-gallery__item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.03);
}

.services-gallery__item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-gallery__item:hover img {
    transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
    .services-gallery__item img {
        transition: none;
    }

    .services-gallery__item:hover img {
        transform: none;
    }
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid var(--white-20);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--white-70);
}

/* --- Contact Form --- */
.contact-details {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details a {
    color: inherit;
}

.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    padding: 16px 20px;
    outline: none;
    transition: border-color var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white-70);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white-40);
    padding: 16px 45px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- FAQs (distinct layout + accordion) --- */
.faqs-section .faqs-overlay {
    background:
        linear-gradient(
            to bottom,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(
            to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.97) 4%,
            rgba(0, 0, 0, 0.82) 14%,
            rgba(0, 0, 0, 0.4) 28%,
            rgba(0, 0, 0, 0) min(46vh, 52%)
        ),
        linear-gradient(160deg, rgba(12, 14, 18, 0.92) 0%, rgba(6, 8, 12, 0.88) 45%, rgba(10, 12, 16, 0.9) 100%);
}

.section-content--faqs {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding-top: 120px;
    padding-bottom: 120px;
}

.faqs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
}

.faqs-intro {
    position: relative;
    padding-left: 22px;
    border-left: 3px solid rgba(255, 255, 255, 0.22);
}

.faqs-display-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0 0 20px;
    text-transform: none;
}

.faqs-lead {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--white-70);
    margin: 0;
    max-width: 36ch;
}

.faqs-accordion {
    border-radius: var(--glass-radius);
    padding: 8px 0;
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
}

.faq-acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-acc-item:last-child {
    border-bottom: none;
}

.faq-acc-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px 20px 24px;
    margin: 0;
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease;
}

.faq-acc-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-acc-trigger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: -2px;
}

.faq-acc-num {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    width: 2rem;
}

.faq-acc-q {
    flex: 1;
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--white-90);
    letter-spacing: 0.02em;
}

.faq-acc-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-acc-trigger:hover .faq-acc-icon {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
}

.faq-acc-icon::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    box-sizing: border-box;
    transform: translateY(-1px) rotate(45deg);
    transform-origin: 50% 50%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-acc-trigger[aria-expanded='true'] .faq-acc-icon::after {
    transform: translateY(1px) rotate(-135deg);
}

.faq-acc-panel {
    padding: 0 24px 22px calc(2rem + 40px);
}

.faq-acc-panel p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--white-70);
    margin: 0;
    max-width: 52ch;
}

.faq-acc-panel[hidden] {
    display: none;
}

/* --- Scroll to top --- */
.scroll-top {
    position: fixed;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(20px, 4vw, 32px);
    z-index: 1040;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(12, 14, 18, 0.72);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.92);
    pointer-events: none;
    transition:
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.35s,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.scroll-top.scroll-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-top:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.scroll-top:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 4px;
}

.scroll-top__icon {
    display: block;
    margin-top: 1px;
}

body:has(#cookieBanner:not([hidden])) .scroll-top {
    bottom: max(28px, calc(28px + env(safe-area-inset-bottom, 0px)));
}

@media (max-width: 640px) {
    body:has(#cookieBanner:not([hidden])) .scroll-top {
        bottom: calc(140px + env(safe-area-inset-bottom, 0px));
    }

    .scroll-top {
        width: 48px;
        height: 48px;
    }

    .scroll-top__icon {
        width: 20px;
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-top {
        transition-duration: 0.15s;
    }

    .scroll-top.scroll-top--visible {
        transform: translateY(0) scale(1);
    }
}

/* --- Site modals (contact feedback + service details) --- */
.form-feedback-modal,
.service-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
}

.form-feedback-modal:not([hidden]),
.service-detail-modal:not([hidden]) {
    pointer-events: auto;
}

.form-feedback-modal[hidden],
.service-detail-modal[hidden] {
    display: none !important;
}

.form-feedback-modal__backdrop,
.service-detail-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.form-feedback-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 28px 28px 24px;
    background: rgba(10, 12, 16, 0.94);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: formFeedbackIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.service-detail-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: min(85vh, 720px);
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    background: rgba(10, 12, 16, 0.94);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: formFeedbackIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.service-detail-modal__title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 14px;
    text-align: left;
    line-height: 1.4;
    padding-right: 8px;
}

.service-detail-modal__body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 18px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    padding-right: 8px;
    -webkit-overflow-scrolling: touch;
}

.service-detail-modal__panel .form-feedback-modal__btn {
    flex-shrink: 0;
}

@keyframes formFeedbackIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.form-feedback-modal__title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 14px;
    text-align: center;
}

.form-feedback-modal__body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 22px;
}

.form-feedback-modal__text {
    margin: 0 0 12px;
}

.form-feedback-modal__text:last-child {
    margin-bottom: 0;
}

.form-feedback-modal__list {
    margin: 10px 0 0;
    padding-left: 1.25em;
}

.form-feedback-modal__list li {
    margin-bottom: 8px;
}

.form-feedback-modal__list li:last-child {
    margin-bottom: 0;
}

.form-feedback-modal__list strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.form-feedback-modal__btn {
    display: block;
    width: 100%;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 100px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #0a0a0c;
    background: rgba(255, 255, 255, 0.92);
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-feedback-modal__btn:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

.form-feedback-modal__btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

body.form-feedback-modal-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .form-feedback-modal__panel,
    .service-detail-modal__panel {
        animation: none;
    }
}

@media (max-width: 480px) {
    .form-feedback-modal,
    .service-detail-modal {
        padding: 16px;
    }

    .form-feedback-modal__panel {
        padding: 22px 20px 20px;
    }

    .service-detail-modal__panel {
        padding: 22px 18px 18px;
        max-height: min(88vh, 640px);
    }

    .form-feedback-modal__body {
        font-size: 14px;
    }

    .service-detail-modal__body {
        font-size: 14px;
    }

    .service-detail-modal__title {
        font-size: 12px;
        letter-spacing: 0.14em;
    }
}

/* --- Cookie banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 0 20px 20px;
    pointer-events: none;
}

.cookie-banner:not([hidden]) {
    pointer-events: auto;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__panel {
    max-width: 960px;
    margin: 0 auto;
    animation: cookieBannerIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cookieBannerIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px 32px;
    padding: 22px 26px 22px 28px;
    background: rgba(10, 12, 16, 0.82);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow:
        0 -8px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.cookie-banner__content {
    flex: 1 1 280px;
    min-width: 0;
    text-align: left;
}

.cookie-banner__title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 10px;
}

.cookie-banner__text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    max-width: 52ch;
}

.cookie-banner__text a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-nav);
}

.cookie-banner__text a:hover {
    color: var(--white);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 100px;
    cursor: pointer;
    border: 1px solid transparent;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.cookie-banner__btn--primary {
    color: #0a0a0c;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.95);
}

.cookie-banner__btn--primary:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

.cookie-banner__btn--primary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

.cookie-banner__btn--ghost {
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

.cookie-banner__btn--ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.cookie-banner__btn--ghost:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner__panel {
        animation: none;
    }
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 0 14px 14px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        padding: 18px 18px 18px;
    }

    .cookie-banner__content {
        flex: 0 0 auto;
        flex-basis: auto;
        width: 100%;
        min-height: 0;
        text-align: center;
    }

    .cookie-banner__title {
        margin-bottom: 8px;
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .cookie-banner__text {
        max-width: none;
        font-size: 13px;
        line-height: 1.6;
    }

    .cookie-banner__actions {
        justify-content: stretch;
        width: 100%;
        flex-shrink: 0;
        gap: 10px;
        margin-top: 0;
    }

    .cookie-banner__btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 14px;
        font-size: 10px;
        letter-spacing: 0.14em;
    }
}

/* --- Footer --- */
#templatemo-footer {
    background: linear-gradient(180deg, #0c0c10 0%, #050506 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.footer-main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 28px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.footer-col {
    text-align: left;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
    display: inline-block;
    line-height: 0;
    margin-bottom: 18px;
}

.footer-logo-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 6px;
    border-radius: 4px;
}

.footer-logo {
    display: block;
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

.footer-logo-link:hover .footer-logo,
.footer-logo-link:focus-visible .footer-logo {
    transform: scale(1.06) translateY(-2px);
    filter: brightness(1.1);
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    max-width: 34ch;
}

.footer-mail {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition:
        color var(--transition-nav),
        border-color var(--transition-nav);
}

.footer-mail:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
}

.footer-hours {
    margin: 0;
}

.footer-hours dt {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    margin: 14px 0 4px;
}

.footer-hours dt:first-child {
    margin-top: 0;
}

.footer-hours dd {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0;
}

.footer-hours-note {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.42);
    margin: 18px 0 0;
    max-width: 28ch;
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 28px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
}

.footer-legal {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 12px;
}

.footer-legal-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        color var(--transition-nav),
        border-color var(--transition-nav);
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.footer-legal-link:focus-visible {
    color: rgba(255, 255, 255, 0.92);
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 4px;
    border-radius: 2px;
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.28);
    font-size: 12px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .nav-logo-img,
    .footer-logo {
        transition: none;
    }

    .nav-logo:hover .nav-logo-img,
    .nav-logo:focus-visible .nav-logo-img,
    .footer-logo-link:hover .footer-logo,
    .footer-logo-link:focus-visible .footer-logo {
        transform: none;
        filter: none;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 42ch;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 22px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-col--brand {
        grid-column: auto;
    }

    .footer-col {
        text-align: center;
    }

    .footer-heading {
        text-align: center;
    }

    .footer-logo-link {
        display: flex;
        justify-content: center;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-mail {
        display: inline-block;
    }

    .footer-hours-note {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .services-gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-row {
        gap: 40px;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .about-story__media {
        aspect-ratio: 16 / 10;
    }

    .about-signals {
        grid-template-columns: 1fr;
    }

    .about-focus-grid {
        grid-template-columns: 1fr;
    }

    .about-process {
        grid-template-columns: 1fr;
    }

    .about-sectors-grid {
        grid-template-columns: 1fr;
    }

    .about-quality {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        max-width: none;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 96px 28px 48px;
        margin: 0;
        border-radius: 0;
        border: none;
        background: rgba(6, 8, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: none;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        font-size: 13px;
        letter-spacing: 0.28em;
        padding: 16px 22px;
        border-radius: 12px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-links .nav-link::after {
        display: none;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Disable parallax on mobile — static bg */
    .parallax-bg {
        top: 0;
        height: 100%;
    }

    .section-title {
        letter-spacing: 4px;
    }

    .section-display-title {
        letter-spacing: 0.04em;
    }

    .hero-display-title {
        letter-spacing: 0.02em;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .section-tagline {
        margin-bottom: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .services-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-cols {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .about-col {
        padding: 24px 22px 28px;
    }

    .about-story__content {
        padding: 22px 22px 24px;
    }

    .contact-panel {
        padding: 24px 22px 28px;
    }

    .faqs-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .faqs-intro {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 3px solid rgba(255, 255, 255, 0.18);
    }

    .faqs-lead {
        max-width: none;
    }

    .section-content--faqs {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .section-content--legal {
        padding-top: 96px;
        padding-bottom: 80px;
    }

    .faq-acc-panel {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .faq-acc-trigger {
        padding-left: 18px;
        padding-right: 16px;
        gap: 12px;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-logo-img {
        height: 42px;
        max-width: 54vw;
    }

    .section-content {
        padding: 80px 20px;
    }

    .services-gallery__grid {
        grid-template-columns: 1fr;
    }

    .section-content--hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .section-block-header {
        margin-bottom: 32px;
    }

    .section-content--legal {
        padding-top: 88px;
        padding-bottom: 72px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }
}
