/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ── Palette ── */
    --navy: #0F172A;
    --navy-mid: #1E293B;
    --navy-light: #334155;
    --off-white: #F1F5F9;
    --white: #FAFAFA;
    --white-pure: #FFFFFF;
    --blue: #1A56DB;
    --blue-hv: #1E429F;
    --blue-lt: #EFF6FF;
    --amber: #D4AF37;
    --amber-lt: #FDF6E3;
    --text-dark: #0F172A;
    --text-main: #1E293B;
    --text-sub: #475569;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --slate-mid: #94A3B8;
    --radius: 12px;
    --radius-sm: 8px;
    --space-section: 120px;
    --ease: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Outfit', system-ui, -apple-system, sans-serif;
    --bg: #0F172A;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--slate-mid);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-moz-selection {
    background: var(--blue);
    color: var(--white);
}

::selection {
    background: var(--blue);
    color: var(--white);
}

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

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

ul {
    list-style: none;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.preloader__curtain {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50vh;
    background: var(--bg);
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.preloader__curtain--top {
    top: 0;
    transform-origin: top;
}

.preloader__curtain--bottom {
    bottom: 0;
    transform-origin: bottom;
}

.preloader.is-hidden .preloader__curtain {
    transform: scaleY(0);
}

.preloader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.preloader.is-hidden .preloader__inner {
    opacity: 0;
}

.preloader__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--white);
    transform: translateY(12px);
    opacity: 0;
    animation: preloaderFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.preloader__logo .accent {
    color: var(--blue);
}

.preloader__bar {
    width: 140px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: preloaderFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.preloader__progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--blue);
    transition: width 0.15s ease-out;
}

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

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 28px;
}

.section {
    padding-block: var(--space-section);
    position: relative;
}

.section--alt {
    background: var(--off-white);
}

/* Subtle noise texture on all light sections */
.section:not(.why--dark)::before,
.section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    z-index: 0;
}

.section--dark {
    background: var(--navy);
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-sub);
    max-width: 600px;
    margin-bottom: var(--space-inner);
    line-height: 1.65;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--ease), color var(--ease),
        border-color var(--ease), box-shadow var(--ease),
        transform var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

/* Solid blue */
.btn--primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--blue-hv);
    border-color: var(--blue-hv);
    box-shadow: 0 6px 24px rgba(59, 130, 246, .4);
    transform: translateY(-2px);
}

/* White outline (for dark hero) */
.btn--white-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .4);
}

.btn--white-outline:hover,
.btn--white-outline:focus-visible {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7);
}

/* Blue outline */
.btn--outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59, 130, 246, .3);
    transform: translateY(-1px);
}

/* Ghost (light border) */
.btn--ghost {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
}

/* Nav pill */
.btn--nav {
    padding: 10px 22px;
    font-size: .875rem;
    background: var(--blue);
    color: var(--white) !important;
    border-color: var(--blue);
}

.btn--nav:hover {
    background: var(--blue-hv);
    border-color: var(--blue-hv);
}

/* Amber CTA button */
.btn--amber {
    background: var(--amber);
    color: #78350F;
    border-color: var(--amber);
    font-weight: 700;
}

.btn--amber:hover,
.btn--amber:focus-visible {
    background: #D97706;
    border-color: #D97706;
    box-shadow: 0 6px 24px rgba(245, 158, 11, .4);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
    /* Starts transparent over dark hero */
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* State: over dark hero */
.site-header.header--dark {
    background: transparent;
    border-bottom-color: transparent;
}

/* State: scrolled onto light sections */
.site-header.header--light {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 32px;
}

.nav__logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.025em;
    white-space: nowrap;
    color: var(--white);
    transition: color var(--ease);
}

.header--light .nav__logo {
    color: var(--text-dark);
}

.nav__logo .accent {
    color: var(--blue);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    transition: color var(--ease);
}

.header--light .nav__links a {
    color: var(--text-dark);
}

.nav__links a:hover {
    color: var(--blue);
}

/* Scrolled state: links become dark */
.header--light .nav__links a {
    color: var(--text-sub);
}

.header--light .nav__links a:hover {
    color: var(--blue);
}

/* Keep btn--nav always white */
.nav__links .btn--nav,
.header--light .nav__links .btn--nav {
    color: var(--white) !important;
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav__burger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease), background var(--ease);
}

.header--light .nav__burger span {
    background: var(--text-dark);
}

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

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

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

/* ============================================================
   HERO  (dark navy)
   ============================================================ */
