/* =============================================================
   1. Tokens
   ============================================================= */
@property --mx { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --my { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  --bg:        #090d16;
  --bg-2:      #0d1220;
  --bg-3:      #131a2c;
  --bg-4:      #1a2338;
  --ink:       #f4f6fb;
  --ink-soft:  rgba(244,246,251,0.76);
  --ink-mute:  rgba(244,246,251,0.5);
  --ink-dim:   rgba(244,246,251,0.3);
  --accent:    #2f7bff;
  --accent-2:  #6ea8ff;
  --accent-soft: rgba(47,123,255,0.14);
  --violet:    #7c5cff;
  --cyan:      #22d3ee;
  --line:      rgba(244,246,251,0.1);
  --line-soft: rgba(244,246,251,0.06);
  --ok:        #34d399;

  --serif: "Space Grotesk", "Inter", system-ui, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-family: var(--serif); font-weight: 600; }
ul { list-style: none; padding: 0; }
input, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section { position: relative; padding-block: clamp(4rem, 9vw, 8rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: .9rem; }
.section-sub { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.15rem); max-width: 56ch; }
.section-head.is-center .section-sub { margin-inline: auto; }

.eyebrow-line { display: flex; align-items: center; gap: .75rem; color: var(--ink-mute); font-size: .85rem; }
.eyebrow-line::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* =============================================================
   4. Components — buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  white-space: nowrap;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.btn:active { transition-duration: .12s; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #3f63d6);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(47,123,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(47,123,255,0.45); }

.btn-ghost {
  background: rgba(244,246,251,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(244,246,251,0.08); border-color: rgba(244,246,251,0.2); }

.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }

/* magnetic wrapper */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   5. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(9,13,22,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .75rem;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand small { display: block; font-family: var(--mono); font-weight: 400; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
@media (max-width: 539px) { .brand small { display: none; } }

.nav-links { display: none; align-items: center; gap: 1.75rem; white-space: nowrap; }
@media (min-width: 1280px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .89rem; color: var(--ink-soft); padding: .25rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent-2);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-actions .btn { padding: .7rem 1.25rem; font-size: .88rem; white-space: nowrap; }
.nav-actions .btn-ghost { display: none; }
@media (min-width: 1280px) { .nav-actions .btn-ghost { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(244,246,251,0.04);
  flex-shrink: 0;
}
@media (min-width: 1280px) { .nav-burger { display: none; } }
.nav-burger span { position: relative; width: 16px; height: 1.4px; background: var(--ink); display: block; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 16px; height: 1.4px; background: var(--ink); transition: transform .3s; }
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile a { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.nav-mobile .btn { margin-top: 1rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 4rem;
  overflow: clip;
  isolation: isolate;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle 620px at var(--mx, 62%) var(--my, 38%), rgba(47,123,255,0.22) 0%, transparent 60%),
    radial-gradient(circle 720px at calc(var(--mx, 62%) - 26%) calc(var(--my, 38%) + 28%), rgba(124,92,255,0.13) 0%, transparent 60%),
    radial-gradient(circle 560px at calc(var(--mx, 62%) + 18%) calc(var(--my, 38%) - 22%), rgba(34,211,238,0.08) 0%, transparent 60%),
    var(--bg);
  filter: blur(60px) saturate(115%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .22;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
}
.hero-inner { max-width: 880px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem .9rem; border-radius: 999px;
  background: rgba(47,123,255,0.1); border: 1px solid rgba(47,123,255,0.28);
  font-size: .82rem; color: var(--accent-2);
  margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(52,211,153,0.25); }

.hero-title {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  max-width: 20ch;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: normal; background: linear-gradient(135deg, var(--accent-2), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); max-width: 58ch; margin-bottom: 2.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; }
.hero-trust-item { display: flex; align-items: center; gap: .55rem; font-size: .86rem; color: var(--ink-mute); }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--ok); flex-shrink: 0; }

/* =============================================================
   7. Reveal / reduced-motion-safe animation primitives
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   8. Problem section
   ============================================================= */
.problem-grid {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 12px 28px -18px rgba(0,0,0,0.5);
}
.problem-card .num { font-family: var(--mono); color: var(--accent-2); font-size: .82rem; margin-bottom: 1rem; display: block; }
.problem-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.problem-card p { color: var(--ink-mute); font-size: .93rem; }

/* =============================================================
   9. Features grid
   ============================================================= */
.features-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 12px 28px -18px rgba(0,0,0,0.5);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .3s, background .3s, box-shadow .3s;
}
.feature-card:hover { border-color: rgba(47,123,255,0.3); background: var(--bg-4); box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 20px 36px -18px rgba(47,123,255,0.18); transition-duration: .15s; }
.feature-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(47,123,255,0.18), rgba(124,92,255,0.14));
  border: 1px solid rgba(47,123,255,0.25);
  color: var(--accent-2);
  margin-bottom: 1.1rem;
  transform: translateZ(30px);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 1.02rem; margin-bottom: .5rem; transform: translateZ(20px); }
.feature-card p { color: var(--ink-mute); font-size: .87rem; transform: translateZ(20px); }

/* =============================================================
   10. Profiles (gestor vs técnico)
   ============================================================= */
.profiles-grid {
  display: grid; gap: 1.25rem; grid-template-columns: 1fr;
}
@media (min-width: 820px) { .profiles-grid { grid-template-columns: repeat(2, 1fr); } }

.profile-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 16px 36px -24px rgba(0,0,0,0.55);
}
.profile-card.is-accent { border-color: rgba(47,123,255,0.3); box-shadow: 0 20px 45px -28px rgba(47,123,255,0.3); }
.profile-tag {
  position: absolute; top: -13px; left: clamp(1.6rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, var(--accent), #3f63d6);
  color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  padding: .35rem .85rem; border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(47,123,255,0.55);
}
.profile-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.profile-name { font-size: 1.3rem; }
.profile-price { text-align: right; }
.profile-price .amount { font-family: var(--mono); font-size: 1.6rem; color: var(--accent-2); }
.profile-price .unit { font-size: .78rem; color: var(--ink-mute); display: block; }
.profile-desc { color: var(--ink-soft); margin-bottom: 1.4rem; font-size: .95rem; }
.profile-points { display: flex; flex-direction: column; gap: .7rem; }
.profile-points li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--ink-soft); }
.profile-points svg { width: 17px; height: 17px; color: var(--ok); flex-shrink: 0; margin-top: .15rem; }

