/* ============================================================
   GME VISION S.R.L. — Digital Agency
   Electric Ink aesthetic · Unbounded + Manrope + JetBrains Mono
   ============================================================ */

:root {
  --ink: #0b0b10;
  --ink-2: #12121a;
  --ink-3: #1a1a24;
  --line: rgba(242, 239, 233, 0.09);
  --cream: #f2efe9;
  --muted: #9b98a5;
  --lime: #c6f135;
  --sky: #5ac8ff;
  --coral: #ff6b4a;
  --accent: var(--lime);
  --accent-soft: rgba(198, 241, 53, 0.12);
  --radius: 20px;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

/* pages can theme themselves */
.theme-sky   { --accent: var(--sky);   --accent-soft: rgba(90, 200, 255, 0.12); }
.theme-coral { --accent: var(--coral); --accent-soft: rgba(255, 107, 74, 0.12); }

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--ink); }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

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

/* ---------- grain overlay ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: var(--accent); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--accent);
  opacity: 0.45;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}
.cursor-ring.is-hover { width: 58px; height: 58px; opacity: 0.9; }
@media (hover: none), (max-width: 820px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.05rem;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo .logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 0.8rem;
  animation: logo-pulse 4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { border-radius: 10px; transform: rotate(0deg); }
  50% { border-radius: 50%; transform: rotate(90deg); }
}
.logo span.vision { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.95rem; font-weight: 600; color: var(--muted);
  position: relative; transition: color 0.25s;
}
.nav a:hover, .nav a.is-active { color: var(--cream); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }

.nav-cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink) !important;
  font-weight: 800 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-soft); }

.burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 6px;
}
.burger span {
  display: block; height: 2px; width: 26px;
  background: var(--cream); margin-inline: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0; top: 74px;
    background: rgba(11, 11, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 30px;
    font-size: 1.4rem;
    transform: translateY(-110%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: 1.25rem; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 800; font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer; border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { box-shadow: 0 12px 40px var(--accent-soft), 0 0 0 1px var(--accent); }
.btn-ghost {
  background: transparent; color: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--accent);
  display: inline-block;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 55% 45% at 75% 15%, var(--accent-soft), transparent 65%),
    radial-gradient(ellipse 45% 40% at 12% 85%, rgba(90, 200, 255, 0.07), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
  animation: grid-drift 24s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 72px 72px, 72px 72px; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 5rem);
  font-weight: 900;
  max-width: 15ch;
  margin: 26px 0 28px;
}
.hero h1 .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero h1 .accent-word::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.12em;
  background: var(--accent);
  opacity: 0.35;
  transform-origin: left;
  animation: underline-grow 1.2s cubic-bezier(0.6, 0, 0.2, 1) 0.9s both;
}
@keyframes underline-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  max-width: 54ch; color: var(--muted); font-size: 1.12rem;
  margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 76px; padding-top: 36px;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  font-weight: 900; color: var(--cream);
  white-space: nowrap;
}
.stat .stat-num em { color: var(--accent); font-style: normal; }
.stat .stat-label {
  font-size: 0.85rem; color: var(--muted);
  font-family: var(--font-mono); letter-spacing: 0.06em;
  margin-top: 4px;
}

/* staggered load-in */
.reveal-load { opacity: 0; transform: translateY(28px); animation: load-in 0.9s cubic-bezier(0.35, 0, 0.15, 1) forwards; }
.reveal-load.d1 { animation-delay: 0.1s; }
.reveal-load.d2 { animation-delay: 0.25s; }
.reveal-load.d3 { animation-delay: 0.4s; }
.reveal-load.d4 { animation-delay: 0.55s; }
.reveal-load.d5 { animation-delay: 0.7s; }
@keyframes load-in { to { opacity: 1; transform: translateY(0); } }

/* ---------- decorative animated elements ---------- */
.deco { position: absolute; pointer-events: none; z-index: 0; }

.deco-starburst { animation: spin 22s linear infinite; }
.deco-starburst.fast { animation-duration: 12s; }
.deco-starburst.reverse { animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.deco-plus {
  font-family: var(--font-mono); font-weight: 700;
  color: var(--accent);
  animation: plus-pulse 3s ease-in-out infinite;
}
@keyframes plus-pulse {
  0%, 100% { opacity: 0.25; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.35) rotate(90deg); }
}

.deco-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: dot-float 6s ease-in-out infinite;
}
@keyframes dot-float {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(-22px); opacity: 0.35; }
}

