/* Site styles — ELEVATEXPERT S.L. */

body.preloader-active {
    overflow: hidden;
}

:root {
    --cyan: #00f0ff;
    --magenta: #ff2d6a;
    --purple: #a855f7;
    --deep-purple: #7c3aed;
    --dark-bg: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #e8e8ed;
    --text-muted: #6b6b7a;
    --container-max: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 80% at 50% 20%, rgba(30, 27, 45, 0.97) 0%, rgba(8, 8, 12, 0.98) 45%, #050508 100%);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.55s step-end,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader.preloader--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.04);
    transition: opacity 0.5s ease, visibility 0.5s step-end, transform 0.55s ease;
}

.preloader__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.preloader__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 2rem;
}

.preloader__rings {
    position: absolute;
    width: 140px;
    height: 140px;
    pointer-events: none;
}

.preloader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: rgba(0, 240, 255, 0.55);
    border-right-color: rgba(168, 85, 247, 0.25);
    animation: preloader-orbit 2.4s linear infinite;
}

.preloader__ring:nth-child(2) {
    inset: 10px;
    animation-duration: 1.8s;
    animation-direction: reverse;
    border-top-color: rgba(255, 45, 106, 0.45);
    border-right-color: rgba(0, 240, 255, 0.2);
}

.preloader__ring:nth-child(3) {
    inset: 22px;
    animation-duration: 2.8s;
    border-top-color: rgba(168, 85, 247, 0.5);
    border-right-color: rgba(255, 45, 106, 0.15);
}

@keyframes preloader-orbit {
    to {
        transform: rotate(360deg);
    }
}

.preloader__logo-shell {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 20px 50px rgba(0, 0, 0, 0.45);
    animation: preloader-shell 3s ease-in-out infinite;
}

@keyframes preloader-shell {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 20px 50px rgba(0, 0, 0, 0.45);
    }
    50% {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.15), 0 28px 60px rgba(0, 240, 255, 0.08);
    }
}

.preloader__logo-glow {
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 120deg, transparent, rgba(0, 240, 255, 0.35), transparent, rgba(168, 85, 247, 0.3), transparent, rgba(255, 45, 106, 0.25), transparent);
    border-radius: 28px;
    animation: preloader-glow-spin 4s linear infinite;
    filter: blur(14px);
    opacity: 0.75;
    z-index: 0;
}

@keyframes preloader-glow-spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader__logo {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
    animation: preloader-logo 2.2s ease-in-out infinite;
}

@keyframes preloader-logo {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.35));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.55)) drop-shadow(0 0 6px rgba(255, 45, 106, 0.25));
    }
}

.preloader__label {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(232, 232, 237, 0.55);
    animation: preloader-fade 1.8s ease-in-out infinite;
}

@keyframes preloader-fade {
    0%, 100% {
        opacity: 0.45;
    }
    50% {
        opacity: 1;
    }
}

.preloader__track {
    width: min(220px, 70vw);
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.preloader__track-fill {
    display: block;
    height: 100%;
    width: 40%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta));
    background-size: 200% 100%;
    animation: preloader-bar 1.2s ease-in-out infinite;
}

