/* ============================================================
   Personal Asiatic — Main Styles
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  color: var(--c-body);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--c-ink); line-height: var(--lh-tight); font-weight: var(--fw-bold); }
:focus-visible { outline: 3px solid var(--c-accent-ring); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--space-section); position: relative; }
section[id], main[id] { scroll-margin-top: calc(var(--header-h) + 14px); }
.section--tint { background: var(--c-surface-2); }
.section--dark { background: var(--c-navy-900); color: var(--c-on-dark); }
.section--dark h2, .section--dark h3 { color: var(--c-white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: var(--fw-semibold);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-accent-600);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--c-accent); border-radius: 2px; }
.section--dark .eyebrow { color: var(--c-accent-300); }

.section-head { max-width: 640px; margin-bottom: var(--space-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: var(--text-3xl); letter-spacing: -0.02em; }
.section-sub { margin-top: var(--space-4); font-size: var(--text-lg); color: var(--c-muted); }
.section--dark .section-sub { color: var(--c-on-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem; border-radius: var(--r-pill);
  font-weight: var(--fw-semibold); font-size: var(--text-base); letter-spacing: -0.01em;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  will-change: transform;
}
.btn { white-space: nowrap; }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--c-accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { background: var(--c-accent-600); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,0.08); color: var(--c-white); border: 1px solid var(--c-line-dark); }
.btn--ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-line-2); }
.btn--outline:hover { border-color: var(--c-accent); color: var(--c-accent-600); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2rem; font-size: var(--text-lg); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); width: 100%; }
.header.is-scrolled { background: rgba(251, 250, 247, 0.85); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); border-color: var(--c-line); }

/* Transparent state over the dark hero — light text for contrast */
.header:not(.is-scrolled) .brand,
.header:not(.is-scrolled) .brand strong { color: #fff; }
.header:not(.is-scrolled) .nav a { color: rgba(234, 241, 248, 0.85); }
.header:not(.is-scrolled) .nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.header:not(.is-scrolled) .phone-btn { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.header:not(.is-scrolled) .phone-btn:hover { border-color: var(--c-accent-300); color: var(--c-accent-300); }
.header:not(.is-scrolled) .lang-switch { background: rgba(255, 255, 255, 0.12); }
.header:not(.is-scrolled) .lang-switch button { color: rgba(234, 241, 248, 0.85); }
.header:not(.is-scrolled) .lang-switch button.is-active { background: #fff; color: var(--c-ink); }
.header:not(.is-scrolled) .burger span,
.header:not(.is-scrolled) .burger span::before,
.header:not(.is-scrolled) .burger span::after { background: #fff; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__logo { height: 40px; width: auto; display: block; }
.header .brand__logo--dark { display: none; }
.header.is-scrolled .brand__logo--light { display: none; }
.header.is-scrolled .brand__logo--dark { display: block; }
.footer .brand__logo { height: 44px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a { padding: 0.5rem 0.85rem; border-radius: var(--r-pill); font-size: 0.95rem; font-weight: var(--fw-medium); color: var(--c-body); transition: color var(--dur), background var(--dur); }
.nav a:hover { color: var(--c-ink); background: var(--c-accent-soft); }

.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-switch { display: inline-flex; background: var(--c-surface-3); border-radius: var(--r-pill); padding: 3px; }
.lang-switch button { padding: 0.32rem 0.62rem; border-radius: var(--r-pill); font-size: 0.8rem; font-weight: var(--fw-semibold); color: var(--c-muted); transition: all var(--dur); }
.lang-switch button.is-active { background: var(--c-white); color: var(--c-ink); box-shadow: var(--shadow-sm); }
.header.is-scrolled .lang-switch { background: rgba(15,42,67,0.06); }

.phone-btn { display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; font-weight: var(--fw-semibold); color: var(--c-ink); padding: 0.55rem 0.9rem; border-radius: var(--r-pill); border: 1.5px solid var(--c-line-2); transition: all var(--dur); }
.phone-btn:hover { border-color: var(--c-accent); color: var(--c-accent-600); }
.phone-btn svg { width: 1.05em; height: 1.05em; color: var(--c-accent); }

.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; position: relative; transition: transform var(--dur), opacity var(--dur); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform var(--dur); }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: clamp(3rem, 7vw, 6rem); background: var(--c-navy-900); color: var(--c-on-dark); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero__overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  linear-gradient(180deg, rgba(10,31,51,0.74) 0%, rgba(10,31,51,0.80) 55%, rgba(10,31,51,0.93) 100%),
  radial-gradient(1100px 700px at 82% 8%, rgba(242,128,46,0.22), transparent 60%); }
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero__inner { max-width: 640px; padding-block: clamp(1rem, 3vw, 2.5rem); }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2.3vw, 3.3rem); font-weight: var(--fw-extra); letter-spacing: -0.02em; line-height: 1.1; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }

/* Hero contact form (right column) */
.hero-form { background: var(--c-white); border-radius: var(--r-xl); padding: clamp(1.4rem, 2.5vw, 2rem); box-shadow: var(--shadow-lg); }
.hero-form__title { font-size: var(--text-xl); color: var(--c-ink); letter-spacing: -0.01em; margin-bottom: 0.25rem; }
.hero-form__note { color: var(--c-muted); font-size: 0.9rem; margin-bottom: var(--space-4); }
.hero-form .field { margin-bottom: 0.7rem; }
.consent--sm { font-size: 0.78rem; margin: 0.35rem 0 var(--space-4); }
.hero h1 em { font-style: normal; color: var(--c-accent-300); position: relative; white-space: nowrap; }
.hero__lead { margin-top: var(--space-4); font-size: var(--text-lg); line-height: 1.5; color: #dbe6f0; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--space-5); }

/* ---------- Problem section ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); }
.pain { display: flex; gap: 0.9rem; align-items: flex-start; padding: var(--space-5); background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.pain__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--c-error-bg); color: var(--c-error); }
.pain__icon svg { width: 22px; height: 22px; }
.pain h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: var(--fw-semibold); color: var(--c-ink); margin-bottom: 0.2rem; }
.pain p { font-size: 0.92rem; color: var(--c-muted); line-height: 1.5; }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-5); }
.benefit { position: relative; padding: var(--space-6); border-radius: var(--r-lg); background: var(--c-white); border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease); overflow: hidden; }
.benefit::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent-300)); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-slow) var(--ease-out); }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit:hover::after { transform: scaleX(1); }
.benefit__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--c-accent-soft); color: var(--c-accent-600); margin-bottom: var(--space-4); }
.benefit__icon svg { width: 28px; height: 28px; }
.benefit h3 { font-size: var(--text-xl); letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.benefit p { color: var(--c-body); font-size: 0.96rem; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-5); counter-reset: step; position: relative; }
.step { position: relative; padding: var(--space-5); }
.step__num { counter-increment: step; font-family: var(--font-display); font-weight: var(--fw-extra); font-size: 2.4rem; line-height: 1; color: var(--c-accent); -webkit-text-stroke: 0; opacity: 0.95; }
.step__num::before { content: "0" counter(step); }
.step__bar { height: 2px; background: var(--c-line-dark); margin: var(--space-4) 0; position: relative; }
.section--dark .step__bar { background: rgba(255,255,255,0.14); }
.step__bar::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 34px; background: var(--c-accent); }
.step h3 { color: #fff; font-size: var(--text-lg); font-family: var(--font-body); font-weight: var(--fw-semibold); margin-bottom: 0.35rem; }
.step p { color: var(--c-on-dark-muted); font-size: 0.92rem; }

/* ---------- Domains (slider) ---------- */
.domains-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-6); }
.domains-head .section-head { margin-bottom: 0; }
.slider-nav { display: flex; gap: 0.6rem; flex: none; }
.slider-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--c-line-2); background: var(--c-white); color: var(--c-ink); display: grid; place-items: center; transition: all var(--dur) var(--ease); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow:hover:not(:disabled) { background: var(--c-accent); border-color: var(--c-accent); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.slider-arrow:disabled { opacity: 0.35; cursor: default; }

.domains-slider { margin-inline: calc(-1 * clamp(1.1rem, 4vw, 2rem)); padding-inline: clamp(1.1rem, 4vw, 2rem); overflow: hidden; }
.domains-track { display: flex; gap: var(--space-5); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--space-3); scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab; }
.domains-track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.domains-track.is-dragging img { pointer-events: none; }
.domains-track::-webkit-scrollbar { display: none; }
.domain-card { flex: 0 0 clamp(260px, 30%, 340px); scroll-snap-align: start; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.domain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.domain-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.domain-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.domain-card:hover .domain-card__media img { transform: scale(1.06); }
.domain-card__icon { position: absolute; left: 14px; top: 14px; width: 46px; height: 46px; border-radius: 13px; background: var(--c-accent); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 16px rgba(15,42,67,0.25); }
.domain-card__icon svg { width: 24px; height: 24px; }
.domain-card__body { padding: var(--space-5); }
.domain-card__body h3 { font-size: var(--text-lg); letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.domain-card__body p { font-size: 0.92rem; color: var(--c-muted); line-height: 1.55; }

/* ---------- Countries ---------- */
.countries { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--space-4); }
.country { text-align: center; padding: var(--space-5) var(--space-4); background: rgba(255,255,255,0.05); border: 1px solid var(--c-line-dark); border-radius: var(--r-lg); transition: transform var(--dur) var(--ease-out), background var(--dur); }
.country:hover { transform: translateY(-5px); background: rgba(255,255,255,0.09); }
.country__flag { width: 96px; height: 64px; margin: 0 auto var(--space-3); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); background: #fff; padding: 5px; }
.country__flag img, .country__flag svg { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 5px; }
.country h3 { color: #fff; font-size: var(--text-lg); font-family: var(--font-body); font-weight: var(--fw-semibold); }
.country p { color: var(--c-on-dark-muted); font-size: 0.85rem; margin-top: 0.15rem; }

/* ---------- Logo slider (marquee) ---------- */
.logos-band { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--c-white); border-block: 1px solid var(--c-line); }
.logos-band__head { text-align: center; margin-bottom: var(--space-6); }
.logos-band__head h2 { font-size: var(--text-2xl); }
.logos-band__head p { color: var(--c-muted); margin-top: 0.4rem; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: clamp(2rem, 5vw, 4rem); width: max-content; padding-left: clamp(2rem, 5vw, 4rem); animation: marquee 55s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: none; height: 96px; display: grid; place-items: center; }
.marquee__item img { max-height: 96px; max-width: 230px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.68; transition: filter var(--dur), opacity var(--dur); }
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Guarantees ---------- */
.guarantees { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-5); }
.guarantee { display: flex; gap: 1rem; padding: var(--space-5); background: var(--c-white); border-radius: var(--r-lg); border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); }
.guarantee__icon { flex: none; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--c-success-bg); color: var(--c-success); }
.guarantee__icon svg { width: 26px; height: 26px; }
.guarantee h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: var(--fw-semibold); color: var(--c-ink); margin-bottom: 0.25rem; }
.guarantee p { font-size: 0.92rem; color: var(--c-muted); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-5); text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: var(--fw-extra); font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); line-height: 1; color: var(--c-accent-300); letter-spacing: -0.02em; }
.section--dark .stat__num { color: var(--c-accent-300); }
.stat__label { margin-top: 0.6rem; color: var(--c-on-dark-muted); font-weight: var(--fw-medium); }