.deco-ring {
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0.25;
  animation: ring-breathe 5s ease-in-out infinite;
}
@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.14); opacity: 0.55; }
}

.deco-orbit {
  border: 1px dashed var(--line);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.deco-orbit .sat {
  position: absolute; top: -5px; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.deco-square {
  border: 1.5px solid var(--accent);
  opacity: 0.4;
  animation: square-tumble 9s ease-in-out infinite;
}
@keyframes square-tumble {
  0%, 100% { transform: rotate(0deg) translateY(0); border-radius: 4px; }
  50% { transform: rotate(135deg) translateY(-16px); border-radius: 50%; }
}

.deco-zigzag path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: zig-draw 4s ease-in-out infinite alternate;
}
@keyframes zig-draw { to { stroke-dashoffset: 0; } }

.deco-triangle {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid var(--accent);
  opacity: 0.5;
  animation: tri-spin 7s ease-in-out infinite;
}
@keyframes tri-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
}

.deco-blob {
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.16;
  background: var(--accent);
  animation: blob-drift 14s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -50px) scale(1.25); }
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink-2);
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-inline: 26px;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 26px;
}
.marquee-track span::after { content: "✦"; color: var(--accent); font-size: 0.9rem; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 20px 0 18px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s cubic-bezier(0.35, 0, 0.15, 1), transform 0.8s cubic-bezier(0.35, 0, 0.15, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.dl-1 { transition-delay: 0.08s; }
.reveal.dl-2 { transition-delay: 0.16s; }
.reveal.dl-3 { transition-delay: 0.24s; }
.reveal.dl-4 { transition-delay: 0.32s; }

/* ---------- feature grid (why us) ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.feature-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover .icon { transform: rotate(-8deg) scale(1.12); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.price-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 42px 34px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle 260px at var(--mx, 50%) var(--my, 0%), var(--card-glow, var(--accent-soft)), transparent);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.price-card:hover::before { opacity: 1; }
.price-card:hover { transform: translateY(-8px); border-color: var(--card-accent, var(--accent)); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }

.price-card.card-starter  { --card-accent: var(--lime);  --card-glow: rgba(198,241,53,0.1); }
.price-card.card-business { --card-accent: var(--sky);   --card-glow: rgba(90,200,255,0.1); }
.price-card.card-pro      { --card-accent: var(--coral); --card-glow: rgba(255,107,74,0.1); }

.price-card .tier {
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--card-accent, var(--accent));
  display: flex; align-items: center; gap: 8px;
}
.price-card .tier .tick { width: 9px; height: 9px; border-radius: 50%; background: var(--card-accent); animation: dot-blink 2.2s ease-in-out infinite; }
@keyframes dot-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.price-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 900;
  margin: 18px 0 4px;
}
.price-card .price small { font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.price-card .for-whom { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; min-height: 3em; }

.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 34px; }
.price-card ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem; color: var(--cream);
}
.price-card ul li::before {
  content: "✓";
  color: var(--card-accent, var(--accent));
  font-weight: 800; flex-shrink: 0;
}
.price-card .meta {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--muted); margin-bottom: 26px;
}
.price-card .btn { margin-top: auto; justify-content: center; }
.price-card.is-featured {
  border-color: var(--sky);
  box-shadow: 0 0 0 1px var(--sky), 0 24px 70px rgba(90, 200, 255, 0.12);
}
.badge-popular {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--sky); color: var(--ink);
  border-radius: 999px; padding: 6px 12px; font-weight: 700;
}

/* ---------- process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  background: var(--ink-2);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.process-step:hover { border-color: var(--accent); transform: translateY(-4px); }
.process-step .num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
.process-step:hover .num { color: var(--accent); }
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testi-card:hover { transform: translateY(-6px) rotate(-0.5deg); border-color: var(--accent); }
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem; line-height: 1;
  color: var(--accent);
  margin-bottom: 14px;
}
.testi-card p.quote { font-size: 0.99rem; color: var(--cream); margin-bottom: 26px; }
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent);
}
.testi-card .who .name { font-weight: 800; font-size: 0.95rem; }
.testi-card .who .role { color: var(--muted); font-size: 0.82rem; font-family: var(--font-mono); }
.testi-card .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.85rem; }

/* ---------- big CTA ---------- */
.cta-band {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  padding: clamp(50px, 8vw, 100px) clamp(28px, 6vw, 90px);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.8rem, 4.4vw, 3.2rem); margin-bottom: 20px; }
.cta-band p { color: var(--muted); max-width: 46ch; margin: 0 auto 38px; }
.cta-band .btn { position: relative; z-index: 2; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
  background: var(--ink-2);
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--muted); font-size: 0.9rem; }
.footer-about .logo { margin-bottom: 18px; }
.footer-legal-data {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--muted); line-height: 1.9;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.85rem;
}