@keyframes preloader-bar {
    0% {
        transform: translateX(-100%);
        background-position: 0% 50%;
    }
    100% {
        transform: translateX(250%);
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .preloader__ring,
    .preloader__logo-glow,
    .preloader__logo,
    .preloader__label,
    .preloader__track-fill,
    .preloader__logo-shell {
        animation: none;
    }

    .preloader__track-fill {
        width: 100%;
        transform: none;
        opacity: 0.85;
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Ambient background glow */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.glow-1 {
    top: -200px;
    right: -100px;
    background: var(--cyan);
}

.glow-2 {
    bottom: 20%;
    left: -200px;
    background: var(--magenta);
}

.glow-3 {
    bottom: -200px;
    right: 20%;
    background: var(--purple);
}

/* Navigation */
nav.site-nav {
    --nav-bar-height: 4.25rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    min-height: var(--nav-bar-height);
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.78) 100%);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.nav-inner {
    max-width: min(1200px, 100%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-cluster {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fbbf24, #f472b6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    display: block;
    letter-spacing: 1px;
    background: none;
    -webkit-text-fill-color: var(--text-muted);
    margin-top: -5px;
}

nav.site-nav .logo.logo-image {
    font-size: 0;
    letter-spacing: normal;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    flex-shrink: 0;
}

nav.site-nav .logo.logo-image img {
    display: block;
    height: 40px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.35s ease, filter 0.35s ease;
}

@keyframes nav-logo-hover {
    0%, 100% {
        transform: scale(1) translateY(0);
        filter: brightness(1) drop-shadow(0 0 4px rgba(0, 240, 255, 0.2));
    }
    35% {
        transform: scale(1.07) translateY(-2px);
        filter: brightness(1.1) drop-shadow(0 0 14px rgba(0, 240, 255, 0.5)) drop-shadow(0 0 24px rgba(168, 85, 247, 0.25));
    }
    70% {
        transform: scale(1.04) translateY(0);
        filter: brightness(1.06) drop-shadow(0 0 10px rgba(255, 45, 106, 0.4));
    }
}

nav.site-nav .logo.logo-image:hover img {
    animation: nav-logo-hover 1.35s ease-in-out infinite;
}

nav.site-nav .logo.logo-image:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 6px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    nav.site-nav .logo.logo-image:hover img {
        animation: none;
        transform: scale(1.03);
        filter: brightness(1.08);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    list-style: none;
    margin: 0;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links a {
    position: relative;
    color: rgba(232, 232, 237, 0.72);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    display: inline-block;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.35rem;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transform: translateX(-50%);
    transition: width 0.22s ease;
    opacity: 0.9;
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a:hover::after {
    width: calc(100% - 1.5rem);
}

.nav-links a[aria-current="page"] {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.nav-links a[aria-current="page"]::after {
    width: calc(100% - 1.5rem);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .nav-links a {
        padding: 0.5rem 0.55rem;
        font-size: 0.78rem;
    }
}

.nav-cluster .nav-cta {
    margin-left: 0.35rem;
    padding-left: 1.1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

a.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0a0a0f;
    background: linear-gradient(135deg, #e8e8ed 0%, #c8cad4 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.18), 0 2px 6px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 240, 255, 0.45);
    background: linear-gradient(135deg, #f4f4f8 0%, #dfe1e8 100%);
}

a.nav-cta:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

/* Hero Section - Asymmetrical */
.hero {
    min-height: 100vh;
    padding: 10rem 4% 4rem;
    display: flex;
    justify-content: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    width: 100%;
}

.hero-content {
    padding-left: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 .line-1 {
    display: block;
    color: var(--text-main);
}

.hero h1 .line-2 {
    display: block;
    background: linear-gradient(90deg, #fbbf24, #f472b6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .line-3 {
    display: block;
    color: var(--text-main);
    opacity: 0.4;
    font-size: 0.6em;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 450px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero programme board (IT marketing) */
.hero-demo {
    position: relative;
    z-index: 1;
}

.hero-board {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.75rem 2rem 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 20;
    overflow: hidden;
    max-width: 640px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.hero-board::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 240, 255, 0.08), transparent 55%);
    pointer-events: none;
}

.hero-board__chrome {
    margin-bottom: 1.25rem;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-dot:nth-child(1) { background: #ff5f57; }
.demo-dot:nth-child(2) { background: #ffbd2e; }
.demo-dot:nth-child(3) { background: #28c840; }

.hero-board__intro {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-board__eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan);
    margin-bottom: 0.45rem;
}

.hero-board__lead {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(232, 232, 237, 0.88);
    max-width: 26rem;
    margin: 0;
}

.hero-board__pill {
    flex-shrink: 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 232, 237, 0.85);
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
}

.hero-board__statuses {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.hero-status {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.5rem;
    row-gap: 0.15rem;
    align-items: center;
}

.hero-status__dot {
    grid-row: span 2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.45);
}

.hero-status__dot--amber {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

.hero-status__dot--violet {
    background: var(--purple);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.hero-status__label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-status__state {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-main);
    letter-spacing: 0.04em;
}

.hero-board__block {
    position: relative;
    z-index: 1;
    margin-bottom: 1.2rem;
}

.hero-board__label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}

.hero-stage-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.hero-stage-btn {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-stage-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-stage-btn.active {
    color: #0a0a0f;
    background: linear-gradient(135deg, #e8e8ed, #c4c6d0);
    border-color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.hero-board__stage-copy {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(232, 232, 237, 0.72);
    margin: 0;
}

.hero-meters {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hero-meter {
    display: grid;
    grid-template-columns: minmax(0, 7.5rem) 1fr;
    align-items: center;
    gap: 0.65rem;
}

.hero-meter__name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.hero-meter__track {
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.hero-meter__fill {
    display: block;
    height: 100%;
    width: 40%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    transform-origin: center center;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

#heroBoard[data-stage="discover"] .hero-meter:nth-child(1) .hero-meter__fill { width: 88%; }
#heroBoard[data-stage="discover"] .hero-meter:nth-child(2) .hero-meter__fill { width: 38%; }
#heroBoard[data-stage="discover"] .hero-meter:nth-child(3) .hero-meter__fill { width: 34%; }

#heroBoard[data-stage="consider"] .hero-meter:nth-child(1) .hero-meter__fill { width: 62%; }
#heroBoard[data-stage="consider"] .hero-meter:nth-child(2) .hero-meter__fill { width: 84%; }
#heroBoard[data-stage="consider"] .hero-meter:nth-child(3) .hero-meter__fill { width: 48%; }

#heroBoard[data-stage="retain"] .hero-meter:nth-child(1) .hero-meter__fill { width: 44%; }
#heroBoard[data-stage="retain"] .hero-meter:nth-child(2) .hero-meter__fill { width: 58%; }
#heroBoard[data-stage="retain"] .hero-meter:nth-child(3) .hero-meter__fill { width: 90%; }

.hero-board__footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-board__footnote {
    flex: 1;
    min-width: 200px;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.hero-board-sync {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.35rem;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    background: rgba(0, 240, 255, 0.08);
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-board-sync:hover {
    background: rgba(0, 240, 255, 0.14);
    border-color: rgba(0, 240, 255, 0.45);
    transform: translateY(-1px);
}

.hero-board-sync:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.hero-board-sync.is-busy {
    pointer-events: none;
}

.hero-board-sync__label {
    transition: opacity 0.25s ease;
}

.hero-board-sync.is-busy .hero-board-sync__label {
    opacity: 0;
}

.hero-board-sync__spinner {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: none;
}

.hero-board-sync.is-busy .hero-board-sync__spinner {
    opacity: 1;
    animation: spin 0.75s linear infinite;
}

.hero-board.hero-board--pulse .hero-meter__fill {
    animation: hero-meter-pulse 0.75s ease-out;
}

.hero-board.hero-board--sync-glow {
    animation: hero-board-sync-glow 1.1s ease-out;
}

@keyframes hero-meter-pulse {
    0%, 100% { filter: brightness(1) saturate(1); transform: scaleY(1); }
    40% { filter: brightness(1.35) saturate(1.15); transform: scaleY(1.15); }
    100% { filter: brightness(1) saturate(1); transform: scaleY(1); }
}

@keyframes hero-board-sync-glow {
    0% {
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
        border-color: var(--card-border);
    }
    35% {
        box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.45), 0 20px 50px rgba(0, 240, 255, 0.12);
        border-color: rgba(0, 240, 255, 0.45);
    }
    100% {
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
        border-color: var(--card-border);
    }
}

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

/* Floating decoration */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.8rem 1.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 35;
    color: var(--text-main);
    pointer-events: none;
}

.badge-1 {
    top: -20px;
    right: 40px;
    animation: float 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 80px;
    left: -30px;
    animation: float 4s ease-in-out infinite 1s;
}

/* Gallery Popup */
.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.popup-content {
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-popup.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-image-container {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
}

.popup-image {
    width: 100%;
    height: auto;
    display: block;
}

.popup-info {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.popup-prompt {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.popup-prompt::before {
    content: '"';
}

.popup-prompt::after {
    content: '"';
}

.popup-style {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 4%;
    position: relative;
}

.gallery-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    text-align: center;
}

.section-header > div {
    text-align: center;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}

.section-title span {
    color: var(--magenta);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-top: 0.5rem;
    line-height: 1.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
}

.filter-tab.active {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: var(--text-main);
}

/* Bento Gallery Grid */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

.gallery-item:hover .item-info {
    transform: translateY(0);
    opacity: 1;
}

.item-prompt {
    font-size: 0.8rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-style {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Bento Layout Variations */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item:nth-child(8) {
    grid-column: span 2;
}

/* Features Section - Redesigned Human-Crafted */
.features-section {
    padding: 6rem 4%;
}

#features.features-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-image: linear-gradient(rgba(8, 8, 12, 0.8), rgba(8, 8, 12, 0.84)), url("images/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#features.features-section::before {
    content: '';
    position: absolute;
    inset: -16px;
    z-index: 0;
    background: inherit;
    filter: blur(7px) saturate(92%);
    transform: scale(1.03);
    opacity: 0.3;
    pointer-events: none;
}

#features.features-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(10, 10, 15, 0.96) 0%, rgba(10, 10, 15, 0) 16%),
        linear-gradient(to top, rgba(10, 10, 15, 0.96) 0%, rgba(10, 10, 15, 0) 16%),
        linear-gradient(to right, rgba(10, 10, 15, 0.55) 0%, rgba(10, 10, 15, 0) 10%, rgba(10, 10, 15, 0) 90%, rgba(10, 10, 15, 0.55) 100%),
        radial-gradient(ellipse at center, rgba(10, 10, 15, 0.08) 0%, rgba(10, 10, 15, 0.48) 100%);
}

#features.features-section > .features-inner {
    position: relative;
    z-index: 1;
}

#features.features-section .features-header {
    display: grid;
    justify-items: center;
}

#features.features-section .features-header .section-title,
#features.features-section .features-header .section-subtitle {
    width: fit-content;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    border-radius: 8px;
    background: rgba(8, 8, 12, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

#features.features-section .features-header .section-title {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

#features.features-section .features-header .section-subtitle {
    margin-top: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.features-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Unique card accents - each card gets different treatment */
.feature-card:nth-child(1) {
    border-top: 2px solid #4a4a52;
}

.feature-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
}

.feature-card:nth-child(3) {
    border-left: 2px solid #4a4a52;
}

.feature-card:nth-child(4)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.feature-card:nth-child(5) {
    border-bottom: 2px solid #4a4a52;
}

.feature-card.highlight {
    grid-row: span 2;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid #5a5a62;
}

.feature-card.highlight::before {
    content: '★';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.3;
}

/* Icon styling - varied, not uniform */
.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

/* Each icon gets subtle treatment */
.feature-card:nth-child(1) .feature-icon svg {
    color: var(--text-main);
    opacity: 0.8;
}

.feature-card:nth-child(2) .feature-icon svg {
    color: var(--text-muted);
}

.feature-card:nth-child(3) .feature-icon svg {
    color: var(--text-main);
    opacity: 0.8;
}

.feature-card:nth-child(4) .feature-icon svg {
    color: var(--text-muted);
}

.feature-card:nth-child(5) .feature-icon svg {
    color: var(--text-main);
    opacity: 0.8;
}

/* Decorative number for each card */
.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--text-main);
    opacity: 0.1;
    line-height: 1;
}

.feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.feature-stat {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.feature-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
}

.feature-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-stat-note {
    margin-top: 0.95rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(232, 232, 237, 0.72);
}

.feature-stat-list {
    margin: 0.9rem 0 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.35rem;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(232, 232, 237, 0.66);
}

.feature-stat-list li {
    margin: 0;
}

/* How It Works */
.how-section {
    padding: 6rem 4%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.how-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.how-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), var(--card-border), transparent);
}

.how-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 4%;
}

.pricing-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-toggle span.active {
    color: var(--text-main);
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.yearly::after {
    transform: translateX(24px);
}

.save-badge {
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card.popular {
    border-color: #5a5a62;
    background: var(--card-bg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price-yearly-total {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    height: 1.3em;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.price-yearly-total.visible {
    visibility: visible;
    opacity: 1;
}

.price-yearly-total span {
    color: var(--text-main);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--text-main);
    font-weight: bold;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #4a4a52;
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-btn:hover {
    border-color: #6a6a72;
    background: rgba(255, 255, 255, 0.03);
}

.price-card.popular .plan-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.price-card.popular .plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.price-card.popular .plan-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 4%;
    max-width: 800px;
    margin: 0 auto;
}

#faq.faq-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    max-width: none;
    margin: 0;
    background-image: linear-gradient(rgba(8, 8, 12, 0.8), rgba(8, 8, 12, 0.84)), url("images/bg2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#faq.faq-section::before {
    content: '';
    position: absolute;
    inset: -16px;
    z-index: 0;
    background: inherit;
    filter: blur(7px) saturate(92%);
    transform: scale(1.03);
    opacity: 0.3;
    pointer-events: none;
}

#faq.faq-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(10, 10, 15, 0.96) 0%, rgba(10, 10, 15, 0) 16%),
        linear-gradient(to top, rgba(10, 10, 15, 0.96) 0%, rgba(10, 10, 15, 0) 16%),
        linear-gradient(to right, rgba(10, 10, 15, 0.55) 0%, rgba(10, 10, 15, 0) 10%, rgba(10, 10, 15, 0) 90%, rgba(10, 10, 15, 0.55) 100%),
        radial-gradient(ellipse at center, rgba(10, 10, 15, 0.08) 0%, rgba(10, 10, 15, 0.48) 100%);
}

#faq.faq-section > .features-header,
#faq.faq-section > .faq-list {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#faq.faq-section .features-header {
    display: grid;
    justify-items: center;
}

#faq.faq-section .features-header .section-title,
#faq.faq-section .features-header .section-subtitle {
    width: fit-content;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    border-radius: 8px;
    background: rgba(8, 8, 12, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

#faq.faq-section .features-header .section-title {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

#faq.faq-section .features-header .section-subtitle {
    margin-top: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* CTA Section - Redesigned */
.cta-section {
    padding: 8rem 4%;
}

.cta-box {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
}

.cta-content {
    position: relative;
}

.cta-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.cta-title span {
    display: block;
    color: var(--text-muted);
    font-size: 0.5em;
    margin-top: 0.3em;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn-link {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-btn-primary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.cta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.cta-btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #4a4a52;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-btn-secondary:hover {
    border-color: #6a6a72;
    background: rgba(255, 255, 255, 0.03);
}

.cta-btn-link:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.cta-visual {
    position: relative;
    max-width: 420px;
    width: 100%;
    justify-self: end;
}

.cta-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.35rem 1.4rem 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: 0.85;
}

.cta-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-panel__label {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-panel__badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(232, 232, 237, 0.92);
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    background: rgba(0, 240, 255, 0.06);
}

.cta-panel__list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cta-panel__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-panel__item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
}

.cta-panel__item-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.cta-panel__rail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.5rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.cta-panel__node {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--cyan);
    padding: 0.35rem 0.45rem;
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    flex-shrink: 0;
}

.cta-panel__connector {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.15), rgba(168, 85, 247, 0.35), rgba(255, 45, 106, 0.15));
    min-width: 0.5rem;
}

.cta-panel__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-panel__entity {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-panel__mail {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--cyan);
    text-decoration: none;
}

.cta-panel__mail:hover {
    text-decoration: underline;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    right: max(1.25rem, env(safe-area-inset-right, 0px));
    z-index: 101;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(16, 16, 22, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease,
        border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.scroll-top:hover {
    border-color: rgba(0, 240, 255, 0.45);
    background: rgba(0, 240, 255, 0.1);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 240, 255, 0.12);
}

.scroll-top:active {
    transform: translateY(1px);
}

.scroll-top.is-visible:active {
    transform: translateY(1px);
}

.scroll-top:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

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

    .scroll-top:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
}

/* Footer */
.site-footer {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, rgba(5, 5, 8, 0.95) 100%);
}

.footer-inner {
    max-width: min(1120px, 100%);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.75rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

.footer-block {
    padding: 1.5rem 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 100%;
}

.footer-block--brand {
    gap: 1rem;
}

.footer-logo-link {
    display: inline-flex;
    align-self: flex-start;
    line-height: 0;
    border-radius: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo-link:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.footer-logo-link:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}

.footer-logo-img {
    height: 34px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-activity {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 0;
}

.footer-about {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(232, 232, 237, 0.72);
}

.footer-block__title {
    margin: 0 0 0.15rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--text-main);
}

.footer-block__note {
    margin: 0 0 0.75rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-hours {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-hours__row--muted dt,
.footer-hours__row--muted dd {
    color: var(--text-muted);
}

.footer-hours dt {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(232, 232, 237, 0.88);
}

.footer-hours dd {
    margin: 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--text-main);
}

.footer-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    align-self: flex-start;
    padding: 0.55rem 0.85rem;
    margin: 0 0 0.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-contact-mail:hover {
    border-color: rgba(0, 240, 255, 0.35);
    background: rgba(0, 240, 255, 0.06);
    color: #fff;
}

.footer-contact-mail:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.footer-contact-mail__icon {
    display: flex;
    color: var(--cyan);
}

.footer-address {
    margin: 0.5rem 0 0;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-address__line {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(232, 232, 237, 0.78);
}

.footer-address__line:first-child {
    font-weight: 600;
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
}

.footer-bottom-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--cyan);
}

.footer-bottom-links a:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 2px;
}

.footer-bottom-links__sep {
    color: rgba(107, 107, 122, 0.9);
    font-size: 0.8rem;
    user-select: none;
}

/* Cookie consent banner */
.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner:not([hidden]) {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    display: flex;
    justify-content: center;
    padding: 0 clamp(1rem, 4vw, 2rem) max(1rem, env(safe-area-inset-bottom, 0px));
    transform: translateY(110%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

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

.cookie-banner__inner {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding: 1.1rem 1.35rem;
    border-radius: 14px 14px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    background: rgba(12, 12, 18, 0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 240, 255, 0.06) inset;
}

.cookie-banner__inner::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(200px, 40%);
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
    opacity: 0.85;
}

.cookie-banner__copy {
    flex: 1 1 280px;
    min-width: 0;
}

.cookie-banner__title {
    margin: 0 0 0.4rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--text-main);
}

.cookie-banner__text {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(232, 232, 237, 0.75);
}

.cookie-banner__text a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 240, 255, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__text a:hover {
    color: #fff;
    border-bottom-color: rgba(0, 240, 255, 0.65);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex: 0 0 auto;
}

.cookie-banner__btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 1.15rem;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.cookie-banner__btn:active {
    transform: scale(0.98);
}

.cookie-banner__btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--text-muted);
}

.cookie-banner__btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
}

.cookie-banner__btn--primary {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.18), rgba(168, 85, 247, 0.12));
    border-color: rgba(0, 240, 255, 0.35);
    color: #fff;
}

.cookie-banner__btn--primary:hover {
    border-color: rgba(0, 240, 255, 0.55);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.28), rgba(168, 85, 247, 0.18));
}

.cookie-banner__btn:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

body.cookie-banner-open .scroll-top {
    bottom: max(6.75rem, calc(env(safe-area-inset-bottom, 0px) + 5.25rem));
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner:not([hidden]) {
        transition-duration: 0.01ms;
    }
}

/* Mobile menu & toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.mobile-toggle span {
    width: 1.125rem;
    height: 2px;
    background: var(--text-main);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

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

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

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

.mobile-menu {
    display: flex;
    position: fixed;
    top: var(--nav-bar-height, 4.25rem);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--nav-bar-height, 4.25rem));
    min-height: 0;
    background: rgba(8, 8, 12, 0.94);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 99;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-inner {
    max-width: 22rem;
    margin: 0 auto;
    width: 100%;
    padding: 1.5rem clamp(1rem, 5vw, 1.75rem) 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mobile-menu-inner > a:not(.nav-cta) {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(232, 232, 237, 0.92);
    text-decoration: none;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transform: translateX(-12px);
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease, background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu.active .mobile-menu-inner > a:not(.nav-cta) {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active .mobile-menu-inner > a:not(.nav-cta):nth-of-type(1) { transition-delay: 0.06s; }
.mobile-menu.active .mobile-menu-inner > a:not(.nav-cta):nth-of-type(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-inner > a:not(.nav-cta):nth-of-type(3) { transition-delay: 0.14s; }
.mobile-menu.active .mobile-menu-inner > a:not(.nav-cta):nth-of-type(4) { transition-delay: 0.18s; }
.mobile-menu.active .mobile-menu-inner > a:not(.nav-cta):nth-of-type(5) { transition-delay: 0.22s; }
.mobile-menu.active .mobile-menu-inner > a:not(.nav-cta):nth-of-type(6) { transition-delay: 0.26s; }

.mobile-menu-inner > a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
}

.mobile-menu .nav-cta {
    margin-top: 1.25rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.32s ease 0.28s, opacity 0.32s ease 0.28s;
    border-left: none;
    margin-left: 0;
}

.mobile-menu.active .nav-cta {
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }

    .mobile-toggle {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .nav-cluster {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(5),
    .gallery-item:nth-child(8) {
        grid-column: span 1;
    }

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

    .feature-card.highlight {
        grid-row: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .legal-page.pricing-page .pricing-grid {
        grid-template-columns: 1fr;
        max-width: min(520px, 100%);
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .legal-page.pricing-page .price-card {
        padding: 2.25rem 1.75rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 1100px) and (min-width: 769px) {
    .legal-page.pricing-page .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: min(680px, 100%);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    nav.site-nav {
        --nav-bar-height: 4rem;
    }

    .hero {
        padding-top: 8rem;
    }

    .floating-badge {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
    }

    .bento-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

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

    .how-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-grid::before {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-block--brand {
        grid-column: auto;
        text-align: center;
        align-items: center;
    }

    .footer-logo-link {
        align-self: center;
    }

    .footer-block--hours,
    .footer-block--contact {
        text-align: center;
        align-items: center;
    }

    .footer-hours__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
    }

    .footer-hours dt,
    .footer-hours dd {
        text-align: center;
        width: 100%;
    }

    .footer-contact-mail {
        align-self: stretch;
        justify-content: center;
        text-align: center;
    }

    .footer-address {
        align-items: center;
        text-align: center;
    }

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

    .hero-board {
        padding: 1.35rem 1.25rem 1.25rem;
    }

    .hero-board__intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-board__pill {
        align-self: flex-start;
    }

    .hero-board__statuses {
        grid-template-columns: 1fr;
    }

    .hero-board-sync {
        width: 100%;
    }

    .cta-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .cta-buttons {
        justify-content: center;
    }

    .cta-visual {
        justify-self: center;
        max-width: 100%;
    }

    .legal-page {
        padding-top: 8rem;
    }

    .cookie-banner:not([hidden]) {
        padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        border-radius: 12px 12px 0 0;
        padding: 1rem 1rem 1.1rem;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }

    .cookie-banner__copy {
        flex: 1 1 auto;
    }

    .cookie-banner__title {
        font-size: 1.2rem;
    }

    .cookie-banner__text {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
    }

    .cookie-banner__btn {
        width: 100%;
        flex: none;
        min-height: 2.75rem;
        text-align: center;
        padding: 0.7rem 1rem;
    }

    body.cookie-banner-open .scroll-top {
        bottom: max(10rem, calc(env(safe-area-inset-bottom, 0px) + 8.5rem));
    }

    .legal-page.pricing-page .pricing-grid {
        max-width: 100%;
    }

    .legal-page.pricing-page .plan-btn {
        white-space: normal;
    }

    .pricing-email-form__actions {
        flex-direction: column;
    }

    .pricing-email-form__actions .contact-modal__btn {
        width: 100%;
    }
}

/* Legal / policy inner pages */
.legal-page {
    padding: 10rem 4% 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page__inner {
    width: 100%;
}

.legal-page__eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
}

.legal-page__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: 2px;
    margin: 0 0 1.25rem;
}

.legal-page__title span {
    color: var(--magenta);
}

.legal-page__lead {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 2.5rem;
    max-width: 52rem;
}

.legal-page__lead a {
    color: var(--magenta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page__lead a:hover {
    color: var(--text-main);
}

.legal-page__body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    letter-spacing: 1px;
    margin: 2.25rem 0 0.85rem;
    line-height: 1.15;
}

.legal-page__body h2:first-child {
    margin-top: 0;
}

.legal-page__body p,
.legal-page__body li {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-page__body p {
    margin: 0 0 1rem;
}

.legal-page__body ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.legal-page__body li {
    margin-bottom: 0.65rem;
}

.legal-page__body a {
    color: var(--magenta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page__body a:hover {
    color: var(--text-main);
}

.legal-page__body strong {
    color: var(--text-main);
    font-weight: 600;
}

.legal-page__body .legal-page__body-cta {
    margin-top: 2.25rem;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Process page — six unique stages with figures */
main.legal-page.process-page {
    max-width: 1040px;
}

.process-stages {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.75rem);
    margin-top: 0.25rem;
}

.process-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: center;
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
    border-bottom: 1px solid var(--card-border);
}

.process-stage:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.process-stage:nth-child(even) .process-stage__figure {
    order: 2;
}

.process-stage:nth-child(even) .process-stage__copy {
    order: 1;
}

.process-stage__figure {
    margin: 0;
}

.process-stage__figure img {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    margin-inline: auto;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: rgba(13, 13, 20, 0.95);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}

.process-stage__copy h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    letter-spacing: 1px;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.process-stage__copy p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.process-stage__copy p strong {
    color: var(--text-main);
    font-weight: 600;
}

.process-stage__label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--magenta);
    margin: 0 0 0.35rem !important;
}

.process-page__cta {
    margin-top: 2.75rem;
}

@media (max-width: 820px) {
    .process-stage {
        grid-template-columns: 1fr;
    }

    .process-stage:nth-child(even) .process-stage__figure,
    .process-stage:nth-child(even) .process-stage__copy {
        order: unset;
    }

    .process-stage__figure {
        order: -1;
    }
}

/* Contact page */
main.legal-page.contact-page {
    max-width: 960px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.contact-form-wrap,
.contact-aside {
    min-width: 0;
    max-width: 100%;
}

.contact-form-wrap {
    padding: 1.5rem 1.35rem;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.04) inset;
}

.contact-form__row {
    margin-bottom: 1.1rem;
}

.contact-form__label {
    display: block;
    margin-bottom: 0.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(107, 107, 122, 0.85);
}

.contact-form__input:hover,
.contact-form__textarea:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: rgba(0, 240, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 8rem;
    line-height: 1.6;
}

.contact-form__hint {
    margin: 0 0 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.contact-form__hint a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 240, 255, 0.35);
}

.contact-form__hint a:hover {
    color: #fff;
    border-bottom-color: rgba(0, 240, 255, 0.65);
}

.contact-form__submit {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(168, 85, 247, 0.14));
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.contact-form__submit:hover {
    border-color: rgba(0, 240, 255, 0.55);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(168, 85, 247, 0.2));
}

.contact-form__submit:active {
    transform: scale(0.99);
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0.25rem 0;
}

.contact-aside__block {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.contact-aside__block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-aside__mail {
    margin-top: 0.35rem;
}

.contact-aside__address {
    margin-top: 0.35rem;
}

.contact-map {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.contact-map .footer-block__title {
    margin-bottom: 0.35rem;
}

.contact-map__note {
    margin: 0 0 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.contact-map__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 240px;
    max-height: min(420px, 70vh);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.05) inset;
}

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

.contact-map__actions {
    margin: 0.85rem 0 0;
}

.contact-map__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 240, 255, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-map__link:hover {
    color: #fff;
    border-bottom-color: rgba(0, 240, 255, 0.65);
}

/* Contact — feedback modal */
.contact-modal[hidden] {
    display: none !important;
}

.contact-modal:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
        max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

body.contact-modal-open {
    overflow: hidden;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 10, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal--visible .contact-modal__backdrop {
    opacity: 1;
}

.contact-modal__panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 1.65rem 1.5rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 18, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal--visible .contact-modal__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.contact-modal__panel--success {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 240, 255, 0.08) inset,
        0 0 40px rgba(0, 240, 255, 0.06);
}

.contact-modal__panel--success::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(180px, 45%);
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
    opacity: 0.9;
}

.contact-modal__panel--error {
    border-color: rgba(255, 45, 106, 0.35);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 45, 106, 0.08) inset,
        0 0 36px rgba(255, 45, 106, 0.06);
}

.contact-modal__eyebrow {
    margin: 0 0 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-modal__panel--success .contact-modal__eyebrow {
    color: var(--cyan);
}

.contact-modal__panel--error .contact-modal__eyebrow {
    color: var(--magenta);
}

.contact-modal__title {
    margin: 0 0 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: var(--text-main);
}

.contact-modal__body {
    margin-bottom: 1.35rem;
}

.contact-modal__intro {
    margin: 0 0 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(232, 232, 237, 0.82);
}

.contact-modal__intro strong {
    color: var(--text-main);
    font-weight: 600;
}

.contact-modal__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-modal__issue {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--card-border);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(232, 232, 237, 0.78);
}

.contact-modal__issue:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-modal__issue-field {
    font-weight: 600;
    color: var(--magenta);
}

.contact-modal__issue-detail {
    color: var(--text-muted);
}

.contact-modal__btn {
    width: 100%;
    padding: 0.8rem 1.1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.22), rgba(168, 85, 247, 0.14));
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.contact-modal__btn:hover {
    border-color: rgba(0, 240, 255, 0.55);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.32), rgba(168, 85, 247, 0.2));
}