.hero {
    background: radial-gradient(circle at top left, #1E293B 0%, #0F172A 100%);
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

/* Premium Glow */
.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    animation: heroGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0% {
        opacity: 0.7;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Fade to white transition */
.hero-bottom-fade {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
    z-index: 2;
}

.hero__inner {
    max-width: 1200px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 580px;
}

/* ── Hero Visual / Mockup ── */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__mockup {
    width: 100%;
    max-width: 440px;
    background: #1E293B;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .05);
    overflow: hidden;
}

.hero__mockup-bar {
    height: 36px;
    background: #0F172A;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.hero__mockup-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
}

.hero__mockup-url {
    flex: 1;
    text-align: center;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, .25);
    margin-right: 40px;
    font-family: var(--font);
    letter-spacing: .03em;
}

.hero__mockup-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@keyframes shimmerFadeUp {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hm-nav,
.hm-h1,
.hm-h1--short,
.hm-sub,
.hm-btn,
.hm-card,
.hm-footer {
    animation: shimmerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.hm-nav {
    height: 20px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    animation-delay: 0.2s;
}

.hm-hero-block {
    background: rgba(37, 99, 235, .12);
    border: 1px solid rgba(37, 99, 235, .2);
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hm-h1 {
    height: 14px;
    background: rgba(255, 255, 255, .35);
    border-radius: 3px;
    width: 85%;
    animation-delay: 0.3s;
}

.hm-h1--short {
    width: 60%;
    background: rgba(37, 99, 235, .7);
    animation-delay: 0.4s;
}

.hm-sub {
    height: 8px;
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
    width: 90%;
    margin-top: 4px;
    animation-delay: 0.5s;
}

.hm-btn {
    height: 24px;
    background: var(--blue);
    border-radius: 4px;
    width: 44%;
    margin-top: 4px;
    animation-delay: 0.6s;
}

.hm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.hm-card {
    height: 60px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
}

.hm-card:nth-child(1) {
    animation-delay: 0.7s;
}

.hm-card:nth-child(2) {
    animation-delay: 0.8s;
}

.hm-card:nth-child(3) {
    animation-delay: 0.9s;
}

.hm-card--accent {
    background: rgba(37, 99, 235, .15);
    border-color: rgba(37, 99, 235, .3);
}

.hm-footer {
    height: 16px;
    background: rgba(255, 255, 255, .04);
    border-radius: 4px;
    animation-delay: 1.0s;
}

/* ── Floating Badges ── */
.hero__float {
    position: absolute;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .2);
}

.hero__float--1 {
    bottom: -20px;
    left: -20px;
    color: #16A34A;
    animation: floatUpDown 3s ease-in-out infinite;
}

.hero__float--2 {
    top: -16px;
    right: -10px;
    color: var(--blue);
    animation: floatUpDown 3s ease-in-out infinite reverse;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--amber);
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .25);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: .01em;
}

.hero__headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__headline .accent {
    color: var(--blue);
}

.hero__sub {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--slate-mid);
    line-height: 1.65;
    margin-bottom: 44px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--slate-mid);
}

.hero__trust span::before {
    content: '✓ ';
    color: var(--blue);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    background: linear-gradient(180deg, #F1F5F9 0%, var(--white) 100%);
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about__text p {
    font-size: 1.125rem;
    color: var(--text-sub);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ── Avatar card ── */
.about__avatar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.about__avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 100%);
    color: var(--white);
    font-size: .9375rem;
    font-weight: 800;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}

.about__avatar-info strong {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about__avatar-info span {
    font-size: .8125rem;
    color: var(--text-muted);
}


.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.stat-card--amber strong {
    color: var(--amber) !important;
}

.stat-card--amber:hover {
    border-color: var(--amber);
}

.stat-card strong {
    display: inline-block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
}

.stat-card span:nth-of-type(1) {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
    margin-left: 1px;
}

.stat-card span:nth-of-type(2) {
    display: block;
    font-size: .875rem;
    color: var(--text-sub);
    font-weight: 500;
    margin-top: 4px;
}

.stat-card--amber strong,
.stat-card--amber span:nth-of-type(1) {
    color: #DAA520;
}

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

/* ============================================================
   FOR WHOM
   ============================================================ */
.forwhom {
    background: var(--white);
}

.forwhom__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: var(--space-inner);
}

.forwhom__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--ease);
}

.forwhom__card:hover {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(26, 86, 219, 0.1);
    transform: translateY(-6px);
    border-color: var(--blue);
}

.forwhom__icon {
    width: 56px;
    height: 56px;
    background: var(--blue-lt);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.forwhom__card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.forwhom__card p {
    font-size: .9375rem;
    color: var(--text-sub);
    line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: var(--space-inner);
    background: transparent;
}

.services__item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 52px 40px;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
    position: relative;
    overflow: hidden;
}

.services__item:hover {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(26, 86, 219, 0.15);
    transform: translateY(-8px);
    border-color: var(--blue);
}

.services__num {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 7rem;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--ease);
}

