/* Mamoon Faisal — Dubai Landing Page
   Brand colors from mamoon-faisal.dev */

:root {
    --mf-cyan: #01e8fc;
    --mf-cyan-bright: #3df0ff;
    --mf-cyan-hover: #00c0d0;
    --mf-cyan-dim: #009daa;
    --mf-cyan-a10: rgba(1, 232, 252, 0.1);
    --mf-cyan-a20: rgba(1, 232, 252, 0.2);
    --mf-cyan-a40: rgba(1, 232, 252, 0.4);
    --mf-gold: #c9a84c;
    --mf-gold-a15: rgba(201, 168, 76, 0.15);
    --mf-bg: #090a0b;
    --mf-bg-panel: #12171b;
    --mf-bg-card: rgba(18, 23, 27, 0.75);
    --mf-white: #ffffff;
    --mf-text: #ececec;
    --mf-text-muted: #8a939b;
    --mf-border: rgba(68, 68, 68, 0.6);
    --mf-border-glow: rgba(1, 232, 252, 0.25);
    --mf-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 72px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-glow: 0 0 60px rgba(1, 232, 252, 0.12);
    --font: 'Play', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Play', var(--font);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-family: var(--font);
    overflow-x: clip;
    background: var(--mf-bg);
}

body {
    font-family: var(--font);
    background: transparent;
    color: var(--mf-text);
    line-height: 1.65;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}

main {
    overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

button, input, select, textarea {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
}

.container {
    width: min(1200px, 92vw);
    margin-inline: auto;
}

/* Background mesh — body must stay transparent so Chrome paints this above html bg */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
    max-width: 100%;
    transform: translateZ(0);
}

main,
footer {
    position: relative;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--mf-cyan) 0%, transparent 70%);
    top: -200px; right: -100px;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--mf-gold) 0%, transparent 70%);
    bottom: 10%; left: -150px;
    animation-delay: -7s;
    opacity: 0.15;
}

.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #4158d0 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='%2301e8fc' stroke-opacity='0.16' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Soft edge fade — separate from grid so Chrome always paints the lines */
.grid-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 90% 75% at 50% 32%,
        transparent 0%,
        rgba(9, 10, 11, 0.25) 50%,
        rgba(9, 10, 11, 0.85) 100%
    );
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background 0.4s var(--mf-ease), backdrop-filter 0.4s, border-color 0.4s;
}

.header.scrolled {
    background: rgba(9, 10, 11, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--mf-border-glow);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img { height: 40px; width: auto; }

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mf-text-muted);
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
}

.nav a:hover { color: var(--mf-white); background: var(--mf-cyan-a10); }

.nav-cta {
    background: var(--mf-cyan-a10) !important;
    color: var(--mf-cyan) !important;
    border: 1px solid var(--mf-border-glow);
}

.nav-cta:hover {
    background: var(--mf-cyan) !important;
    color: var(--mf-bg) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mf-white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--mf-ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mf-cyan) 0%, var(--mf-cyan-dim) 100%);
    color: var(--mf-bg);
    box-shadow: 0 4px 24px rgba(1, 232, 252, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(1, 232, 252, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--mf-text);
    border: 1px solid var(--mf-border);
}

.btn-ghost:hover {
    border-color: var(--mf-cyan);
    color: var(--mf-cyan);
    background: var(--mf-cyan-a10);
}

.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-loader {
    width: 20px; height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--mf-bg);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

/* Hero */
.hero {
    padding: calc(var(--header-h) + 60px) 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mf-cyan);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.badge__dot {
    width: 8px; height: 8px;
    background: var(--mf-cyan);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(1, 232, 252, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(1, 232, 252, 0); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--mf-cyan-bright) 0%, var(--mf-cyan) 50%, var(--mf-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__lead {
    font-size: 1.1rem;
    color: var(--mf-text-muted);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero__lead strong { color: var(--mf-white); }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.stat__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--mf-cyan);
    line-height: 1;
}

.stat__plus {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mf-cyan);
}

.stat__label {
    display: block;
    font-size: 0.82rem;
    color: var(--mf-text-muted);
    margin-top: 4px;
}

/* Form Card */
.form-card {
    position: relative;
    background: var(--mf-bg-card);
    backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    isolation: isolate;
}

.form-card__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(70%, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mf-cyan), transparent);
    pointer-events: none;
}

.form-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-card__sub {
    font-size: 0.9rem;
    color: var(--mf-text-muted);
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mf-text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(9, 10, 11, 0.6);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    color: var(--mf-white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mf-cyan);
    box-shadow: 0 0 0 3px var(--mf-cyan-a10);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238a939b'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group select.select--native {
    display: block;
    position: relative;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    min-height: 46px;
}

.form-group select option { background: var(--mf-bg-panel); }
.form-group select optgroup {
    font-weight: 700;
    color: var(--mf-cyan);
    background: var(--mf-bg-panel);
}

.form-group select option { padding: 4px 0; }

/* Custom select — replaces native OS dropdown popup */
.custom-select {
    position: relative;
}

.custom-select select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    border: 0;
}

.custom-select__trigger {
    display: block;
    min-height: 46px;
    width: 100%;
    text-align: left;
    padding: 12px 36px 12px 16px;
    background: rgba(9, 10, 11, 0.6);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    color: var(--mf-white);
    font-family: var(--font);
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238a939b'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.custom-select__trigger.is-placeholder {
    color: #555;
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
    outline: none;
    border-color: var(--mf-cyan);
    box-shadow: 0 0 0 3px var(--mf-cyan-a10);
}

.custom-select__list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 100;
    max-height: min(320px, 50vh);
    overflow-y: auto;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: rgba(12, 16, 22, 0.98);
    border: 1px solid rgba(1, 232, 252, 0.22);
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    display: none;
}

.custom-select.is-open .custom-select__list {
    display: block;
}

.custom-select__option {
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--mf-text-muted);
    transition: background 0.15s ease, color 0.15s ease;
}

.custom-select__option:hover,
.custom-select__option:focus {
    background: rgba(1, 232, 252, 0.08);
    color: var(--mf-white);
    outline: none;
}

.custom-select__option.is-selected {
    background: rgba(1, 232, 252, 0.14);
    color: var(--mf-cyan);
}

.custom-select__option.is-placeholder {
    color: #666;
}

.custom-select__group {
    padding: 10px 14px 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mf-cyan);
    border-top: 1px solid var(--mf-border);
    pointer-events: none;
    list-style: none;
}

.custom-select__group:first-child {
    border-top: none;
}

.custom-select__option.is-child {
    padding-left: 22px;
    font-size: 13px;
    color: var(--mf-text-muted);
}

.custom-select__option.is-child::before {
    content: '↳';
    margin-right: 8px;
    color: var(--mf-cyan);
    opacity: 0.5;
}

.custom-select__option.is-child.is-selected,
.custom-select__option.is-child:hover {
    color: var(--mf-white);
}

.custom-select select.error ~ .custom-select__trigger {
    border-color: #e74c3c;
}

.custom-select.error .custom-select__trigger {
    border-color: #e74c3c;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group input.error,
.form-group select.error { border-color: #e74c3c; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-alert {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-alert.success {
    background: rgba(0, 208, 130, 0.1);
    border: 1px solid rgba(0, 208, 130, 0.3);
    color: #00d084;
}

.form-alert.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* Marquee */
.marquee-section {
    padding: 48px 0;
    border-block: 1px solid var(--mf-border);
    background: rgba(18, 23, 27, 0.4);
    overflow-x: clip;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mf-cyan);
    margin-bottom: 12px;
}

.marquee {
    overflow-x: hidden;
    overflow-y: visible;
    padding-block: 10px;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-block: 2px;
    animation: marquee 40s linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.marquee__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
    padding: 14px 24px;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.marquee__item:hover { border-color: var(--mf-cyan-a40); }

.marquee__cat {
    font-size: 0.7rem;
    color: var(--mf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

/* Sections */
.section {
    padding: 100px 0;
}

@media (min-width: 1024px) {
    .section {
        content-visibility: auto;
        contain-intrinsic-size: auto 500px;
    }
}

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

.section-header--icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 720px;
}

.section-header__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(1, 232, 252, 0.15), rgba(1, 232, 252, 0.03));
    border: 1px solid rgba(1, 232, 252, 0.25);
    box-shadow: 0 0 32px rgba(1, 232, 252, 0.12);
}

.section-header__icon {
    color: var(--mf-cyan-bright);
}

.section-header h2,
.about__content h2,
.dual-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--mf-text-muted);
    font-size: 1.05rem;
}

/* About */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about__image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about__image-frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.about__image-accent {
    position: absolute;
    inset: -2px;
    border: 2px solid var(--mf-cyan-a40);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: 1;
}

.about__content p {
    color: var(--mf-text-muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 32px;
}

.skill-tags li {
    padding: 6px 14px;
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mf-cyan);
}

/* Services */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius);
    transition: transform 0.4s var(--mf-ease), border-color 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mf-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--mf-border-glow);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    border-radius: 12px;
    color: var(--mf-cyan);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--mf-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-card__tags li {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    color: var(--mf-text-muted);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mf-cyan);
    transition: gap 0.3s, color 0.3s;
}

.service-card__link:hover { color: var(--mf-cyan-bright); gap: 10px; }

/* Dual section */
.dual-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dual-card {
    padding: 40px;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius);
}

.check-list { margin: 24px 0 32px; }

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--mf-text-muted);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2301e8fc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Areas */
.areas__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.area-chip {
    padding: 10px 20px;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s var(--mf-ease);
    cursor: default;
}

.area-chip:hover {
    border-color: var(--mf-cyan);
    color: var(--mf-cyan);
    background: var(--mf-cyan-a10);
    transform: translateY(-2px);
}

/* CTA Banner */
.cta-banner__inner {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(135deg, var(--mf-bg-panel) 0%, rgba(1, 232, 252, 0.05) 100%);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mf-cyan), var(--mf-gold), transparent);
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--mf-text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Footer */
.footer {
    border-top: 1px solid var(--mf-border);
    padding-top: clamp(48px, 6vw, 72px);
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(200px, 1.15fr) minmax(260px, 1.4fr) minmax(180px, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    padding-bottom: clamp(36px, 5vw, 52px);
}

.footer__brand img {
    width: auto;
    height: 42px;
    margin-bottom: 4px;
}

.footer__brand p {
    color: var(--mf-text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-top: 14px;
    max-width: 28ch;
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 10px 16px;
    border: 1px solid rgba(1, 232, 252, 0.35);
    border-radius: 999px;
    color: var(--mf-cyan);
    font-size: 0.86rem;
    font-weight: 700;
    transition: background 0.25s var(--mf-ease), border-color 0.25s var(--mf-ease), color 0.25s var(--mf-ease);
}

.footer__cta:hover {
    background: rgba(1, 232, 252, 0.1);
    border-color: var(--mf-cyan);
    color: var(--mf-white);
}

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

.footer__col h4,
.footer__contact h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mf-text-muted);
    margin-bottom: 14px;
}