.contact-modal__btn:active {
    transform: scale(0.99);
}

.contact-modal__panel--error .contact-modal__btn {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.contact-modal__panel--error .contact-modal__btn:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
}

/* Pricing page inside legal layout */
main.legal-page.pricing-page {
    max-width: 1180px;
}

main.legal-page.pricing-page > .legal-page__inner > .legal-page__eyebrow,
main.legal-page.pricing-page > .legal-page__inner > .legal-page__title,
main.legal-page.pricing-page > .legal-page__inner > .legal-page__lead,
main.legal-page.contact-page > .legal-page__inner > .legal-page__eyebrow,
main.legal-page.contact-page > .legal-page__inner > .legal-page__title,
main.legal-page.contact-page > .legal-page__inner > .legal-page__lead,
main.legal-page.case-studies-page > .legal-page__inner > .legal-page__eyebrow,
main.legal-page.case-studies-page > .legal-page__inner > .legal-page__title,
main.legal-page.case-studies-page > .legal-page__inner > .legal-page__lead,
main.legal-page.services-page > .legal-page__inner > .legal-page__eyebrow,
main.legal-page.services-page > .legal-page__inner > .legal-page__title,
main.legal-page.services-page > .legal-page__inner > .legal-page__lead,
main.legal-page.legal-page--intro-centered > .legal-page__inner > .legal-page__eyebrow,
main.legal-page.legal-page--intro-centered > .legal-page__inner > .legal-page__title,
main.legal-page.legal-page--intro-centered > .legal-page__inner > .legal-page__lead {
    text-align: center;
}