/* ---------- Contact / Form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-aside h2 { font-size: var(--text-2xl); letter-spacing: -0.02em; }
.contact-aside > p { color: var(--c-muted); margin-top: var(--space-4); font-size: var(--text-lg); }
.contact-cards { display: grid; gap: var(--space-4); margin-top: var(--space-6); }
.contact-card { display: flex; align-items: center; gap: 1rem; padding: var(--space-5); background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease-out); }
.contact-card:hover { transform: translateX(4px); }
.contact-card__icon { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--c-accent-soft); color: var(--c-accent-600); }
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card small { display: block; color: var(--c-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card > div { min-width: 0; }
.contact-card strong { font-size: 1.05rem; color: var(--c-ink); font-weight: var(--fw-semibold); overflow-wrap: anywhere; word-break: break-word; }
.contact-map { margin-top: var(--space-5); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); line-height: 0; }
.contact-map iframe { width: 100%; height: 240px; border: 0; }

.form-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); position: relative; }
.form-card__title { font-size: var(--text-xl); margin-bottom: 0.3rem; }
.form-card__note { color: var(--c-muted); font-size: 0.92rem; margin-bottom: var(--space-5); }
.field { margin-bottom: var(--space-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field label { display: block; font-size: 0.88rem; font-weight: var(--fw-semibold); color: var(--c-ink); margin-bottom: 0.4rem; }
.field label .req { color: var(--c-accent-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.95rem; background: var(--c-surface); border: 1.5px solid var(--c-line-2); border-radius: var(--r-sm);
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur); color: var(--c-ink);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa7b3; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 4px var(--c-accent-soft); }
.field input:user-invalid { border-color: var(--c-error); }

.field-legend { font-size: 0.88rem; font-weight: var(--fw-semibold); color: var(--c-ink); margin-bottom: 0.7rem; text-align: left; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); justify-items: start; gap: 0.15rem 0.9rem; }
.check { display: flex !important; align-items: center; gap: 0.3rem; font-size: 0.88rem; color: var(--c-body); cursor: pointer; padding: 0.15rem 0; }
.check input { width: 18px; height: 18px; accent-color: var(--c-accent); flex: none; cursor: pointer; }

.consent { display: flex; gap: 0.65rem; align-items: flex-start; margin: var(--space-4) 0 var(--space-5); font-size: 0.84rem; color: var(--c-muted); line-height: 1.45; }
.consent input { width: 20px; height: 20px; accent-color: var(--c-accent); flex: none; margin-top: 1px; cursor: pointer; }
.consent__text { flex: 1; min-width: 0; }
.consent__text a { white-space: normal; }
.consent a { color: var(--c-accent-600); text-decoration: underline; text-underline-offset: 2px; }

.form-status { display: none; padding: 0.85rem 1rem; border-radius: var(--r-sm); font-size: 0.9rem; font-weight: var(--fw-medium); margin-bottom: var(--space-4); }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--c-success-bg); color: var(--c-success); }
.form-status--err { background: var(--c-error-bg); color: var(--c-error); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.btn.is-loading { opacity: 0.75; pointer-events: none; }
.btn.is-loading .btn__label { visibility: hidden; }
.spinner { position: absolute; width: 20px; height: 20px; border: 2.5px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */
.footer { background: var(--c-navy-900); color: var(--c-on-dark-muted); padding-block: var(--space-8) var(--space-6); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid var(--c-line-dark); }
.footer__brand .brand { color: #fff; }
.footer__brand p { margin-top: var(--space-4); max-width: 320px; font-size: 0.95rem; }
.footer__contact { margin-top: var(--space-5); display: grid; gap: 0.5rem; }
.footer__contact a { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--c-on-dark); font-weight: var(--fw-medium); }
.footer__contact a:hover { color: var(--c-accent-300); }
.footer__contact svg { width: 18px; height: 18px; color: var(--c-accent-300); }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-4); }
.footer__links { display: grid; gap: 0.6rem; }
.footer__links a { font-size: 0.95rem; transition: color var(--dur); }
.footer__links a:hover { color: var(--c-accent-300); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); padding-top: var(--space-5); font-size: 0.85rem; }
.footer__bottom a:hover { color: var(--c-accent-300); }