/* ---------- service page hero ---------- */
.svc-hero {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
}
.svc-hero .price-tag {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--accent);
}
.svc-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin: 18px 0 22px; max-width: 18ch; }
.svc-hero .hero-sub { margin-bottom: 36px; }
.svc-hero-meta {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 46px;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted);
}
.svc-hero-meta .m { display: flex; align-items: center; gap: 10px; }
.svc-hero-meta .m b { color: var(--cream); font-weight: 600; }
.svc-hero-meta .m::before { content: "▸"; color: var(--accent); }

/* included list */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 800px) { .included-grid { grid-template-columns: 1fr; } }
.included-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.included-item:hover { border-color: var(--accent); transform: translateX(6px); }
.included-item .check {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800;
}
.included-item h3 { font-size: 1rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 800; }
.included-item p { color: var(--muted); font-size: 0.9rem; }

/* timeline */
.timeline { position: relative; display: grid; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding-bottom: 44px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute; left: 29px; top: 46px; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--line));
  opacity: 0.4;
}
.timeline-item:last-child::before { display: none; }
.timeline-item .t-num {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  color: var(--accent);
  background: var(--ink);
  position: relative; z-index: 1;
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 8px; padding-top: 14px; }
.timeline-item p { color: var(--muted); font-size: 0.95rem; }

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  background: var(--ink-2);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.is-open { border-color: var(--accent); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 28px;
  background: none; border: 0; cursor: pointer;
  color: var(--cream);
  font-family: var(--font-body); font-weight: 800; font-size: 1.02rem;
  text-align: left;
}
.faq-q .fx {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 500;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.faq-item.is-open .fx { transform: rotate(45deg); background: var(--accent); color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p { padding: 0 28px 26px; color: var(--muted); font-size: 0.96rem; }

/* comparison strip on service pages */
.other-packs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .other-packs { grid-template-columns: 1fr; } }
.pack-link {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  background: var(--ink-2);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pack-link:hover { border-color: var(--accent); transform: translateY(-4px); }
.pack-link .p-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.pack-link .p-price { color: var(--accent); font-family: var(--font-mono); font-size: 0.9rem; }
.pack-link .arr { color: var(--accent); font-size: 1.3rem; transition: transform 0.3s ease; }
.pack-link:hover .arr { transform: translateX(6px); }

/* ---------- contact page ---------- */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info-list { display: grid; gap: 20px; margin-top: 40px; }
.ci-item {
  display: flex; gap: 18px; align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  background: var(--ink-2);
  transition: border-color 0.3s ease;
}
.ci-item:hover { border-color: var(--accent); }
.ci-item .ci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.ci-item .ci-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.ci-item .ci-value { font-weight: 700; font-size: 0.98rem; }

.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  position: relative; overflow: hidden;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; position: relative; }
.field label {
  display: block;
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--cream);
  font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; }
.form-note a { color: var(--accent); }

.form-success {
  display: none;
  text-align: center; padding: 40px 0;
}
.form-success.is-shown { display: block; }
.form-success .big { font-size: 3rem; margin-bottom: 16px; animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes pop-in { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- legal pages ---------- */
.legal-body { max-width: 780px; }
.legal-body h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 16px 0 14px; }
.legal-updated { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); margin-bottom: 54px; }
.legal-body h2 {
  font-size: 1.35rem; margin: 52px 0 18px;
  padding-left: 18px; position: relative;
}
.legal-body h2::before {
  content: ""; position: absolute; left: 0; top: 0.2em; bottom: 0.2em;
  width: 4px; border-radius: 4px; background: var(--accent);
}
.legal-body h3 { font-size: 1.05rem; margin: 30px 0 12px; font-family: var(--font-body); font-weight: 800; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 0.99rem; margin-bottom: 14px; }
.legal-body ul { padding-left: 22px; margin-bottom: 18px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--cream); }
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-body table {
  width: 100%; border-collapse: collapse; margin: 20px 0 30px;
  font-size: 0.9rem;
}
.legal-body th, .legal-body td {
  border: 1px solid var(--line);
  padding: 12px 14px; text-align: left;
  color: var(--muted);
}
.legal-body th { color: var(--cream); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px;
  z-index: 950;
  max-width: 520px; margin-inline: auto;
  background: var(--ink-3);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(140%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-shown { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner .cb-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 11px 22px; font-size: 0.88rem; }

/* ---------- misc ---------- */
.text-accent { color: var(--accent); }
.mt-60 { margin-top: 60px; }
.center { text-align: center; }
.section-alt { background: var(--ink-2); }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-hint::after {
  content: ""; width: 1.5px; height: 42px;
  background: linear-gradient(var(--accent), transparent);
  animation: hint-drop 1.8s ease-in-out infinite;
}
@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   HERO VISUALS — big animated SVG illustrations
   ============================================================ */
.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero-inner h1 { font-size: clamp(2.2rem, 4.4vw, 4rem); }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; overflow: visible; }
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 46px auto 0; }
}