main.legal-page.pricing-page > .legal-page__inner > .legal-page__lead,
main.legal-page.contact-page > .legal-page__inner > .legal-page__lead,
main.legal-page.case-studies-page > .legal-page__inner > .legal-page__lead,
main.legal-page.services-page > .legal-page__inner > .legal-page__lead,
main.legal-page.legal-page--intro-centered > .legal-page__inner > .legal-page__lead {
    margin-left: auto;
    margin-right: auto;
}

main.legal-page.case-studies-page {
    max-width: 1100px;
}

main.legal-page.services-page {
    max-width: 1150px;
}

.services-section {
    padding: 2rem 0 1rem;
    margin-top: 0.35rem;
}

.services-section__header {
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 0 1.65rem 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.service-card__visual {
    margin: 0 -1.65rem 1.15rem -1.65rem;
    line-height: 0;
    border-bottom: 1px solid var(--card-border);
}

.service-card__visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 400 / 220;
    object-fit: cover;
    object-position: center;
    background: rgba(13, 13, 20, 0.95);
}

.service-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 1px;
    margin: 0 0 0.55rem;
    line-height: 1.15;
    color: var(--text-main);
}

.service-card__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.service-card__btn {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #4a4a52;
    background: transparent;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-card__btn:hover {
    border-color: rgba(0, 240, 255, 0.35);
    background: rgba(0, 240, 255, 0.06);
    color: var(--text-main);
}

.service-card__btn:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.services-page__cta {
    margin-top: 2.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    text-align: center;
}

.services-page__cta a {
    color: var(--magenta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.services-page__cta a:hover {
    color: var(--text-main);
}

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

.service-detail-modal:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
        max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.service-detail-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-modal--visible .service-detail-modal__backdrop {
    opacity: 1;
}

.service-detail-modal__panel {
    position: relative;
    width: min(760px, 100%);
    max-height: min(88vh, 820px);
    overflow: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(12, 12, 18, 0.97);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 44px rgba(0, 240, 255, 0.07);
    transform: translateY(16px) scale(0.985);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail-modal--visible .service-detail-modal__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.service-detail-modal__close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 12, 18, 0.9);
    color: rgba(232, 232, 237, 0.9);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-detail-modal__close:hover {
    border-color: rgba(0, 240, 255, 0.45);
    color: #fff;
    background: rgba(0, 240, 255, 0.12);
}

.service-detail-modal__media {
    margin: 0;
    line-height: 0;
    border-bottom: 1px solid var(--card-border);
}

.service-detail-modal__media img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 400 / 220;
    object-fit: cover;
    object-position: center;
}

.service-detail-modal__eyebrow {
    margin: 1.3rem 1.5rem 0.55rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
}

.service-detail-modal__title {
    margin: 0 1.5rem 0.9rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4.2vw, 2.45rem);
    letter-spacing: 0.06em;
    line-height: 1.05;
    color: var(--text-main);
}

.service-detail-modal__content {
    margin: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}

.service-detail-modal__content p {
    margin: 0 0 0.9rem;
    font-size: 1rem;
    line-height: 1.8;
}

.service-detail-modal__content p:last-child {
    margin-bottom: 0;
}

.service-detail-modal__content strong {
    color: var(--text-main);
    font-weight: 600;
}

.service-detail-modal__actions {
    margin: 0 1.5rem 1.4rem;
}

.service-detail-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 0.82rem 1.15rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(168, 85, 247, 0.14));
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.service-detail-modal__cta:hover {
    border-color: rgba(0, 240, 255, 0.55);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.32), rgba(168, 85, 247, 0.2));
}