.footer__col a,
.footer__contact a {
    display: block;
    font-size: 0.92rem;
    color: var(--mf-text-muted);
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.25s;
}

.footer__col a:last-child,
.footer__contact a:last-child {
    margin-bottom: 0;
}

.footer__col a:hover,
.footer__contact a:hover {
    color: var(--mf-cyan);
}

.footer__bottom {
    border-top: 1px solid var(--mf-border);
    padding: 18px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    flex-wrap: wrap;
}

.footer__bottom p,
.footer__bottom a {
    font-size: 0.82rem;
    color: var(--mf-text-muted);
}

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

@media (max-width: 960px) {
    .footer__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 32px 40px;
    }

    .footer__brand {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "logo cta"
            "copy copy";
        column-gap: 24px;
        row-gap: 10px;
        align-items: center;
    }

    .footer__brand img {
        grid-area: logo;
        margin-bottom: 0;
    }

    .footer__brand p {
        grid-area: copy;
        margin-top: 0;
        max-width: 48ch;
    }

    .footer__cta {
        grid-area: cta;
        justify-self: start;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand {
        grid-column: auto;
        display: block;
    }

    .footer__brand img {
        margin-bottom: 4px;
    }

    .footer__brand p {
        margin-top: 12px;
        max-width: 36ch;
    }

    .footer__cta {
        margin-top: 16px;
    }

    .footer__nav {
        gap: 24px 16px;
    }

    .footer__col a,
    .footer__contact a {
        margin-bottom: 12px;
        padding: 2px 0;
    }

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

    .footer {
        padding-top: 40px;
    }

    .footer__grid {
        padding-bottom: 32px;
    }
}


/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--mf-ease), transform 0.7s var(--mf-ease);
    transition-delay: var(--delay, 0s);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }

.no-js .reveal,
.no-js .reveal-text,
.no-js .check-reveal {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__image { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px), (max-height: 480px) and (orientation: landscape) and (max-width: 1024px) {
    :root { --header-h: 64px; }

    .container {
        width: min(1200px, 90vw);
    }

    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(9, 10, 11, 0.97);
        backdrop-filter: blur(20px);
        padding: 16px;
        border-bottom: 1px solid var(--mf-border);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.4s var(--mf-ease), opacity 0.4s;
        pointer-events: none;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a { width: 100%; text-align: center; padding: 12px; }

    .hero {
        min-height: auto;
        padding: calc(var(--header-h) + 28px) 0 40px;
    }

    .hero__grid { gap: 28px; }
    .hero h1 { margin-bottom: 16px; }
    .hero__lead { font-size: 1rem; margin-bottom: 24px; }
    .hero__actions { margin-bottom: 28px; }
    .hero__stats { gap: 20px; }

    .badge { margin-bottom: 16px; }

    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 20px; }
    .form-card h2 { font-size: 1.35rem; }

    .services__grid { grid-template-columns: 1fr; gap: 16px; }
    .highlights__grid { gap: 16px; }
    .dual-section__grid { grid-template-columns: 1fr; gap: 20px; }

    .section { padding: 48px 0; }
    .section-header { margin-bottom: 32px; }
    .section-desc { font-size: 0.95rem; }

    .marquee-section { padding: 28px 0; }
    .marquee-section .section-eyebrow { margin-bottom: 8px; }
    .marquee { padding-block: 6px; }
    .marquee__item { padding: 12px 18px; }

    .about__grid { gap: 28px; }
    .service-card { padding: 24px; }
    .dual-card { padding: 24px; }
    .highlight-card { padding: 24px; }

    .globe-section__grid { gap: 28px; }
    .globe-section__viz { overflow: hidden; }
    .globe-wrap { max-width: 100%; width: 100%; }

    .globe-detail {
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
    }

    .globe-locations { margin: 20px 0 24px; }
    .globe-loc.is-active { transform: none; }

    .faq__header { margin-bottom: 28px; gap: 20px; }
    .faq__badge { padding: 16px 20px; }
    .faq-card__trigger { padding: 16px 18px; gap: 12px; }
    .faq-card__question { font-size: 0.95rem; }

    .cta-banner__inner { padding: 36px 20px; }
    .cta-banner p { margin-bottom: 24px; font-size: 0.95rem; }

    .orb-1 { width: 280px; height: 280px; top: -80px; right: -60px; }
    .orb-2 { width: 240px; height: 240px; left: -80px; }
    .orb-3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .container { width: min(1200px, 92vw); }

    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .stat { min-width: calc(50% - 8px); }

    .cta-banner__actions { flex-direction: column; }
    .cta-banner__actions .btn { width: 100%; }

    .globe-section__actions { flex-direction: column; }
    .globe-section__actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .globe-wrap__ring--2 { inset: -8%; }

    .faq-card__panel p {
        margin-left: 18px;
        margin-right: 18px;
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-text, .check-reveal { opacity: 1; transform: none; }
    .marquee__track { animation: none; }
}

/* ─── Scroll progress bar ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--mf-cyan), var(--mf-gold), var(--mf-cyan-bright));
    z-index: 10001;
    box-shadow: 0 0 12px var(--mf-cyan-a40);
    transition: width 0.1s linear;
}

/* ─── Hero text reveal ─── */
.hero-title { display: flex; flex-direction: column; gap: 4px; }

.hero-line.reveal-text {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--mf-ease), transform 0.8s var(--mf-ease);
    transition-delay: var(--delay, 0s);
}

.hero-line.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Button shine ─── */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { left: -75%; opacity: 0; }
    50% { left: 125%; opacity: 0.6; }
}

/* ─── Animated form card border ─── */
.form-card--animated {
    position: relative;
    background: var(--mf-bg-panel);
    border: none;
    isolation: isolate;
}

.form-card__border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--mf-cyan), transparent 35%, var(--mf-gold), transparent 65%, var(--mf-cyan));
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

.form-card--animated > *:not(.form-card__decor) {
    position: relative;
    z-index: 1;
}

.form-card__decor {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.form-card__decor .form-card__border,
.form-card__decor .form-card__aurora,
.form-card__decor .form-card__glow {
    z-index: auto;
}

/* ─── Premium consultation form ─── */
.hero__form-wrap {
    position: relative;
}

.hero__form-wrap::before {
    content: '';
    position: absolute;
    inset: 8% 0 -24px;
    background: radial-gradient(ellipse at 50% 100%, rgba(1, 232, 252, 0.18), transparent 68%);
    filter: blur(24px);
    pointer-events: none;
    z-index: -1;
}

.form-card--premium {
    padding: 0;
    overflow: visible;
    background: linear-gradient(165deg, rgba(22, 28, 34, 0.95) 0%, rgba(12, 15, 18, 0.92) 100%);
    box-shadow:
        0 0 0 1px rgba(1, 232, 252, 0.08),
        0 24px 80px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(1, 232, 252, 0.1);
    transition: transform 0.5s var(--mf-ease), box-shadow 0.5s var(--mf-ease);
}

.form-card--premium:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(1, 232, 252, 0.14),
        0 32px 96px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(1, 232, 252, 0.14);
}

.form-card__aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.form-card__aurora::before,
.form-card__aurora::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.28;
    animation: formAurora 10s ease-in-out infinite alternate;
}

.form-card__aurora::before {
    width: 220px;
    height: 220px;
    top: -90px;
    right: -50px;
    background: var(--mf-cyan);
}

.form-card__aurora::after {
    width: 200px;
    height: 200px;
    bottom: -70px;
    left: -40px;
    background: var(--mf-gold);
    animation-delay: -5s;
}

@keyframes formAurora {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(16px, 12px) scale(1.08); }
}

.form-card--premium .form-card__border {
    opacity: 0.55;
    background: conic-gradient(from var(--border-angle), var(--mf-cyan), transparent 25%, var(--mf-gold) 50%, transparent 75%, var(--mf-cyan));
    animation: rotateBorder 10s linear infinite;
}

.form-card--premium .form-card__glow {
    width: min(65%, calc(100% - 64px));
    height: 1px;
    box-shadow: none;
}

.form-card__header {
    padding: 32px 32px 0;
}

.form-card__header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.form-card__icon-ring {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mf-cyan-a20), rgba(201, 168, 76, 0.12));
    border: 1px solid var(--mf-border-glow);
    color: var(--mf-cyan);
    box-shadow: 0 0 24px rgba(1, 232, 252, 0.15);
}

.form-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mf-cyan);
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    border-radius: 100px;
}

.form-card__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mf-cyan);
    animation: pulse 2s ease infinite;
}

.form-card--premium h2 {
    font-size: clamp(1.45rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.form-card--premium .form-card__sub {
    margin-bottom: 18px;
    line-height: 1.55;
}

.form-card__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 0;
}

.form-card__trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--mf-text-muted);
}

.form-card__trust .mf-icon {
    color: var(--mf-cyan);
}

.form-card--premium form {
    padding: 24px 32px 32px;
}

.form-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.form-progress__track {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.form-progress__bar {
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--mf-cyan-dim), var(--mf-cyan), var(--mf-gold));
    box-shadow: 0 0 12px rgba(1, 232, 252, 0.5);
    transition: width 0.45s var(--mf-ease);
}

.form-progress__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--mf-text-muted);
    white-space: nowrap;
    min-width: 72px;
    text-align: right;
}

.form-section {
    margin-bottom: 8px;
}

.form-section__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-section__num {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--mf-cyan);
    padding: 4px 8px;
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    border-radius: 6px;
    letter-spacing: 0.06em;
}

.form-section__title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mf-text-muted);
}

.field-box {
    position: relative;
}

.field-box__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mf-text-muted);
    z-index: 2;
    pointer-events: none;
    transition: color 0.25s, transform 0.25s var(--mf-ease);
}

.field-box:focus-within .field-box__icon {
    color: var(--mf-cyan);
    transform: translateY(-50%) scale(1.05);
}