.services__item:hover .services__num {
    opacity: 0.3;
}

.services__item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.services__item p {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.75;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 40px;
}

.pricing__card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--ease);
}

.pricing__card:hover {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(26, 86, 219, 0.08);
    transform: translateY(-8px);
}

.pricing__card--featured {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), var(--shadow);
}

.pricing__card--maintenance {
    background: var(--off-white);
}

.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: #78350F;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 158, 11, .35);
}

.pricing__top {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing__name {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-sub);
    margin-bottom: 10px;
}

.pricing__price {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing__price strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing__per {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--text-sub);
}

.pricing__desc {
    font-size: .875rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.pricing__list {
    margin-bottom: 24px;
    flex: 1;
}

.pricing__list li {
    padding: 9px 0;
    font-size: .875rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    color: var(--text-dark);
}

.pricing__list li:last-child {
    border-bottom: none;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--blue-lt);
    color: var(--blue);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

.pricing__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding-top: 8px;
}

.pricing__help {
    font-size: .9375rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.pricing__help a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.pricing__help a:hover {
    color: var(--blue-hv);
}

.pricing__note {
    font-size: .75rem;
    color: var(--text-muted);
    letter-spacing: .01em;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: var(--space-inner);
}

.portfolio__item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white-pure);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.portfolio__item:hover {
    box-shadow: var(--shadow-xl), 0 10px 40px rgba(26, 86, 219, 0.12);
    transform: translateY(-8px);
}

.portfolio__img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    padding: 24px 24px 0 24px;
}

/* Browser Mockup Style */
.browser-mockup {
    background: var(--white-pure);
    border-radius: 8px 8px 0 0;
    border: 1.5px solid var(--border);
    border-bottom: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backface-visibility: hidden;
}

.portfolio__item:hover .browser-mockup {
    transform: translateY(-4px);
    /* Reduced and synchronized with parent */
}

.portfolio__item:hover .portfolio__img {
    transform: scale(1.04);
}

.browser-dots {
    height: 24px;
    background: var(--off-white);
    border-bottom: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
}

.browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #CBD5E1;
}

.portfolio__img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    object-position: top;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backface-visibility: hidden;
}

.portfolio__overlay {
    display: none;
}

.portfolio__item:hover .portfolio__overlay {
    opacity: 1;
}

.portfolio__info {
    padding: 24px;
}

.portfolio__tag {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--amber);
    background: var(--amber-lt);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.portfolio__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.portfolio__desc {
    font-size: .875rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* ============================================================
   WHY CHOOSE ME SECTION
   ============================================================ */
.why {
    background: var(--off-white);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: var(--space-inner);
}

.why__item {
    display: flex;
    gap: 20px;
}

.why__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--blue-lt);
    color: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.why__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why__content p {
    font-size: .9375rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* ── Dark variant ── */
.why--dark {
    background: radial-gradient(circle at top left, #1E293B 0%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.why--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

.why--dark::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.why--dark .container {
    position: relative;
    z-index: 2;
}

.why__label {
    color: var(--white) !important;
}

.why__title {
    color: var(--white) !important;
}

.why__title::after {
    display: none !important;
}

.why--dark .why__content h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.why--dark .why__content p {
    color: rgba(255, 255, 255, .55);
}

.why--dark .why__icon {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 60%, #1E3A8A 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -.025em;
}

.cta-banner__sub {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .75);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: var(--space-inner);
}

.testimonial-card {
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--blue);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    transition: var(--ease);
}

.testimonial-card:hover::before {
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-sub);
    font-style: italic;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: .8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-card__author span {
    font-size: .8125rem;
    color: var(--text-muted);
}

/* ============================================================
   PORTFOLIO HOVER BUTTON
   ============================================================ */
.portfolio__img-wrap {
    position: relative;
}

.portfolio__hover-cta {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--blue);
    color: var(--white);
    font-size: .8125rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--ease), transform var(--ease);
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .5);
}

.portfolio__item:hover .portfolio__hover-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.05);
    /* Přidán jemný scale efekt pro wow dojem */
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: var(--space-inner);
    flex-wrap: wrap;
}

.process__step {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .4);
    position: relative;
    z-index: 1;
}

.process__step {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

/* Connector line between steps */
.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 52px;
    right: -16px;
    height: 2px;
    background: linear-gradient(to right, var(--blue), rgba(37, 99, 235, .1));
    z-index: 0;
}

.process__content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process__content p {
    font-size: .9375rem;
    color: var(--text-sub);
    line-height: 1.65;
}

.process__arrow {
    font-size: 1.25rem;
    color: var(--blue);
    padding-top: 14px;
    flex-shrink: 0;
    align-self: flex-start;
    opacity: .5;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact__text p {
    font-size: 1.0625rem;
    color: var(--text-sub);
    margin-bottom: 40px;
    line-height: 1.65;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--ease);
}