@media (max-width: 600px) {
    .service-detail-modal__panel {
        width: 100%;
    }

    .service-detail-modal__eyebrow,
    .service-detail-modal__title,
    .service-detail-modal__content,
    .service-detail-modal__actions {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

.legal-page .case-studies-section {
    padding: 2.25rem 0 3rem;
    margin-top: 0.25rem;
}

.legal-page .case-studies-section .features-inner {
    max-width: 100%;
}

.legal-page .case-studies-section .features-header {
    margin-bottom: 2.25rem;
}

.case-studies-ribbon {
    margin: 0 auto 2.5rem;
    max-width: 100%;
}

.case-studies-ribbon img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    background: rgba(13, 13, 20, 0.95);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.legal-page .case-studies-section .feature-card--visual .case-study-card-visual {
    margin: -2rem -2rem 1.25rem -2rem;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--card-border);
    line-height: 0;
}

.legal-page .case-studies-section .feature-card--visual .case-study-card-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 440 / 260;
    object-fit: cover;
}

.case-study-card-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
}

.case-study-card-list li {
    margin-bottom: 0.45rem;
}

.case-study-card-list li:last-child {
    margin-bottom: 0;
}

.case-study-narratives {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 1.85rem);
    margin: 2.5rem 0 0;
    padding-top: 2.75rem;
    border-top: 1px solid var(--card-border);
}