.field-box--textarea .field-box__icon {
    top: 14px;
    transform: none;
}

.field-box--textarea:focus-within .field-box__icon {
    transform: scale(1.05);
}

.form-card--premium .field-box input,
.form-card--premium .field-box select.select--native,
.form-card--premium .field-box textarea {
    padding-left: 44px;
    background: rgba(6, 8, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form-card--premium .field-box input:hover,
.form-card--premium .field-box select.select--native:hover,
.form-card--premium .field-box textarea:hover {
    border-color: rgba(1, 232, 252, 0.2);
    background: rgba(8, 10, 12, 0.85);
}

.form-card--premium .field-box input:focus,
.form-card--premium .field-box select.select--native:focus,
.form-card--premium .field-box textarea:focus {
    background: rgba(9, 12, 14, 0.95);
    border-color: var(--mf-cyan);
    box-shadow: 0 0 0 3px var(--mf-cyan-a10), 0 0 20px rgba(1, 232, 252, 0.08);
}

.form-card--premium .field-box .custom-select {
    width: 100%;
}

.form-card--premium .field-box .custom-select__trigger {
    padding-left: 44px;
    background: rgba(6, 8, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form-card--premium .field-box .custom-select:hover .custom-select__trigger {
    border-color: rgba(1, 232, 252, 0.2);
    background: rgba(8, 10, 12, 0.85);
}

.form-card--premium .field-box .custom-select.is-open .custom-select__trigger,
.form-card--premium .field-box .custom-select:focus-within .custom-select__trigger {
    background: rgba(9, 12, 14, 0.95);
    border-color: var(--mf-cyan);
    box-shadow: 0 0 0 3px var(--mf-cyan-a10), 0 0 20px rgba(1, 232, 252, 0.08);
}

.form-card--premium .form-submit {
    margin-top: 8px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 12px;
    gap: 10px;
}

.form-card--premium .form-submit .btn-icon {
    transition: transform 0.3s var(--mf-ease);
}

.form-card--premium .form-submit:hover .btn-icon {
    transform: translate(3px, -2px);
}

.form-card__footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--mf-text-muted);
}

.form-card__footnote .mf-icon {
    color: var(--mf-cyan);
    opacity: 0.8;
}

.form-card--premium .form-alert {
    animation: formAlertIn 0.4s var(--mf-ease);
}

.form-card--premium .custom-select__list {
    z-index: 200;
}

@keyframes formAlertIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .form-card__aurora::before,
    .form-card__aurora::after,
    .form-card--premium .form-card__border {
        animation: none;
    }

    .form-card--premium:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .form-card__header,
    .form-card--premium form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-card__header {
        padding-top: 24px;
    }

    .form-card--premium form {
        padding-bottom: 24px;
    }

    .form-card__header-top {
        flex-wrap: wrap;
    }
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    to { --border-angle: 360deg; }
}

/* ─── Check list stagger ─── */
.check-reveal {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s var(--mf-ease), transform 0.5s var(--mf-ease);
    transition-delay: var(--delay, 0s);
}

.check-reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── Icon system ─── */
.mf-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: block;
}

.mf-icon--lg { width: 26px; height: 26px; }
.mf-icon--xl { width: 36px; height: 36px; }
.mf-icon--sm { width: 16px; height: 16px; }

.country-flag {
    display: block;
    width: 36px;
    height: 27px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.country-flag--inline {
    display: inline-block;
    width: 22px;
    height: 16px;
    vertical-align: -2px;
    margin-right: 8px;
    border-radius: 2px;
}
.faq__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.faq__badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--mf-cyan-a10), var(--mf-gold-a15));
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.faq__badge-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--mf-cyan);
    line-height: 1;
}

.faq__badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mf-text-muted);
    line-height: 1.3;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.faq-card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--mf-ease);
}

.faq-card:hover { border-color: var(--mf-border-glow); }

.faq-card.is-open {
    border-color: var(--mf-cyan-a40);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.faq-card__trigger {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    color: var(--mf-white);
    font-family: var(--font);
    text-align: left;
    cursor: pointer;
}

.faq-card__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mf-cyan-dim);
    opacity: 0.6;
}

.faq-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    border-radius: 10px;
    color: var(--mf-cyan);
}

.faq-card__question {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-card__chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--mf-cyan);
    border-bottom: 2px solid var(--mf-cyan);
    transform: rotate(45deg);
    transition: transform 0.35s var(--mf-ease);
    flex-shrink: 0;
}

.faq-card.is-open .faq-card__chevron {
    transform: rotate(-135deg);
}

.faq-card__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--mf-ease);
}

.faq-card__panel p {
    padding: 0 24px 22px 96px;
    color: var(--mf-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    border-top: 1px solid rgba(1, 232, 252, 0.06);
    padding-top: 16px;
    margin: 0 24px 22px;
    padding-left: 0;
    padding-right: 0;
}

/* ─── Highlights / Portfolio section ─── */
.highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius);
    transition: transform 0.4s var(--mf-ease), border-color 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mf-cyan-a10), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--mf-border-glow);
    box-shadow: var(--shadow-glow);
}

.highlight-card:hover::before { opacity: 1; }

.highlight-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--mf-cyan-a10);
    border: 1px solid var(--mf-border-glow);
    border-radius: 12px;
    color: var(--mf-cyan);
    position: relative;
}

.highlight-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mf-cyan);
    position: relative;
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.highlight-card p {
    font-size: 0.92rem;
    color: var(--mf-text-muted);
    margin-bottom: 16px;
    flex: 1;
    position: relative;
}

.highlight-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
}

.highlight-card__tags li {
    font-size: 0.72rem;
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    color: var(--mf-text-muted);
}

/* ─── Globe section ─── */
.globe-section {
    overflow-x: clip;
}

.globe-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.globe-section__content,
.globe-section__viz {
    min-width: 0;
    max-width: 100%;
}

.globe-section__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.globe-locations {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 32px;
}

.globe-loc {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    color: inherit;
}

.globe-loc:hover,
.globe-loc.is-active {
    border-color: var(--mf-cyan-a40);
    box-shadow: 0 0 24px rgba(1, 232, 252, 0.08);
}

.globe-loc.is-active {
    background: rgba(1, 232, 252, 0.05);
    transform: translateX(6px);
}

.globe-loc__body { flex: 1; min-width: 0; }

.globe-loc__pin {
    flex-shrink: 0;
    color: var(--mf-cyan-dim);
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.globe-loc.is-active .globe-loc__pin {
    opacity: 1;
    color: var(--mf-cyan);
}

.globe-loc strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.globe-loc__role {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mf-cyan);
    margin-right: 8px;
}

.globe-loc__desc {
    display: block;
    font-size: 0.82rem;
    color: var(--mf-text-muted);
    overflow-wrap: anywhere;
}

.globe-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 100%;
}

.globe-section__actions .btn {
    max-width: 100%;
    box-sizing: border-box;
}

.globe-wrap {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
}

.globe-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

.globe-wrap canvas:active { cursor: grabbing; }

.globe-wrap__ring {
    position: absolute;
    inset: -6%;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(1, 232, 252, 0.1);
}

.globe-wrap__ring--1 {
    animation: ringSpin 40s linear infinite;
}

.globe-wrap__ring--2 {
    inset: -12%;
    border-style: dashed;
    border-color: rgba(1, 232, 252, 0.06);
    animation: ringSpin 60s linear infinite reverse;
}

.globe-detail {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 16px), 320px);
    max-width: 100%;
    z-index: 2;
    box-sizing: border-box;
}

.globe-detail__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(9, 10, 11, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(1, 232, 252, 0.1);
    animation: globeDetailIn 0.35s var(--mf-ease);
    min-width: 0;
}

.globe-detail__inner > div {
    min-width: 0;
    overflow: hidden;
}

.globe-detail__inner strong,
.globe-detail__inner span {
    overflow-wrap: anywhere;
}

.globe-detail__flag {
    width: 36px;
    height: 27px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.globe-detail__inner strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.globe-detail__inner span {
    font-size: 0.78rem;
    color: var(--mf-text-muted);
}

@keyframes globeDetailIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.globe-hint {
    text-align: center;
    font-size: 0.78rem;
    color: var(--mf-text-muted);
    margin-top: 12px;
    letter-spacing: 0.05em;
}

/* ─── WhatsApp float (official green) ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 14px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.25s var(--mf-ease), box-shadow 0.25s, background 0.25s;
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-float__label {
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ─── Hire Me float ─── */
.hire-me-float {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 14px;
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.16), rgba(212, 175, 55, 0.12));
    color: var(--mf-white);
    border: 1px solid rgba(1, 232, 252, 0.45);
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(1, 232, 252, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: hireMeFloatIn 0.7s var(--mf-ease) both;
    transition: transform 0.25s var(--mf-ease), box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.hire-me-float:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--mf-cyan);
    color: var(--mf-white);
    box-shadow: 0 12px 36px rgba(1, 232, 252, 0.28);
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.22), rgba(212, 175, 55, 0.16));
}

.hire-me-float__pulse {
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(1, 232, 252, 0.35);
    animation: hireMePulse 2.4s ease-out infinite;
    pointer-events: none;
}

.hire-me-float__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: var(--mf-cyan);
    flex-shrink: 0;
}

.hire-me-float__icon .mf-icon {
    width: 18px;
    height: 18px;
}

.hire-me-float__label {
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

@keyframes hireMeFloatIn {
    from { opacity: 0; transform: translateY(16px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hireMePulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.18); }
}

/* ─── Hire Me page (dossier / multi-step brief) ─── */
.hire-me {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 88px;
    overflow: clip;
}

.hire-me__glow {
    position: absolute;
    inset: 0 0 auto;
    height: 55vh;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 55, 0.14), transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 30%, rgba(1, 232, 252, 0.1), transparent 60%);
    pointer-events: none;
}

.hire-me__scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.015) 3px,
        rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

.hire-me__stage {
    position: relative;
    z-index: 1;
}

.hire-me__shell {
    max-width: 980px;
}

.hire-me__masthead {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 52px);
    animation: hireMeFloatIn 0.65s var(--mf-ease) both;
}

.hire-me__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mf-gold, #d4af37);
    margin-bottom: 18px;
}

.hire-me__kicker-mark {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mf-gold, #d4af37));
}

.hire-me__brand {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mf-white);
    margin-bottom: 14px;
}