/* ---------- Cookie banner ---------- */
.cookie { position: fixed; left: 1rem; right: auto; bottom: 1rem; top: auto; z-index: 200; max-width: min(420px, calc(100vw - 92px)); background: var(--c-white); border: 1px solid var(--c-line-2); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: var(--space-5); transform: translateY(160%); transition: transform var(--dur-slow) var(--ease-out); }
.cookie.is-visible { transform: translateY(0); }
.cookie h4 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: var(--fw-bold); color: var(--c-ink); margin-bottom: 0.4rem; }
.cookie p { font-size: 0.86rem; color: var(--c-muted); margin-bottom: var(--space-4); }
.cookie p a { color: var(--c-accent-600); text-decoration: underline; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie__actions .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; flex: 1 1 auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Mobile nav + responsive ---------- */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-form { max-width: 520px; }
}
@media (max-width: 820px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: rgba(251,250,247,0.98); backdrop-filter: blur(14px); padding: var(--space-4) clamp(1.1rem,4vw,2rem) var(--space-6);
    border-bottom: 1px solid var(--c-line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform var(--dur) var(--ease-out), opacity var(--dur);
  }
  body.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .header__actions .phone-btn span { display: none; }
  .header__actions .btn--primary { display: none; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 100%; }
  .cookie__actions { flex-direction: column; }
}