.case-study-narrative-block {
    padding: 1.5rem 1.35rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
}

.case-study-narrative-block__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 1px;
    margin: 0 0 0.75rem;
    line-height: 1.2;
    color: var(--text-main);
}

.case-study-narrative-block__text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
}

.case-study-narrative-block__text:last-child {
    margin-bottom: 0;
}

.case-study-readout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    margin: 2.5rem 0 0;
    padding: 2.75rem 0;
    border-top: 1px solid var(--card-border);
}

.case-study-readout__figure {
    margin: 0;
}

.case-study-readout__figure img {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    margin-inline: auto;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: rgba(13, 13, 20, 0.95);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.case-study-readout__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    letter-spacing: 1px;
    margin: 0 0 0.85rem;
    line-height: 1.1;
}

.case-study-readout__title span {
    color: var(--magenta);
}

.case-study-readout__lead {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.case-study-readout__lead strong {
    color: var(--text-main);
    font-weight: 600;
}

.case-study-readout__list {
    margin: 0;
    padding-left: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.case-study-readout__list li {
    margin-bottom: 0.55rem;
}

.case-study-readout__list li:last-child {
    margin-bottom: 0;
}

.case-study-sectors {
    margin: 2.5rem 0 0;
    padding: 2rem 0 0;
    border-top: 1px solid var(--card-border);
}

.case-study-sectors__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    letter-spacing: 1px;
    margin: 0 0 0.5rem;
    text-align: center;
}

.case-study-sectors__intro {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 auto 1.35rem;
    max-width: 40rem;
    text-align: center;
}

.case-study-sectors__pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.65rem;
}