/* base: make transforms rotate/scale around each element's own box */
.sv { transform-box: fill-box; transform-origin: center; }

.sv-float   { animation: svFloat 5.5s ease-in-out infinite; }
.sv-float-d { animation: svFloat 6.5s ease-in-out 1.4s infinite; }
.sv-float-e { animation: svFloat 7s ease-in-out 2.6s infinite; }
@keyframes svFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.sv-spin      { animation: svSpin 18s linear infinite; }
.sv-spin-slow { animation: svSpin 40s linear infinite; }
.sv-spin-rev  { animation: svSpin 24s linear infinite reverse; }
@keyframes svSpin { to { transform: rotate(360deg); } }

.sv-pulse { animation: svPulse 3s ease-in-out infinite; }
@keyframes svPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.45; } }

.sv-blink { animation: svBlink 2.4s ease-in-out infinite; }
@keyframes svBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }

/* looping line-draw */
.sv-draw { stroke-dasharray: 340; stroke-dashoffset: 340; animation: svDraw 4s ease-in-out infinite alternate; }
@keyframes svDraw { to { stroke-dashoffset: 0; } }

/* marching-ants dashed lines */
.sv-dash { stroke-dasharray: 7 9; animation: svDash 1.1s linear infinite; }
@keyframes svDash { to { stroke-dashoffset: -16; } }

/* bars growing from the bottom */
.sv-bar { transform-box: fill-box; transform-origin: center bottom; animation: svBar 2.4s ease-in-out infinite alternate; }
@keyframes svBar { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }

/* typing text lines: grow from the left */
.sv-type { transform-box: fill-box; transform-origin: left center; animation: svType 3.6s ease-in-out infinite; }
@keyframes svType { 0% { transform: scaleX(0); } 35%, 80% { transform: scaleX(1); } 100% { transform: scaleX(0); } }

/* cursor wandering + click */
.sv-cursor { animation: svCursor 6s ease-in-out infinite; }
@keyframes svCursor {
  0%, 100% { transform: translate(0, 0); }
  30%      { transform: translate(-56px, -38px); }
  38%      { transform: translate(-56px, -38px) scale(0.82); }
  46%      { transform: translate(-56px, -38px); }
  72%      { transform: translate(28px, 26px); }
  80%      { transform: translate(28px, 26px) scale(0.82); }
  88%      { transform: translate(28px, 26px); }
}

/* rocket flame flicker */
.sv-flame { transform-box: fill-box; transform-origin: center top; animation: svFlame 0.32s ease-in-out infinite alternate; }
@keyframes svFlame { from { transform: scaleY(0.65) scaleX(0.9); } to { transform: scaleY(1.2) scaleX(1.05); } }

/* gentle horizontal drift (clouds) */
.sv-drift   { animation: svDrift 9s ease-in-out infinite alternate; }
.sv-drift-d { animation: svDrift 12s ease-in-out 2s infinite alternate-reverse; }
@keyframes svDrift { from { transform: translateX(-14px); } to { transform: translateX(14px); } }

/* soft glow breathing */
.sv-glow { animation: svGlow 6s ease-in-out infinite; }
@keyframes svGlow { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.75; } }

/* radar ping ring */
.sv-ping { transform-box: fill-box; transform-origin: center; animation: svPing 2.6s cubic-bezier(0, 0, 0.3, 1) infinite; }
@keyframes svPing { 0% { transform: scale(0.5); opacity: 0.9; } 80%, 100% { transform: scale(1.9); opacity: 0; } }

/* subtle sway (hanging signs) */
.sv-sway { transform-box: fill-box; transform-origin: center top; animation: svSway 4.5s ease-in-out infinite alternate; }
@keyframes svSway { from { transform: rotate(-5deg); } to { transform: rotate(5deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }
  .reveal-load, .reveal { opacity: 1 !important; transform: none !important; }
}