/* ---------- Split media / content sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: stretch; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--c-surface-3); min-height: 260px; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split .section-head { margin-bottom: var(--space-5); }
.benefits--2 { grid-template-columns: 1fr 1fr; }
.guarantees--col { grid-template-columns: 1fr; }
.problem-grid--2 { grid-template-columns: 1fr 1fr; }

/* ---------- Section background image ---------- */
.section--bg { position: relative; overflow: hidden; }
.section--bg > .section-bg { position: absolute; inset: 0; z-index: 0; }
.section--bg > .section-bg img { width: 100%; height: 100%; object-fit: cover; }
.section--bg > .section-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(10,31,51,0.90), rgba(10,31,51,0.94)); }
.section--bg > .container { position: relative; z-index: 1; }

/* ---------- Floating social buttons ---------- */
.social-fab { position: fixed; right: 16px; bottom: 16px; z-index: 150; display: flex; flex-direction: column; gap: 12px; }
.social-fab .fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform var(--dur) var(--ease-spring); }
.social-fab .fab svg { width: 27px; height: 27px; }
.social-fab .fab:hover { transform: scale(1.12); }
.social-fab .fab--wa { background: #25D366; }
.social-fab .fab--vb { background: #7360F2; }
.social-fab .fab--tg { background: #26A5E4; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--space-6); }
  .split__media, .split__media img { min-height: 230px; }
  .split__media { order: -1; }
}
@media (max-width: 560px) {
  .benefits--2, .problem-grid--2 { grid-template-columns: 1fr; }
  .social-fab .fab { width: 48px; height: 48px; }
  .social-fab .fab svg { width: 24px; height: 24px; }
}

/* ---------- Language dropdown (mobile) ---------- */
.lang-select { display: none; appearance: none; -webkit-appearance: none; border-radius: var(--r-pill); padding: 0.42rem 0.7rem; font-weight: var(--fw-semibold); font-size: 0.85rem; background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.28); cursor: pointer; }
.lang-select option { color: #0f2a43; }
.header.is-scrolled .lang-select { background: var(--c-surface-3); color: var(--c-ink); border-color: var(--c-line-2); }

/* ---------- Compact section (stats) ---------- */
.section--compact { padding-block: clamp(2.5rem, 4vw, 4.5rem); }

/* ---------- Mobile refinements ---------- */
@media (max-width: 820px) {
  .lang-switch { display: none; }
  .lang-select { display: inline-block; }
  /* mobile nav panel is light -> force dark links even when header is transparent */
  .nav a { color: var(--c-body) !important; }
  .nav a:hover { color: var(--c-ink) !important; background: var(--c-accent-soft); }
  .brand__logo { height: 30px; }
  .header__inner { gap: var(--space-3); }
  .header__actions { gap: 0.5rem; }
}
@media (max-width: 720px) {
  .domains-head { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
}