.hire-me__headline {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--mf-white);
    margin: 0 auto 12px;
    max-width: none;
    white-space: nowrap;
    background: linear-gradient(120deg, #fff 20%, var(--mf-cyan) 55%, var(--mf-gold, #d4af37) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hire-me__sub {
    color: var(--mf-text-muted);
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    line-height: 1.5;
    max-width: none;
    margin: 0 auto;
    white-space: nowrap;
}

.hire-me__brief {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        linear-gradient(165deg, rgba(18, 22, 28, 0.92), rgba(8, 10, 14, 0.96));
    box-shadow:
        0 0 0 1px rgba(1, 232, 252, 0.04),
        0 30px 80px rgba(0, 0, 0, 0.45);
    animation: hireMeFloatIn 0.75s var(--mf-ease) 0.08s both;
}

.hire-me__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-right: 1px solid rgba(212, 175, 55, 0.18);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 40%);
}

.hire-me__rail-label,
.hire-me__rail-year {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.75);
}

.hire-me__brief-main {
    padding: clamp(24px, 4vw, 40px);
}

.hire-me__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}

.hire-me__step {
    appearance: none;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 0 0 14px;
    cursor: pointer;
    color: var(--mf-text-muted);
    position: relative;
    z-index: 1;
    transition: color 0.2s;
}

.hire-me__step-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-bottom: 4px;
    opacity: 0.7;
}

.hire-me__step-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hire-me__step.is-active,
.hire-me__step.is-done {
    color: var(--mf-white);
}

.hire-me__step.is-active .hire-me__step-num {
    color: var(--mf-cyan);
    opacity: 1;
}

.hire-me__step-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.hire-me__step-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--mf-cyan), var(--mf-gold, #d4af37));
    transition: width 0.35s var(--mf-ease);
}

.hire-me__step-alert {
    margin: -12px 0 20px;
    padding: 12px 14px;
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.08);
    color: #fecaca;
    font-size: 0.88rem;
}

.hire-me__panel {
    animation: hireMePanelIn 0.4s var(--mf-ease) both;
}

.hire-me__panel[hidden] {
    display: none !important;
}

@keyframes hireMePanelIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.hire-me__panel-head {
    margin-bottom: 24px;
}

.hire-me__panel-head h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--mf-white);
    margin-bottom: 6px;
}

.hire-me__panel-head p {
    color: var(--mf-text-muted);
    font-size: 0.92rem;
    margin: 0;
}

.hire-me__fields {
    display: grid;
    gap: 18px;
}

.hire-me__fields--split {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 18px;
}

.hire-me__field,
.hire-me__block {
    display: block;
    margin-bottom: 18px;
}

.hire-me__field-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.hire-me__field input,
.hire-me__field textarea {
    width: 100%;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    padding: 12px 0;
    color: var(--mf-white);
    font-size: 1.05rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hire-me__field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
}

.hire-me__field input::placeholder,
.hire-me__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.hire-me__field input:focus,
.hire-me__field textarea:focus {
    border-bottom-color: var(--mf-cyan);
    box-shadow: 0 1px 0 0 var(--mf-cyan);
}

.hire-me__field--phone .phone-field {
    margin-top: 0;
}

.hire-me__field--phone .phone-field__box {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    padding: 4px 0;
}

.hire-me__field--phone .phone-field__box:focus-within {
    border-bottom-color: var(--mf-cyan);
    box-shadow: 0 1px 0 0 var(--mf-cyan);
}

.hire-me__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hire-me__tile {
    appearance: none;
    text-align: left;
    padding: 16px 18px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: var(--mf-text-muted);
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.hire-me__tile:hover {
    border-color: rgba(1, 232, 252, 0.35);
    color: var(--mf-white);
    transform: translateY(-1px);
}

.hire-me__tile.is-active {
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.14), rgba(1, 232, 252, 0.06));
    color: var(--mf-white);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.hire-me__tile-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.hire-me__tile-desc {
    display: block;
    font-size: 0.78rem;
    opacity: 0.7;
}

.hire-me__timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    position: relative;
    padding-top: 8px;
}

.hire-me__timeline::before {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    top: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.hire-me__time {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0 4px;
    text-align: center;
    color: var(--mf-text-muted);
    position: relative;
    z-index: 1;
    transition: color 0.2s;
}

.hire-me__time-dot {
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: #0b0e12;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hire-me__time-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hire-me__time:hover,
.hire-me__time.is-active {
    color: var(--mf-white);
}

.hire-me__time.is-active .hire-me__time-dot {
    border-color: var(--mf-cyan);
    background: var(--mf-cyan);
    box-shadow: 0 0 16px rgba(1, 232, 252, 0.55);
}

.hire-me__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hire-me__nav--submit {
    justify-content: space-between;
}

.hire-me__back {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--mf-text-muted);
    padding: 12px 18px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.hire-me__back:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--mf-white);
}