.case-study-sectors__pills li {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-main);
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
}

.case-study-pullquote {
    margin: 2.5rem 0 0;
    padding: 1.65rem 1.75rem 1.5rem;
    background: var(--card-bg);
    border-radius: 0 12px 12px 0;
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--magenta);
}

.case-study-pullquote p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-main);
    margin: 0 0 1rem;
    font-style: italic;
}

.case-study-pullquote footer {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.case-studies-page .legal-page__body-cta {
    margin-top: 2.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    text-align: center;
}

.case-studies-page .legal-page__body-cta a {
    color: var(--magenta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.case-studies-page .legal-page__body-cta a:hover {
    color: var(--text-main);
}

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

    .case-study-readout {
        grid-template-columns: 1fr;
    }

    .case-study-readout__figure {
        order: -1;
    }
}

.legal-page .pricing-section {
    padding: 2.5rem 0 4rem;
    margin-top: 0.5rem;
}

.legal-page.pricing-page .pricing-inner {
    max-width: 100%;
    min-width: 0;
}

.legal-page.pricing-page .pricing-section .features-header {
    margin-bottom: 2.75rem;
}

.legal-page.pricing-page .pricing-grid {
    max-width: 100%;
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
}

@media (min-width: 1101px) {
    .legal-page.pricing-page .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.legal-page.pricing-page .price-card {
    padding: 2.75rem 2.15rem;
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.legal-page.pricing-page .price-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.legal-page.pricing-page .price-card.popular {
    border-color: rgba(0, 240, 255, 0.28);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, var(--card-bg) 45%);
}

.legal-page.pricing-page .plan-name {
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    margin-bottom: 0.65rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.legal-page.pricing-page .plan-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    flex-grow: 0;
}

.legal-page.pricing-page .plan-price {
    margin-bottom: 1.65rem;
}

.legal-page.pricing-page .price-value {
    font-size: clamp(2.35rem, 4vw, 3.15rem);
    line-height: 1.05;
}

.legal-page.pricing-page .price-period {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    line-height: 1.45;
}

.legal-page.pricing-page .price-yearly-total {
    min-height: auto;
    line-height: 1.45;
}

.legal-page.pricing-page .price-yearly-total.visible {
    margin-top: 0.5rem;
}

.legal-page.pricing-page .plan-features {
    margin-bottom: auto;
    padding-bottom: 1.75rem;
}

.legal-page.pricing-page .plan-features li {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.55rem 0;
    align-items: flex-start;
}

.legal-page.pricing-page .plan-features li::before {
    flex-shrink: 0;
    margin-top: 0.15em;
}

.legal-page.pricing-page .plan-btn {
    margin-top: auto;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    white-space: nowrap;
}

.pricing-page__note {
    margin: 2.5rem auto 0;
    max-width: 42rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    text-align: center;
}

/* Pricing — detailed comparison below cards */
.pricing-compare {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--card-border);
}

.pricing-compare__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.85rem);
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--text-main);
}