.contact__link:hover {
    color: var(--blue);
}

.contact__icon {
    font-size: 1.125rem;
}

/* FORM */
.contact__form {
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form__group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.optional {
    font-weight: 400;
    color: var(--text-sub);
}

.form__group input,
.form__group textarea {
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    resize: vertical;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--text-muted);
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, .15);
    background: var(--white-pure);
}

.form__group input.error,
.form__group textarea.error {
    border-color: #EF4444;
}

.form__success {
    text-align: center;
    font-weight: 600;
    color: #16A34A;
    padding: 14px;
    background: #DCFCE7;
    border-radius: var(--radius-sm);
    font-size: .9375rem;
}

.form__error {
    text-align: center;
    font-weight: 600;
    color: #DC2626;
    padding: 14px;
    background: #FEE2E2;
    border-radius: var(--radius-sm);
    font-size: .9375rem;
}

/* LOADING BTTN STATE */
.btn--loading {
    position: relative;
    pointer-events: none;
    opacity: 0.9;
    color: transparent !important;
}

.btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spinner .6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .55);
    padding-top: 60px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__left .nav__logo {
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer__left p {
    font-size: .875rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.footer__nav a {
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    transition: color var(--ease);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-block: 24px;
    font-size: .75rem;
}

.footer__bottom a {
    color: rgba(255, 255, 255, .4);
    transition: color var(--ease);
}

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

/* ============================================================
   HIDDEN HELPERS
   ============================================================ */
.hide-mobile {
    display: inline;
}

/* Ensure all section content sits above noise ::before layer */
.section>.container,
.section--alt>.container {
    position: relative;
    z-index: 1;
}

/* CTA banner mobile */
@media (max-width: 700px) {
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --space-section: 80px;
    }

    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    :root {
        --space-section: 72px;
        --space-inner: 40px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process__arrow {
        display: none;
    }

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

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

    /* Remove connector line when steps wrap */
    .process__step:not(:last-child)::after {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE – HERO collapse ≤ 880px
   ============================================================ */
@media (max-width: 880px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
    :root {
        --space-section: 64px;
        --space-inner: 32px;
    }

    .hide-mobile {
        display: none;
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    /* Nav burger */
    .nav__burger {
        display: flex;
    }

    .nav__links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--navy);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: var(--shadow-xl);
        z-index: 199;
    }

    .header--light .nav__links {
        background: var(--white);
        border-bottom-color: var(--border);
    }

    .nav__links.open {
        display: flex;
    }

    .nav__links li {
        width: 100%;
    }

    .nav__links a {
        display: block;
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        color: rgba(255, 255, 255, .8);
    }

    .header--light .nav__links a {
        color: var(--text-sub);
    }

    .header--light .nav__links a:hover {
        color: var(--blue);
    }

    .nav__links .btn--nav {
        margin: 10px 28px 0;
        width: calc(100% - 56px);
        color: var(--white) !important;
    }

    .hero__content {
        text-align: center;
        align-items: center;
    }

    /* Hero actions */
    .hero__actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
        padding-bottom: 24px;
    }

    /* Grids */
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
    }

    .process__steps {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact__form {
        padding: 28px 20px;
    }

    /* Footer */
    .footer__inner {
        flex-direction: column;
        gap: 28px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================================
   PORTFOLIO CARD SUBTITLE
   ============================================================ */
.portfolio__sub {
    font-size: .75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: .01em;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5, 7, 17, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
    backdrop-filter: blur(6px);
}

.lb-overlay.lb-active {
    opacity: 1;
    pointer-events: auto;
}

.lb-wrap {
    position: relative;
    max-width: min(1100px, 94vw);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img {
    max-width: 100%;
    max-height: 86vh;
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
    transform: scale(.97);
    transition: transform 260ms ease;
    cursor: zoom-in;
    object-fit: contain;
}

.lb-overlay.lb-active .lb-img {
    transform: scale(1);
}

.lb-img.lb-zoomed {
    cursor: zoom-out;
    max-width: none;
    max-height: none;
    transform: scale(1.8) !important;
}

.lb-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 180ms;
    z-index: 9001;
}

.lb-btn:hover {
    background: rgba(255, 255, 255, .22);
}

.lb-btn--prev {
    left: 16px;
}

.lb-btn--next {
    right: 16px;
}

.lb-close {
    position: fixed;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 180ms;
    z-index: 9001;
}

.lb-close:hover {
    background: rgba(255, 255, 255, .22);
}

.lb-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .5);
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .06em;
    z-index: 9001;
}

/* ============================================================
   SCROLL FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.nav__link--active {
    color: var(--blue) !important;
}