/* =============================================================
   11. Sectors marquee / strip
   ============================================================= */
.sectors-strip {
  display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .sectors-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .sectors-strip { grid-template-columns: repeat(6, 1fr); } }
.sector-chip {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  text-align: center;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.4rem 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 10px 22px -16px rgba(0,0,0,0.5);
  transition: transform .4s var(--ease-soft), border-color .3s, box-shadow .3s;
}
.sector-chip:hover { transform: translateY(-4px); border-color: rgba(47,123,255,0.3); }
.sector-chip svg { width: 26px; height: 26px; color: var(--accent-2); }
.sector-chip span { font-size: .82rem; color: var(--ink-soft); line-height: 1.3; }

/* =============================================================
   12. Pricing
   ============================================================= */
.pricing-base {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .pricing-base { grid-template-columns: repeat(3, 1fr); } }
.pricing-base-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 12px 28px -18px rgba(0,0,0,0.5);
}
.pricing-base-card .label { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: .7rem; display: block; }
.pricing-base-card .value { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.pricing-base-card .value span { font-size: 1rem; color: var(--ink-mute); font-family: var(--sans); }
.pricing-base-card p { color: var(--ink-mute); font-size: .85rem; margin-top: .5rem; }

.calc-panel {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 24px 50px -30px rgba(0,0,0,0.6);
  display: grid; gap: 2.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .calc-panel { grid-template-columns: 1.1fr .9fr; align-items: center; } }

.calc-controls { display: flex; flex-direction: column; gap: 1.5rem; }
.calc-row { display: flex; flex-direction: column; gap: .6rem; }
.calc-row-head { display: flex; align-items: center; justify-content: space-between; font-size: .92rem; }
.calc-row-head strong { color: var(--ink); }
.calc-row-head .calc-count { font-family: var(--mono); color: var(--accent-2); font-size: 1.05rem; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 999px;
  background: var(--line);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  cursor: pointer; border: none;
}

.calc-result { text-align: center; padding: 1.6rem; background: rgba(9,13,22,0.5); border-radius: 18px; border: 1px solid var(--line); }
.calc-result .calc-label { font-family: var(--mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); }
.calc-result .calc-total { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.2rem); margin-block: .4rem; }
.calc-result .calc-total span { font-size: 1.1rem; color: var(--ink-mute); font-family: var(--sans); }
.calc-result .calc-breakdown { font-size: .8rem; color: var(--ink-mute); font-family: var(--mono); }