.pricing-compare__title span {
    color: var(--magenta);
}

.pricing-compare__lead {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 2.25rem;
    max-width: 52rem;
}

.pricing-compare__lead strong {
    color: var(--text-main);
    font-weight: 600;
}

.pricing-compare__narrative {
    margin-bottom: 2.75rem;
    max-width: 52rem;
}

.pricing-compare__h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    letter-spacing: 0.05em;
    margin: 1.85rem 0 0.6rem;
    color: var(--text-main);
    line-height: 1.2;
}

.pricing-compare__h3:first-child {
    margin-top: 0;
}

.pricing-compare__narrative p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.pricing-compare__narrative p:last-child {
    margin-bottom: 0;
}

.pricing-compare__table-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
    color: var(--text-main);
}

.pricing-compare__table-wrap {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.04) inset;
    -webkit-overflow-scrolling: touch;
}

.pricing-compare__table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-compare__table thead th {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    padding: 1rem 0.9rem;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.pricing-compare__table tbody th {
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid var(--card-border);
    vertical-align: top;
    max-width: 11rem;
}

.pricing-compare__table td {
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-muted);
    vertical-align: top;
}

.pricing-compare__table tbody tr:last-child th,
.pricing-compare__table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-compare__table tbody tr:hover td,
.pricing-compare__table tbody tr:hover th {
    background: rgba(255, 255, 255, 0.035);
}

.pricing-compare__table tbody th em {
    font-style: normal;
    font-weight: 500;
    color: rgba(232, 232, 237, 0.65);
}

.pricing-compare__footnote {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 52rem;
}

.pricing-compare__footnote strong {
    color: var(--text-main);
    font-weight: 600;
}

a.plan-btn,
button.plan-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

button.plan-btn {
    appearance: none;
    -webkit-appearance: none;
}

.pricing-email-form {
    margin-top: 0.25rem;
}

.pricing-email-form__label {
    display: block;
    margin-bottom: 0.45rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pricing-email-form__input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-email-form__input::placeholder {
    color: rgba(107, 107, 122, 0.85);
}

.pricing-email-form__input:focus {
    outline: none;
    border-color: rgba(0, 240, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.pricing-email-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.pricing-email-form__actions .contact-modal__btn {
    flex: 1 1 auto;
    min-width: 0;
}

.contact-modal__btn--secondary {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.contact-modal__btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
}

.contact-modal__panel--success .contact-modal__btn--link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.contact-modal__panel--success .contact-modal__btn--link:hover {
    color: #fff;
}

/* Contact — mobile (must load after base .contact-layout or it is overridden) */
@media (max-width: 768px) {
    main.legal-page.contact-page {
        padding-left: max(1rem, 4%);
        padding-right: max(1rem, 4%);
    }

    main.legal-page.contact-page .legal-page__inner {
        max-width: 100%;
        min-width: 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrap {
        padding: 1.2rem 1rem;
    }

    .contact-aside .footer-contact-mail {
        max-width: 100%;
        min-width: 0;
        justify-content: flex-start;
        text-align: left;
    }

    .contact-aside .footer-contact-mail span:last-child {
        overflow-wrap: anywhere;
    }

    .contact-aside .footer-hours__row {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        text-align: left;
    }

    .contact-aside .footer-hours dt,
    .contact-aside .footer-hours dd {
        width: auto;
        text-align: left;
    }

    .contact-aside .footer-address {
        align-items: flex-start;
        text-align: left;
    }

    .contact-aside .footer-address__line {
        text-align: left;
    }

    .legal-page__title {
        overflow-wrap: anywhere;
    }
}