.hire-me__next,
.hire-me__submit {
    appearance: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a0c10;
    background: linear-gradient(120deg, var(--mf-gold, #d4af37), #f0d78c 45%, var(--mf-cyan));
    background-size: 160% 100%;
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
    transition: transform 0.2s, box-shadow 0.2s, background-position 0.35s;
}

.hire-me__next:hover,
.hire-me__submit:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 12px 34px rgba(1, 232, 252, 0.22);
}

.hire-me__submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.hire-me__submit .btn-loader[hidden] {
    display: none !important;
}

.hire-me__fineprint {
    margin-top: 14px;
    text-align: right;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.hire-me__turnstile {
    margin: 8px 0 4px;
}

.hire-me__perks {
    list-style: none;
    padding: 22px 0 0;
    margin: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.hire-me__perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mf-text-muted);
    font-size: 0.84rem;
}

.hire-me__perks .mf-icon {
    color: var(--mf-gold, #d4af37);
}

@media (max-width: 720px) {
    .hire-me {
        padding-top: 88px;
    }

    .hire-me__headline,
    .hire-me__sub {
        white-space: normal;
        max-width: min(100%, 34ch);
        text-wrap: balance;
    }

    .hire-me__headline {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    }

    .hire-me__brief {
        grid-template-columns: 1fr;
    }

    .hire-me__rail {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    }

    .hire-me__rail-label,
    .hire-me__rail-year {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 0.16em;
    }

    .hire-me__fields--split,
    .hire-me__tiles {
        grid-template-columns: 1fr;
    }

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

    .hire-me__timeline::before {
        display: none;
    }

    .hire-me__nav {
        justify-content: stretch;
    }

    .hire-me__next,
    .hire-me__submit,
    .hire-me__back {
        flex: 1;
        text-align: center;
    }

    .hire-me__fineprint {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hire-me-float__label { display: none; }
    .hire-me-float {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
        bottom: 88px;
        right: 20px;
    }

    .hire-me-float__pulse { inset: -6px; }
}

.footer-wa {
    color: #25D366 !important;
    transition: color 0.2s ease;
}

.footer-wa:hover {
    color: #20bd5a !important;
}

@media (max-width: 1024px) {
    .highlights__grid { grid-template-columns: 1fr; }
    .globe-section__grid { grid-template-columns: 1fr; gap: 40px; }
    .globe-section__viz { order: -1; }
    .globe-wrap { width: 100%; max-width: min(360px, 100%); }
}

@media (max-width: 768px) {
    .faq__header { flex-direction: column; align-items: flex-start; }
    .faq-card__panel p { padding-left: 0; }
    .faq-card__trigger { grid-template-columns: auto 1fr auto; }
    .faq-card__num { display: none; }

    .whatsapp-float__label { display: none; }
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }

    .area-chip { animation: none; }
    .tilt-card { will-change: auto; }
}

/* Remove old FAQ styles - replaced above */
.faq__list, .faq__item { display: none; }


/* ─── Badge float ─── */
.badge {
    animation: none;
}

/* ─── Menu toggle active state ─── */
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-toggle span { transition: transform 0.3s, opacity 0.3s; }

/* ─── Section divider glow line ─── */
.section::before {
    content: none;
}

.marquee-section .section-eyebrow {
    text-align: center;
}

/* ─── Enhanced service card glow on hover ─── */
.tilt-card {
    transition: transform 0.15s ease-out, border-color 0.4s, box-shadow 0.4s;
    will-change: transform;
}

.tilt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--mf-cyan-a10), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.tilt-card:hover::after { opacity: 1; }

/* ─── CTA banner subtle glow ─── */
.cta-banner__inner {
    animation: none;
}

/* ─── Area chips entrance ─── */
.area-chip {
    animation: chipIn 0.5s var(--mf-ease) both;
    animation-delay: calc(var(--i, 0) * 0.04s);
}

@keyframes chipIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.areas__grid .area-chip:nth-child(1) { --i: 0; }
.areas__grid .area-chip:nth-child(2) { --i: 1; }
.areas__grid .area-chip:nth-child(3) { --i: 2; }
.areas__grid .area-chip:nth-child(4) { --i: 3; }
.areas__grid .area-chip:nth-child(5) { --i: 4; }
.areas__grid .area-chip:nth-child(6) { --i: 5; }
.areas__grid .area-chip:nth-child(7) { --i: 6; }
.areas__grid .area-chip:nth-child(8) { --i: 7; }
.areas__grid .area-chip:nth-child(9) { --i: 8; }
.areas__grid .area-chip:nth-child(10) { --i: 9; }
.areas__grid .area-chip:nth-child(11) { --i: 10; }
.areas__grid .area-chip:nth-child(12) { --i: 11; }
.areas__grid .area-chip:nth-child(13) { --i: 12; }
.areas__grid .area-chip:nth-child(14) { --i: 13; }

/* ─── Static / legal pages ─── */
.static-page,
.admin-page,
.legal-page {
    font-family: var(--font);
    min-height: 100vh;
}

.static-page {
    display: flex;
    flex-direction: column;
}

.static-page__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.static-page__card {
    max-width: 520px;
    width: 100%;
    text-align: center;
    background: var(--mf-surface, #0e1216);
    border: 1px solid var(--mf-border, #1a2229);
    border-radius: 16px;
    padding: 48px 32px;
    opacity: 1;
    transform: none;
}

.static-page .reveal {
    opacity: 1;
    transform: none;
}

.static-page__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(1, 232, 252, 0.12);
    color: var(--mf-accent, #01e8fc);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.static-page__icon .mf-icon {
    width: 28px;
    height: 28px;
    display: block;
    margin: 0;
}

.static-page__code {
    font-size: 72px;
    font-weight: 700;
    margin: 0 0 8px;
    background: linear-gradient(135deg, var(--mf-accent, #01e8fc), var(--mf-gold, #c9a84c));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.static-page__card h1 {
    margin: 0 0 12px;
    font-size: 28px;
}

.static-page__card p {
    color: var(--mf-muted, #8a939b);
    line-height: 1.6;
    margin: 0;
}

.static-page__meta {
    margin-top: 16px !important;
    font-size: 13px;
}

.static-page__meta code {
    color: var(--mf-accent, #01e8fc);
    font-size: 12px;
}

.static-page__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.header--minimal {
    position: relative;
    background: transparent;
    border-bottom: 1px solid var(--mf-border, #1a2229);
}

.legal-page {
    padding: 120px 0 80px;
}

.legal-page__inner {
    max-width: 720px;
}

.legal-page h1 {
    margin: 0 0 8px;
    font-size: 36px;
}

.legal-page__updated {
    color: var(--mf-muted, #8a939b);
    margin-bottom: 32px;
}

.legal-page section {
    margin-bottom: 28px;
}

.legal-page h2 {
    font-size: 20px;
    margin: 0 0 12px;
}

.legal-page p,
.legal-page li {
    color: var(--mf-muted, #8a939b);
    line-height: 1.7;
}

.legal-page a {
    color: var(--mf-accent, #01e8fc);
}

.footer--minimal {
    padding: 24px 0;
}

.footer--minimal .footer__bottom {
    border-top: none;
    padding-top: 0;
}

/* ─── Cookie consent ─── */
.cookie-consent[hidden],
.cookie-consent.is-dismissed {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px;
    background: rgba(6, 7, 8, 0.95);
    border-top: 1px solid var(--mf-border, #1a2229);
    backdrop-filter: blur(12px);
}

.cookie-consent__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
    color: var(--mf-muted, #8a939b);
}

.cookie-consent__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.turnstile-wrap {
    display: flex;
    justify-content: center;
}

/* ─── Admin panel ─── */
.admin-page {
    min-height: 100vh;
    background: #060708;
    color: #ececec;
}

.admin-header {
    border-bottom: 1px solid #1a2229;
    padding: 20px 0;
    background: rgba(10, 13, 16, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-header__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-header__brand img {
    flex-shrink: 0;
}

.admin-header h1 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.admin-header__sub {
    margin: 4px 0 0;
    font-size: 12px;
    color: #8a939b;
}

.admin-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-logout-form {
    display: inline;
    margin: 0;
}

.admin-main {
    padding: 28px 16px 64px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.admin-stat-card {
    background: #0e1216;
    border: 1px solid #1a2229;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-stat-card--accent {
    border-color: rgba(1, 232, 252, 0.25);
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.06), rgba(201, 168, 76, 0.04));
}

.admin-stat-card__value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.admin-stat-card__value--text {
    font-size: 16px;
    line-height: 1.3;
    color: #01e8fc;
}

.admin-stat-card__label {
    font-size: 12px;
    color: #8a939b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-toolbar {
    margin-bottom: 16px;
}

.admin-toolbar__count {
    margin: 0;
    font-size: 14px;
    color: #8a939b;
}

.admin-empty {
    text-align: center;
    padding: 64px 24px;
    background: #0e1216;
    border: 1px solid #1a2229;
    border-radius: 16px;
}

.admin-empty__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.admin-empty h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.admin-empty p {
    color: #8a939b;
    margin: 0 0 24px;
}

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

.admin-lead-card {
    background: #0e1216;
    border: 1px solid #1a2229;
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.admin-lead-card:hover {
    border-color: rgba(1, 232, 252, 0.3);
}

.admin-lead-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1a2229;
}

.admin-lead-card__name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.admin-lead-card__company {
    margin: 4px 0 0;
    font-size: 14px;
    color: #8a939b;
}

.admin-lead-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.admin-lead-card__date {
    font-size: 12px;
    color: #8a939b;
    white-space: nowrap;
}

.admin-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-badge--service {
    background: rgba(1, 232, 252, 0.12);
    color: #01e8fc;
    border: 1px solid rgba(1, 232, 252, 0.25);
}

.admin-lead-card__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.admin-lead-card__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.admin-lead-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a939b;
}

.admin-lead-card__value {
    font-size: 14px;
    color: #ececec;
    word-break: break-word;
}

.admin-lead-card__link {
    color: #01e8fc;
    text-decoration: none;
}

.admin-lead-card__link:hover {
    text-decoration: underline;
}

.admin-lead-card__message {
    margin-top: 16px;
    padding: 16px;
    background: #0a0d10;
    border-radius: 10px;
    border-left: 3px solid #01e8fc;
}

.admin-lead-card__message p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #c8cfd4;
}

.admin-lead-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.admin-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: #0a0d10;
    border: 1px solid #1a2229;
    border-radius: 6px;
    color: #8a939b;
}

.admin-tag strong {
    color: #a8b0b8;
    font-weight: 600;
}

.admin-lead-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #1a2229;
}

.admin-lead-card__id {
    font-size: 11px;
    color: #555;
    font-family: ui-monospace, monospace;
}

.admin-lead-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-login__logo {
    display: block;
    margin: 0 auto 20px;
}

.admin-login .form-group {
    text-align: left;
    margin: 20px 0;
}

@media (max-width: 900px) {
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }

    .admin-lead-card__grid {
        grid-template-columns: 1fr;
    }

    .admin-lead-card__meta {
        align-items: flex-start;
    }

    .admin-lead-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 640px) {
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── SEO sections ─── */
.trust-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--mf-border);
    background: rgba(14, 18, 22, 0.6);
}

.trust-bar__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    list-style: none;
}

.trust-bar__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--mf-text-muted);
    font-weight: 600;
}

.trust-bar__list .mf-icon {
    color: var(--mf-cyan);
    flex-shrink: 0;
}

.services__grid--seo {
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 900px) {
    .services__grid--compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.service-card--compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-card__top h3 {
    margin: 0;
    font-size: 18px;
}

.service-card__title-link {
    color: inherit;
    text-decoration: none;
}

.service-card__title-link:hover,
.service-card__title-link:focus-visible {
    color: var(--mf-cyan-bright);
}

.heading-anchor {
    color: inherit;
    text-decoration: none;
}

.heading-anchor:hover,
.heading-anchor:focus-visible {
    color: var(--mf-cyan-bright);
}

section[id],
#quote,
[id^="service-"],
[id^="ind-"],
[id^="tech-"],
[id^="city-"] {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.service-card--compact .service-card__icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
}

/* ─── Expandable (read more) ─── */
.expandable {
    --clamp-lines: 3;
}

.expandable__inner {
    overflow: hidden;
    will-change: max-height;
}

.expandable__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 0;
    border: none;
    background: none;
    color: var(--mf-cyan);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: color 0.2s, gap 0.25s;
}

.expandable__toggle:hover {
    color: var(--mf-cyan-bright);
    gap: 8px;
}

.expandable__label-expand,
.expandable__label-collapse {
    grid-area: 1 / 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.expandable__toggle-labels {
    display: grid;
    align-items: center;
}

.expandable__label-collapse {
    opacity: 0;
    transform: translateY(6px);
}

.expandable.is-expanded .expandable__label-expand {
    opacity: 0;
    transform: translateY(-6px);
}

.expandable.is-expanded .expandable__label-collapse {
    opacity: 1;
    transform: translateY(0);
}

.expandable__chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable.is-expanded .expandable__chevron {
    transform: rotate(-135deg);
    margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .expandable__inner {
        transition: none !important;
    }

    .expandable__chevron,
    .expandable__label-expand,
    .expandable__label-collapse {
        transition: none;
    }
}

.hero__lead .expandable__inner p,
.about__content .expandable__inner p {
    margin: 0 0 12px;
}

.hero__lead .expandable__inner p:last-child,
.about__content .expandable__inner p:last-child {
    margin-bottom: 0;
}

/* ─── Alternating sections ─── */
.section--alt {
    background: linear-gradient(180deg, rgba(1, 232, 252, 0.03) 0%, transparent 100%);
    border-block: 1px solid rgba(1, 232, 252, 0.06);
}

/* ─── Industries accordion ─── */
.industries__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.industry-card--accordion {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.industry-card--accordion.is-open {
    border-color: rgba(1, 232, 252, 0.35);
    box-shadow: 0 0 24px rgba(1, 232, 252, 0.08);
}

.industry-card__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.industry-card__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.2), rgba(1, 232, 252, 0.05));
    color: var(--mf-cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.industry-card__title {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: var(--mf-text);
}

.industry-card__chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--mf-cyan);
    border-bottom: 2px solid var(--mf-cyan);
    transform: rotate(45deg);
    transition: transform 0.25s;
    flex-shrink: 0;
    opacity: 0.7;
}

.industry-card--accordion.is-open .industry-card__chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.industry-card__panel {
    padding: 0 18px 18px 66px;
}

.industry-card__panel p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mf-text-muted);
    margin: 0;
}

/* ─── Tech picker ─── */
.tech-picker {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-picker__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--mf-border);
    background: var(--mf-bg-card);
    color: var(--mf-text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tech-pill:hover {
    border-color: rgba(1, 232, 252, 0.4);
    color: var(--mf-text);
}

.tech-pill.is-active {
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.2), rgba(1, 232, 252, 0.05));
    border-color: var(--mf-cyan);
    color: var(--mf-cyan-bright);
    box-shadow: 0 0 20px rgba(1, 232, 252, 0.15);
}

.tech-pill__icon,
.industry-pill__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(1, 232, 252, 0.08);
    color: var(--mf-cyan);
    flex-shrink: 0;
}

.tech-pill.is-active .tech-pill__icon,
.industry-pill.is-active .industry-pill__icon {
    background: rgba(1, 232, 252, 0.2);
    color: var(--mf-cyan-bright);
}

.picker-detail__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.picker-detail__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(1, 232, 252, 0.1);
    border: 1px solid rgba(1, 232, 252, 0.2);
    color: var(--mf-cyan);
    flex-shrink: 0;
}

.picker-detail__head h3 {
    margin: 0;
    font-size: 24px;
    color: var(--mf-cyan);
}

.industry-picker__detail .picker-detail__head,
.tech-picker__detail .picker-detail__head {
    text-align: left;
    justify-content: center;
}

/* No-JS: show all SEO picker panels for crawlers & accessibility */
.no-js [data-picker-panel][hidden] {
    display: block !important;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--mf-border);
}

