/* 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;
}

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

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 */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
    max-width: 100%;
}

.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;
    background-image:
        linear-gradient(rgba(1, 232, 252, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 232, 252, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

@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);
}

.form-card__glow {
    position: absolute;
    top: -1px; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mf-cyan), transparent);
}

.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 option { background: var(--mf-bg-panel); }

/* 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 {
    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: 260px;
    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 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 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: 64px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__brand p {
    color: var(--mf-text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 280px;
}

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

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

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

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

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

/* 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; }

/* 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) {
    :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;
    }

    .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; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }

    .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; }

    .footer { padding-top: 40px; }
    .footer__grid { padding-bottom: 32px; }

    .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);
    clip-path: inset(0 0 100% 0);
    transition: opacity 0.8s var(--mf-ease), transform 0.8s var(--mf-ease), clip-path 0.9s var(--mf-ease);
    transition-delay: var(--delay, 0s);
}

.hero-line.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 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;
}

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

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

@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--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;
}

.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;
}

.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);
    font-size: 28px;
    line-height: 64px;
    font-weight: 700;
}

.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 {
    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;
    }
}