.pricing-note {
  margin-top: 1.5rem; font-size: .85rem; color: var(--ink-mute);
  display: flex; align-items: center; gap: .6rem;
}
.pricing-note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent-2); }

/* =============================================================
   13. Trust
   ============================================================= */
.trust-grid {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card { padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-3); box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 12px 28px -18px rgba(0,0,0,0.5); }
.trust-card svg { width: 24px; height: 24px; color: var(--ok); margin-bottom: .9rem; }
.trust-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.trust-card p { font-size: .85rem; color: var(--ink-mute); }

/* =============================================================
   14. Team / office photos
   ============================================================= */
.team-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px; } }
.team-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .55s; }
.team-photo:hover img { transform: scale(1.08); filter: saturate(1.12) brightness(1.04); }
@media (min-width: 720px) {
  .team-photo:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .team-photo:nth-child(2) { grid-column: span 2; }
  .team-photo:nth-child(3) { grid-column: span 1; }
  .team-photo:nth-child(4) { grid-column: span 1; }
  .team-photo:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 719px) { .team-photo { aspect-ratio: 4/3; } }

/* =============================================================
   15. Final CTA
   ============================================================= */
.cta-final {
  position: relative;
  border-radius: 28px;
  overflow: clip;
  isolation: isolate;
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  border: 1px solid rgba(47,123,255,0.25);
}
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 90% at 20% 0%, rgba(47,123,255,0.18), transparent 65%),
    radial-gradient(60% 90% at 90% 100%, rgba(124,92,255,0.12), transparent 65%),
    var(--bg-3);
}
.cta-final h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 24ch; margin-inline: auto; margin-bottom: 1.2rem; }
.cta-final p { color: var(--ink-soft); max-width: 52ch; margin-inline: auto; margin-bottom: 2.2rem; }
.cta-final-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Contact form */
.contact-form {
  max-width: 560px; margin-inline: auto; margin-top: 2.5rem;
  display: grid; gap: 1rem;
  text-align: left;
}
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(244,246,251,0.04); color: var(--ink);
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field label { display: block; font-size: .8rem; color: var(--ink-mute); margin-bottom: .4rem; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.cta-submit { position: relative; width: 100%; }
.cta-submit .btn { width: 100%; }
.form-status { font-size: .85rem; margin-top: .8rem; color: var(--ok); display: none; text-align: center; }
.form-status.is-visible { display: block; }
.form-status.is-error { color: #ff6b6b; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 2.5rem; }
.footer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; }
.footer-brand img { width: 24px; height: 24px; border-radius: 6px; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; color: var(--ink-mute); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: .8rem; color: var(--ink-dim); width: 100%; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); margin-top: .5rem; }

/* =============================================================
   17. Scroll progress
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

/* =============================================================
   18. Responsive helpers
   ============================================================= */
@media (max-width: 719px) {
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* =============================================================
   19. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-badge .dot { animation: none; }
  [data-reveal] { transition-duration: .25s; }
}