.no-js [data-picker-pill] {
    pointer-events: none;
}

.tech-picker__detail {
    position: relative;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    padding: 28px 32px;
    max-width: 720px;
    margin-inline: auto;
    animation: fadeSlideIn 0.35s ease;
}

.tech-picker__detail-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(ellipse at top, rgba(1, 232, 252, 0.12), transparent 60%);
    pointer-events: none;
}

.tech-picker__detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
}

.tech-picker__detail p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mf-text-muted);
    margin: 0;
    position: relative;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Benefit grid ─── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.benefit-grid__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    line-height: 1.5;
    transition: border-color 0.2s, transform 0.2s;
}

.benefit-grid__item:hover {
    border-color: rgba(1, 232, 252, 0.3);
    transform: translateY(-2px);
}

.benefit-grid__icon {
    color: var(--mf-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── Industry picker ─── */
.industry-picker {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-picker__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--mf-border);
    background: var(--mf-bg-card);
    color: var(--mf-text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.industry-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(1, 232, 252, 0.12);
    color: var(--mf-cyan);
    flex-shrink: 0;
}

.industry-pill:hover {
    border-color: rgba(1, 232, 252, 0.4);
    color: var(--mf-text);
}

.industry-pill.is-active {
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.18), rgba(1, 232, 252, 0.04));
    border-color: var(--mf-cyan);
    color: var(--mf-cyan-bright);
    box-shadow: 0 0 24px rgba(1, 232, 252, 0.12);
}

.industry-picker__detail {
    position: relative;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    padding: 28px 32px;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
    animation: fadeSlideIn 0.35s ease;
}

.industry-picker__detail-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(ellipse at top, rgba(1, 232, 252, 0.1), transparent 65%);
    pointer-events: none;
}

.industry-picker__detail h3,
.tech-picker__detail h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--mf-cyan);
    position: relative;
}

.industry-picker__detail .picker-detail__head + p,
.tech-picker__detail .picker-detail__head + p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mf-text-muted);
    margin: 0 0 20px;
    position: relative;
}

/* ─── Process stepper (2027 style) ─── */
.process-stepper {
    max-width: 1000px;
    margin-inline: auto;
}

.process-stepper__nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 8px 4px;
    margin-bottom: 28px;
    padding: 0 8px;
}

.process-stepper__line {
    display: none;
}

.process-stepper__step {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-width: 72px;
    max-width: 100px;
    padding: 8px 6px;
    border: none;
    background: transparent;
    color: var(--mf-text-muted);
    cursor: pointer;
    text-align: center;
    transition: transform 0.25s, color 0.25s;
}

.process-stepper__step:hover {
    color: var(--mf-text);
    transform: translateY(-2px);
}

.process-stepper__ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--mf-border);
    background: rgba(9, 10, 11, 0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-stepper__ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.process-stepper__num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--mf-text-muted);
    transition: color 0.25s;
}

.process-stepper__label {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    width: 100%;
}

.process-stepper__step.is-active .process-stepper__ring {
    border-color: var(--mf-cyan);
    background: linear-gradient(145deg, rgba(1, 232, 252, 0.2), rgba(1, 232, 252, 0.04));
    box-shadow: 0 0 28px rgba(1, 232, 252, 0.25), inset 0 0 20px rgba(1, 232, 252, 0.08);
    transform: scale(1.08);
}

.process-stepper__step.is-active .process-stepper__ring::before {
    border-color: rgba(1, 232, 252, 0.35);
    box-shadow: 0 0 16px rgba(1, 232, 252, 0.2);
}

.process-stepper__step.is-active .process-stepper__num {
    color: var(--mf-cyan-bright);
}

.process-stepper__step.is-active .process-stepper__label {
    color: var(--mf-cyan-bright);
}

.process-stepper__panel {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
}

.process-stepper__panel-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center top, rgba(1, 232, 252, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.process-stepper__panel-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(14, 18, 22, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(1, 232, 252, 0.2);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    animation: fadeSlideIn 0.35s ease;
}

.process-stepper__panel-step {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mf-cyan);
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(1, 232, 252, 0.25);
    background: rgba(1, 232, 252, 0.06);
}

.process-stepper__panel-inner h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--mf-white);
    text-align: center;
}

.process-stepper__panel-inner p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mf-text-muted);
    margin: 0 auto;
    max-width: 58ch;
    text-align: center;
}

@media (min-width: 768px) {
    .process-stepper__nav {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
        padding: 0 12px 8px;
    }

    .process-stepper__line {
        display: block;
        position: absolute;
        top: 34px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--mf-border), rgba(1, 232, 252, 0.3), var(--mf-border), transparent);
        z-index: 0;
    }

    .process-stepper__step {
        flex: 1;
        z-index: 1;
        min-width: 0;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .process-stepper__nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 12px;
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .process-stepper__nav::-webkit-scrollbar {
        display: none;
    }

    .process-stepper__step {
        scroll-snap-align: center;
        flex-shrink: 0;
        min-width: 80px;
    }

    .process-stepper__panel-inner {
        padding: 28px 20px;
    }

    .process-stepper__panel-inner h3 {
        font-size: 22px;
    }
}

/* Legacy process tabs — kept for reference, overridden by stepper */
.process-tabs {
    max-width: 920px;
    margin-inline: auto;
}

.process-tabs__nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.process-tabs__tab {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    min-width: 88px;
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    background: var(--mf-bg-card);
    color: var(--mf-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.process-tabs__tab:hover {
    border-color: rgba(1, 232, 252, 0.35);
    color: var(--mf-text);
}

.process-tabs__tab.is-active {
    background: linear-gradient(180deg, rgba(1, 232, 252, 0.15), rgba(1, 232, 252, 0.03));
    border-color: var(--mf-cyan);
    color: var(--mf-cyan-bright);
}

.process-tabs__num {
    font-size: 11px;
    font-weight: 800;
    opacity: 0.6;
    letter-spacing: 0.06em;
}

.process-tabs__label {
    font-size: 13px;
    font-weight: 700;
}

.process-tabs__panel-inner {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    padding: 32px;
    animation: fadeSlideIn 0.3s ease;
}

.process-tabs__panel-inner h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--mf-cyan);
}

.process-tabs__panel-inner p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mf-text-muted);
    margin: 0;
}

/* ─── Portfolio showcase ─── */
.portfolio-showcase {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 24px;
    align-items: start;
}

.portfolio-showcase__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-showcase__tab {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    background: rgba(9, 10, 11, 0.5);
    color: var(--mf-text-muted);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.portfolio-showcase__tab:hover {
    border-color: rgba(1, 232, 252, 0.35);
    color: var(--mf-text);
    transform: translateX(4px);
}

.portfolio-showcase__tab.is-active {
    border-color: var(--mf-cyan);
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.12), rgba(1, 232, 252, 0.02));
    color: var(--mf-cyan-bright);
    box-shadow: 0 0 24px rgba(1, 232, 252, 0.1);
    transform: translateX(6px);
}

.portfolio-showcase__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(1, 232, 252, 0.08);
    color: var(--mf-cyan);
    flex-shrink: 0;
}

.portfolio-showcase__tab.is-active .portfolio-showcase__tab-icon {
    background: rgba(1, 232, 252, 0.18);
    color: var(--mf-cyan-bright);
}

.portfolio-showcase__tab-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.35;
}

.portfolio-showcase__tab-num {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--mf-cyan);
    opacity: 0.7;
}

.portfolio-showcase__stage {
    position: relative;
    min-height: 320px;
}

.portfolio-showcase__panel {
    background: rgba(14, 18, 22, 0.9);
    border: 1px solid rgba(1, 232, 252, 0.18);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.portfolio-showcase__panel.is-switching {
    animation: portfolioPanelIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes portfolioPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-showcase__head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--mf-border);
}

.portfolio-showcase__head h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.portfolio-story {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.portfolio-story__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.portfolio-story__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
}

.portfolio-story__item--problem .portfolio-story__icon {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.portfolio-story__item--solution .portfolio-story__icon {
    background: rgba(1, 232, 252, 0.1);
    color: var(--mf-cyan);
    border: 1px solid rgba(1, 232, 252, 0.25);
}

.portfolio-story__item--results .portfolio-story__icon {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.portfolio-story__body h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-story__item--problem .portfolio-story__body h4 { color: #f87171; }
.portfolio-story__item--solution .portfolio-story__body h4 { color: var(--mf-cyan); }
.portfolio-story__item--results .portfolio-story__body h4 { color: #34d399; }

.portfolio-story__body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mf-text-muted);
    margin: 0;
}

.portfolio-story__connector {
    width: 2px;
    height: 20px;
    margin-left: 23px;
    background: linear-gradient(180deg, var(--mf-border), rgba(1, 232, 252, 0.3));
}

.portfolio-showcase__cta {
    margin-top: 24px;
}

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

    .portfolio-showcase__nav {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .portfolio-showcase__nav::-webkit-scrollbar {
        display: none;
    }

    .portfolio-showcase__tab {
        flex: 0 0 min(260px, 85vw);
        scroll-snap-align: center;
        transform: none !important;
    }

    .portfolio-showcase__tab:hover {
        transform: none;
    }

    .portfolio-showcase__panel {
        padding: 22px 18px;
    }
}

/* Legacy portfolio carousel */
.portfolio-carousel {
    position: relative;
}

.portfolio-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.carousel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--mf-border);
    background: var(--mf-bg-card);
    color: var(--mf-cyan);
    cursor: pointer;
    transition: all 0.2s;
}

.carousel__btn:hover {
    border-color: var(--mf-cyan);
    background: rgba(1, 232, 252, 0.1);
}

.carousel__btn-icon--prev {
    transform: rotate(180deg);
}

.carousel__dots {
    display: flex;
    gap: 8px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--mf-border);
    cursor: pointer;
    transition: all 0.2s;
}

.carousel__dot.is-active {
    background: var(--mf-cyan);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(1, 232, 252, 0.5);
}

.portfolio-carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.portfolio-carousel__track::-webkit-scrollbar {
    display: none;
}

.portfolio-card--slide {
    flex: 0 0 min(100%, 680px);
    scroll-snap-align: center;
    margin-inline: auto;
}

.portfolio-card__blocks {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .portfolio-card__blocks {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card__block--accent {
    background: rgba(1, 232, 252, 0.06);
    border-radius: var(--radius-sm);
    padding: 14px;
    border: 1px solid rgba(1, 232, 252, 0.12);
}

/* ─── Case study stats ─── */
.case-study__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(1, 232, 252, 0.15);
}

.case-study__stat {
    text-align: center;
}

.case-study__stat--wide {
    flex: 1 1 100%;
    padding-top: 8px;
    border-top: 1px solid var(--mf-border);
}

@media (min-width: 600px) {
    .case-study__stat--wide {
        flex: 0 1 auto;
        padding-top: 0;
        border-top: none;
        padding-left: 24px;
        border-left: 1px solid var(--mf-border);
    }
}

.case-study__stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.case-study__stat-value--before {
    color: #f87171;
    text-decoration: line-through;
    opacity: 0.85;
}

.case-study__stat-value--after {
    color: var(--mf-cyan-bright);
    text-shadow: 0 0 20px rgba(1, 232, 252, 0.4);
}

.case-study__stat-label {
    display: block;
    font-size: 12px;
    color: var(--mf-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.case-study__stat-arrow {
    font-size: 24px;
    color: var(--mf-cyan);
    opacity: 0.6;
}

/* ─── City picker ─── */
.city-picker {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.city-picker__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--mf-border);
    background: var(--mf-bg-card);
    color: var(--mf-text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.city-pill .mf-icon {
    color: var(--mf-cyan);
    opacity: 0.7;
}

.city-pill:hover,
.city-pill.is-active {
    border-color: rgba(1, 232, 252, 0.4);
    color: var(--mf-text);
}

.city-pill.is-active {
    background: linear-gradient(135deg, rgba(1, 232, 252, 0.12), transparent);
    color: var(--mf-cyan-bright);
}

.city-picker__detail {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    padding: 28px 32px;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
    animation: fadeSlideIn 0.35s ease;
}

.city-picker__detail h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--mf-cyan);
}

.city-picker__detail p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mf-text-muted);
    margin: 0 0 20px;
}

.service-card--wide {
    max-width: 100%;
}

.service-card--wide p {
    line-height: 1.75;
    color: var(--mf-text-muted);
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    padding: 24px;
}

.industry-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--mf-cyan);
}

.industry-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mf-text-muted);
}

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

.tech-card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.tech-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mf-text-muted);
}

.dual-section__grid--single {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-inline: auto;
}

.process-timeline {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin-inline: auto;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    padding: 24px;
}

.process-step__num {
    font-size: 24px;
    font-weight: 700;
    color: var(--mf-cyan);
    opacity: 0.5;
    flex-shrink: 0;
    width: 40px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mf-text-muted);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius);
    padding: 28px;
}

.portfolio-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.portfolio-card__block {
    margin-bottom: 14px;
}

.portfolio-card__block strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mf-cyan);
    margin-bottom: 4px;
}

.portfolio-card__block p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mf-text-muted);
}

.case-study__card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border-glow);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 900px;
    margin-inline: auto;
}

.case-study__card h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.case-study__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.case-study__col {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.case-study__col--accent {
    border: 1px solid rgba(1, 232, 252, 0.2);
}

.case-study__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mf-cyan);
    margin-bottom: 8px;
    font-weight: 700;
}

.case-study__col p,
.case-study__footer p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mf-text-muted);
}

.case-study__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.cities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.city-card {
    background: var(--mf-bg-card);
    border: 1px solid var(--mf-border);
    border-radius: var(--radius-sm);
    padding: 24px;
}

.city-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--mf-cyan);
}

.city-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mf-text-muted);
}

.section-desc a {
    color: var(--mf-cyan);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .portfolio__grid,
    .case-study__grid,
    .case-study__footer,
    .cities__grid,
    .tech-section__grid {
        grid-template-columns: 1fr;
    }

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

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

    .industry-card__panel {
        padding-left: 18px;
    }
}

@media (max-width: 767px) {
    [data-picker],
    [data-tab-group] {
        touch-action: pan-y;
    }

    .is-mobile-carousel .industry-picker__detail:not([hidden]),
    .is-mobile-carousel .tech-picker__detail:not([hidden]),
    .is-mobile-carousel .city-picker__detail:not([hidden]),
    .is-mobile-carousel .process-stepper__panel:not([hidden]),
    .is-mobile-carousel .portfolio-showcase__stage {
        cursor: grab;
    }
}

@media (max-width: 900px) {
    .portfolio-showcase.is-mobile-carousel {
        touch-action: pan-y;
    }
}

@media (max-width: 640px) {
    .trust-bar__list {
        flex-direction: column;
        align-items: flex-start;
    }

    .industry-picker__pills,
    .tech-picker__pills,
    .city-picker__pills {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .industry-picker__pills::-webkit-scrollbar,
    .tech-picker__pills::-webkit-scrollbar,
    .city-picker__pills::-webkit-scrollbar {
        display: none;
    }

    .industry-pill,
    .tech-pill,
    .city-pill {
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .industry-picker__detail,
    .tech-picker__detail,
    .city-picker__detail {
        padding: 24px 18px;
    }

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

    .custom-select__list {
        max-height: min(280px, 45vh);
    }
}

/* ─── Maintenance page ─── */
.maint {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4.5rem) 1.25rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
}

.maint__ring {
    position: absolute;
    width: min(72vw, 560px);
    height: min(72vw, 560px);
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(1, 232, 252, 0.12);
    box-shadow: 0 0 80px rgba(1, 232, 252, 0.06), inset 0 0 60px rgba(1, 232, 252, 0.04);
    animation: maint-pulse 5.5s var(--mf-ease) infinite;
    pointer-events: none;
}

.maint__ring--delay {
    width: min(92vw, 720px);
    height: min(92vw, 720px);
    animation-delay: -2.4s;
    opacity: 0.55;
    border-color: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 90px rgba(201, 168, 76, 0.05);
}

@keyframes maint-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.55; }
    50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

.maint__shell {
    position: relative;
    width: min(920px, 100%);
    text-align: center;
}

.maint__anim {
    opacity: 0;
    transform: translateY(18px);
    animation: maint-rise 0.85s var(--mf-ease) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes maint-rise {
    to { opacity: 1; transform: translateY(0); }
}

.maint__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.maint__logo {
    width: min(220px, 58vw);
    height: auto;
    filter: drop-shadow(0 0 28px rgba(1, 232, 252, 0.22));
}

.maint__brand-name {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--mf-white);
    line-height: 1.15;
}

.maint__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--mf-border-glow);
    background: rgba(1, 232, 252, 0.06);
    color: var(--mf-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.maint__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mf-cyan);
    box-shadow: 0 0 0 0 rgba(1, 232, 252, 0.55);
    animation: maint-dot 1.8s ease-out infinite;
}

.maint__status-sep {
    opacity: 0.45;
}

@keyframes maint-dot {
    0% { box-shadow: 0 0 0 0 rgba(1, 232, 252, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(1, 232, 252, 0); }
    100% { box-shadow: 0 0 0 0 rgba(1, 232, 252, 0); }
}

.maint__title {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--mf-white);
    margin: 0 auto 1rem;
    max-width: 16ch;
}

.maint__message {
    max-width: 38rem;
    margin: 0 auto 1.75rem;
    color: var(--mf-text-muted);
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.7;
}

.maint__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.25rem;
}

.maint__form-wrap {
    text-align: left;
}

.maint__form-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(165deg, rgba(18, 23, 27, 0.92), rgba(9, 10, 11, 0.88));
    border: 1px solid var(--mf-border-glow);
    box-shadow: var(--shadow-glow), 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.maint__form-glow {
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(1, 232, 252, 0.14), transparent 70%);
    pointer-events: none;
}

.maint__form-head {
    position: relative;
    margin-bottom: 1.25rem;
}

.maint__form-head h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    color: var(--mf-white);
    margin-bottom: 0.35rem;
}

.maint__form-head p {
    color: var(--mf-text-muted);
    font-size: 0.92rem;
}

.maint__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1rem;
}

.maint__form-full {
    grid-column: 1 / -1;
}

.maint__form .field-box input,
.maint__form .field-box textarea {
    padding-left: 44px;
    background: rgba(6, 8, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.maint__form .field-box input:focus,
.maint__form .field-box textarea:focus {
    border-color: var(--mf-cyan);
    background: rgba(8, 10, 12, 0.9);
}

.maint__form .form-group {
    margin-bottom: 0.85rem;
}

.maint__form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    color: var(--mf-text-muted);
    font-size: 0.8rem;
    text-align: center;
}

.maint__form .form-alert {
    margin-top: 0.85rem;
}

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

    .maint__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .maint__title {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .maint__anim,
    .maint__ring,
    .maint__status-dot {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

/* ─── International phone field (single control) ─── */
.phone-field {
    display: block;
}

.phone-field__box {
    display: flex;
    align-items: stretch;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 8, 10, 0.7);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.phone-field__box:focus-within {
    border-color: var(--mf-cyan);
    box-shadow: 0 0 0 3px var(--mf-cyan-a10);
}

.phone-field__country {
    flex: 0 0 auto;
    width: auto;
    min-width: 5.75rem;
    max-width: 7.5rem;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238a939b'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    color: var(--mf-white);
    font-family: var(--font);
    font-size: 0.88rem;
    padding: 0 1.55rem 0 0.7rem;
    cursor: pointer;
    appearance: none;
    box-shadow: none;
}

.phone-field__country:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.phone-field__country option {
    background: var(--mf-bg-panel);
    color: var(--mf-white);
}

.phone-field__divider {
    width: 1px;
    align-self: stretch;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.phone-field__input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--mf-white);
    font-family: var(--font);
    font-size: 0.95rem;
    padding: 12px 14px !important;
}

.phone-field__input:focus {
    outline: none;
    box-shadow: none !important;
}

.form-card--premium .phone-field__input,
.maint__form .phone-field__input {
    padding-left: 14px !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* ─── Testimonials ───────────────────────────────────────────────── */
.testimonials {
    position: relative;
    overflow: clip;
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 12% auto auto -8%;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, var(--mf-cyan-a10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    inset: auto -6% 8% auto;
    width: min(360px, 48vw);
    height: min(360px, 48vw);
    border-radius: 50%;
    background: radial-gradient(circle, var(--mf-gold-a15) 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.testimonials > .container {
    position: relative;
    z-index: 1;
}

.testimonials__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 28px 40px;
    align-items: end;
    margin-bottom: 40px;
}

.testimonials__intro-copy h2 {
    margin-top: 8px;
    max-width: 16ch;
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.testimonials__intro-copy .section-desc {
    max-width: 42ch;
    margin-top: 12px;
}

.testimonials__score {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--mf-border);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(1, 232, 252, 0.08), transparent 55%),
        rgba(18, 23, 27, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.testimonials__score-value {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--mf-white);
    font-variant-numeric: tabular-nums;
}

.testimonials__score-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonials__score-label {
    font-size: 0.82rem;
    color: var(--mf-text-muted);
}

.testimonials__stars {
    display: inline-flex;
    gap: 2px;
    line-height: 1;
}

.testimonials__star {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.95rem;
}

.testimonials__star.is-on {
    color: var(--mf-gold);
    text-shadow: 0 0 18px rgba(201, 168, 76, 0.35);
}

.testimonials__stage {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
    gap: 22px;
    align-items: stretch;
}

.testimonials__spotlight {
    position: relative;
    min-height: 420px;
    padding: clamp(28px, 4vw, 44px);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--mf-border-glow);
    background:
        linear-gradient(160deg, rgba(1, 232, 252, 0.07) 0%, transparent 42%),
        linear-gradient(340deg, rgba(201, 168, 76, 0.06) 0%, transparent 38%),
        rgba(12, 16, 20, 0.92);
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.testimonials__mark {
    position: absolute;
    top: 8px;
    left: 18px;
    font-size: clamp(6rem, 14vw, 9.5rem);
    line-height: 0.75;
    color: rgba(1, 232, 252, 0.12);
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    user-select: none;
}

.testimonials__panel {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 18px;
    min-height: 340px;
    animation: testimonials-in 0.55s var(--mf-ease) both;
}

.testimonials__panel:not([hidden]) {
    display: flex;
}

.testimonials__panel[hidden] {
    display: none !important;
}

.testimonials__panel.is-switching {
    animation: testimonials-in 0.45s var(--mf-ease) both;
}

@keyframes testimonials-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials__lead {
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: var(--mf-white);
    font-weight: 700;
    max-width: 34ch;
}

.testimonials__body {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--mf-text-muted);
    max-width: 48ch;
}

.testimonials__person {
    margin-top: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials__avatar,
.testimonials__pill-avatar {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--mf-cyan);
    background: linear-gradient(145deg, rgba(1, 232, 252, 0.18), rgba(1, 232, 252, 0.04));
    border: 1px solid rgba(1, 232, 252, 0.28);
}

.testimonials__person-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testimonials__person-text strong {
    color: var(--mf-white);
    font-size: 1rem;
}

.testimonials__person-text span {
    font-size: 0.88rem;
    color: var(--mf-text-muted);
}

.testimonials__loc {
    color: rgba(138, 147, 155, 0.85);
}

.testimonials__rating {
    display: inline-flex;
    gap: 1px;
}

.testimonials__rail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 520px;
    overflow-y: auto;
    padding: 6px;
    border-radius: var(--radius);
    border: 1px solid var(--mf-border);
    background: rgba(9, 10, 11, 0.55);
    scrollbar-width: thin;
    scrollbar-color: rgba(1, 232, 252, 0.35) transparent;
}

.testimonials__rail::-webkit-scrollbar {
    width: 6px;
}

.testimonials__rail::-webkit-scrollbar-thumb {
    background: rgba(1, 232, 252, 0.3);
    border-radius: 999px;
}

.testimonials__pill {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--mf-text);
    cursor: pointer;
    transition: border-color 0.25s var(--mf-ease), background 0.25s var(--mf-ease), transform 0.25s var(--mf-ease);
}

.testimonials__pill:hover {
    background: rgba(1, 232, 252, 0.05);
    border-color: rgba(1, 232, 252, 0.15);
}

.testimonials__pill.is-active {
    background: linear-gradient(120deg, rgba(1, 232, 252, 0.12), rgba(201, 168, 76, 0.06));
    border-color: rgba(1, 232, 252, 0.35);
    box-shadow: 0 0 0 1px rgba(1, 232, 252, 0.08);
}

.testimonials__pill-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.testimonials__pill.is-active .testimonials__pill-avatar {
    color: var(--mf-bg);
    background: linear-gradient(145deg, var(--mf-cyan), var(--mf-cyan-dim));
    border-color: transparent;
}

.testimonials__pill-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testimonials__pill-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--mf-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials__pill-meta {
    font-size: 0.78rem;
    color: var(--mf-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials__pill-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(138, 147, 155, 0.7);
    font-variant-numeric: tabular-nums;
}

.testimonials__pill.is-active .testimonials__pill-num {
    color: var(--mf-cyan);
}

@media (min-width: 721px) and (max-width: 1100px) {
    .testimonials__intro {
        gap: 20px 28px;
        margin-bottom: 28px;
    }

    .testimonials__intro-copy h2 {
        max-width: 18ch;
        font-size: clamp(1.7rem, 3vw, 2.2rem);
    }

    .testimonials__stage {
        grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr);
        gap: 16px;
    }

    .testimonials__rail {
        max-height: min(440px, 62vh);
    }

    .testimonials__spotlight {
        min-height: 340px;
        padding: 26px 28px;
    }

    .testimonials__lead {
        font-size: clamp(1.12rem, 2vw, 1.35rem);
    }
}

@media (max-width: 720px) {
    .testimonials__intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
        margin-bottom: 22px;
    }

    .testimonials__intro-copy h2 {
        max-width: none;
        font-size: clamp(1.55rem, 6.5vw, 2rem);
    }

    .testimonials__intro-copy .section-desc {
        max-width: none;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .testimonials__pill {
        flex: 0 0 auto;
        width: min(210px, 76vw);
        padding: 10px 12px;
        scroll-snap-align: center;
        background: rgba(12, 16, 20, 0.9);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .testimonials__pill-name {
        font-size: 0.86rem;
    }

    .testimonials__pill-meta {
        font-size: 0.72rem;
    }

    .testimonials__pill-num {
        display: none;
    }

    .testimonials__score {
        justify-self: stretch;
        width: 100%;
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .testimonials__score-value {
        font-size: 1.85rem;
    }

    .testimonials__stage {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .testimonials__rail {
        order: -1;
        max-height: none;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding: 6px 4px 10px;
        border: 0;
        background: transparent;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 4px;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
    }

    .testimonials__spotlight {
        min-height: 0;
        padding: 20px 18px 22px;
        border-radius: 16px;
    }

    .testimonials__mark {
        top: 4px;
        left: 10px;
        font-size: clamp(3.5rem, 18vw, 5rem);
        opacity: 0.9;
    }

    .testimonials__panel {
        min-height: 0;
        gap: 14px;
    }

    .testimonials__lead {
        max-width: none;
        font-size: clamp(1.05rem, 4.4vw, 1.25rem);
        line-height: 1.4;
        padding-top: 8px;
    }

    .testimonials__body {
        max-width: none;
        font-size: 0.94rem;
        line-height: 1.65;
    }
}

/* Phone / small-tablet landscape: reuse side-by-side to fit short height */
@media (orientation: landscape) and (max-height: 500px) and (max-width: 1100px) {
    .testimonials {
        padding-block: 36px;
    }

    .testimonials__intro {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px 18px;
        margin-bottom: 14px;
    }

    .testimonials__intro-copy h2 {
        max-width: none;
        font-size: clamp(1.2rem, 3.2vh, 1.55rem);
        margin-top: 2px;
    }

    .testimonials__intro-copy .section-desc {
        display: none;
    }

    .testimonials__score {
        width: auto;
        justify-self: end;
        padding: 8px 12px;
        gap: 8px;
    }

    .testimonials__score-value {
        font-size: 1.45rem;
    }

    .testimonials__score-label {
        font-size: 0.7rem;
    }

    .testimonials__stage {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(200px, 0.75fr);
        gap: 12px;
        align-items: stretch;
    }

    .testimonials__rail {
        order: 0;
        flex-direction: column;
        max-height: min(300px, calc(100vh - 120px));
        overflow-x: hidden;
        overflow-y: auto;
        gap: 6px;
        padding: 6px;
        border: 1px solid var(--mf-border);
        background: rgba(9, 10, 11, 0.55);
        scroll-snap-type: none;
        mask-image: none;
    }

    .testimonials__pill {
        width: 100%;
        scroll-snap-align: none;
    }

    .testimonials__pill-num {
        display: inline;
        font-size: 0.65rem;
    }

    .testimonials__spotlight {
        min-height: 0;
        max-height: min(300px, calc(100vh - 120px));
        overflow: auto;
        padding: 16px 18px 18px;
    }

    .testimonials__mark {
        font-size: 3rem;
        top: 2px;
        left: 8px;
    }

    .testimonials__panel {
        gap: 10px;
        min-height: 0;
    }

    .testimonials__lead {
        font-size: 1.02rem;
        padding-top: 4px;
    }

    .testimonials__body {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .testimonials__person {
        padding-top: 10px;
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding-block: clamp(48px, 12vw, 72px);
    }

    .testimonials__person {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "avatar text"
            "avatar rating";
        column-gap: 12px;
        row-gap: 4px;
        align-items: start;
        padding-top: 14px;
    }

    .testimonials__avatar {
        grid-area: avatar;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 0.72rem;
    }

    .testimonials__person-text {
        grid-area: text;
        min-width: 0;
    }

    .testimonials__person-text strong {
        font-size: 0.95rem;
    }

    .testimonials__person-text span {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .testimonials__rating {
        grid-area: rating;
        justify-self: start;
    }

    .testimonials__star {
        font-size: 0.82rem;
    }

    .testimonials__loc {
        display: inline;
    }
}

@media (max-width: 400px) {
    .testimonials__pill {
        width: min(178px, 70vw);
    }

    .testimonials__spotlight {
        padding: 18px 14px 20px;
    }

    .testimonials__score-label {
        font-size: 0.75rem;
    }
}

.testimonials__stage.is-auto-looping .testimonials__spotlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mf-cyan), var(--mf-gold));
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0.85;
    pointer-events: none;
}

.testimonials__stage.is-auto-looping.is-progress .testimonials__spotlight::after {
    animation: testimonials-progress var(--testimonials-loop-ms, 5.5s) linear forwards;
}

@keyframes testimonials-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials__panel,
    .testimonials__panel.is-switching {
        animation: none;
    }

    .testimonials__stage.is-auto-looping .testimonials__spotlight::after,
    .testimonials__stage.is-auto-looping.is-progress .testimonials__spotlight::after {
        animation: none;
        display: none;
    }
}



