:root {
  --black: #070707;
  --black-2: #111111;
  --white: #ffffff;
  --muted: #606060;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --yellow: #f4b400;
  --yellow-2: #ffc928;
  --gold: #d89d00;
  --radius: 22px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: var(--black);
}
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.88;
}
.brand-shield {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #050505;
}
.brand-shield svg { width: 100%; height: 100%; }
.brand-shield.small { width: 44px; height: 44px; color: #fff; }
.brand-text { font-size: 28px; display: grid; }
.brand-text strong { color: var(--yellow); font-size: 28px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  font-weight: 800;
  font-size: 15px;
}
.nav a { position: relative; padding: 10px 0; }
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateX(-50%);
}
.login-btn {
  min-width: 112px;
  padding: 15px 28px;
  border: 2px solid var(--black);
  border-radius: 14px;
  font-weight: 900;
  text-align: center;
}
.login-btn:hover { background: var(--black); color: #fff; }

.hero {
  width: min(1180px, calc(100% - 48px));
  margin: 8px auto 0;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(244, 180, 0, 0.14), transparent 30%),
    radial-gradient(circle at 15% 12%, rgba(0, 0, 0, 0.035), transparent 24%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-top: 28px; }
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
h1 {
  margin: 0;
  font-size: clamp(62px, 7vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  font-weight: 1000;
}
h1 span { color: var(--yellow); }
.hero-copy {
  max-width: 545px;
  margin: 34px 0 0;
  font-size: 19px;
  line-height: 1.8;
  color: #1d1d1d;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 42px;
}
.btn {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  border-radius: 13px;
  font-weight: 950;
  transition: 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow-2), var(--yellow));
  box-shadow: 0 18px 38px rgba(244, 180, 0, 0.24);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { border: 1.7px solid var(--black); background: #fff; }
.btn-secondary:hover { background: var(--black); color: #fff; }
.arrow { font-size: 24px; }
.btn-icon {
  display: inline-flex;
  color: currentColor;
}
.btn-icon svg { display: block; }
.privacy-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}
.note-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 1000;
  font-size: 22px;
}
.privacy-note strong { font-size: 18px; }
.privacy-note p { margin: 5px 0 0; color: var(--muted); }

.hero-art {
  position: relative;
  min-height: 630px;
  display: grid;
  align-items: end;
  justify-items: center;
}
.hero-art img {
  width: min(610px, 112%);
  max-width: none;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.18));
}
.map-dots {
  position: absolute;
  inset: 42px 0 74px 0;
  background:
    radial-gradient(circle, rgba(0,0,0,.12) 1.4px, transparent 1.7px) 0 0/13px 13px;
  mask-image: radial-gradient(ellipse at center, #000 0 52%, transparent 72%);
  opacity: 0.7;
}
.map-dots::after {
  content: "";
  position: absolute;
  inset: 12% 4% 8% 8%;
  border: 2px solid rgba(244,180,0,.25);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
}
.floating-card {
  position: absolute;
  right: 0;
  bottom: 145px;
  z-index: 3;
  width: 210px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(145deg, #1b1b1b, #070707);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.floating-card span { color: var(--yellow); font-size: 28px; }
.floating-card strong { color: var(--yellow); text-transform: uppercase; font-size: 13px; }
.floating-card p { margin: 4px 0 0; font-size: 13px; color: #ddd; }

.features-section {
  background: radial-gradient(circle at 50% 0, #171717, #090909 58%);
  color: #fff;
  padding: 48px 0 70px;
}
.features-section h2,
.pricing-section h2,
.how-section h2 {
  text-align: center;
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  font-weight: 1000;
}
.features-section h2 span,
.pricing-section h2 span { color: var(--yellow); }
.features-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.feature-card {
  min-height: 220px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  text-align: center;
}
.feature-icon {
  display: block;
  color: var(--yellow);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 900;
}
.feature-card h3 {
  margin: 0;
  font-size: 19px;
  text-transform: uppercase;
}
.feature-card p {
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin: 14px 0 0;
}

.pricing-section {
  padding: 66px 0 56px;
  background: #fff;
}
.plan-card {
  width: min(690px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 0.9fr 1px 1fr;
  gap: 32px;
  align-items: center;
  background: radial-gradient(circle at 16% 12%, #222, #070707 58%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 52px rgba(0,0,0,.28);
}
.plan-label {
  margin: 0;
  font-size: 31px;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}
.plan-subtitle { margin: 12px 0 20px; color: #fff; font-weight: 700; }
.price {
  font-size: 45px;
  font-weight: 1000;
  color: var(--yellow);
  line-height: 1;
}
.price span { font-size: 23px; }
.price small { font-size: 15px; color: #fff; font-weight: 700; }
.euro-note { margin: 8px 0 0; color: rgba(255,255,255,.75); }
.plan-divider { height: 150px; background: var(--line); }
.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.plan-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.35;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 1000;
}
.btn-plan {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--yellow-2), var(--yellow));
  color: #000;
  width: 100%;
  min-height: 62px;
  border: none;
  cursor: pointer;
  font: inherit;
}
.cancel-note {
  text-align: center;
  color: #222;
  margin: 22px 0 0;
  font-size: 17px;
}

.how-section {
  border-top: 1px solid var(--line-dark);
  padding: 48px 0 62px;
  background: linear-gradient(180deg, #fff, #f7f7f7);
}
.steps {
  width: min(1050px, calc(100% - 48px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  width: 36px;
  border-top: 3px dotted var(--yellow);
}
.step-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  font-size: 32px;
  font-weight: 1000;
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  font-weight: 1000;
  margin-right: 8px;
}
.step h3 {
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  font-size: 17px;
}
.step p { margin: 8px 0 0; line-height: 1.55; color: var(--muted); }

.footer {
  background: radial-gradient(circle at 50% 0, #1a1a1a, #070707 58%);
  color: #fff;
}
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 145px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.footer-brand p { margin: 12px 0 0 58px; color: rgba(255,255,255,.72); }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: .9;
  font-size: 23px;
}
.powered { justify-self: end; display: flex; align-items: center; gap: 14px; }
.powered span { color: rgba(255,255,255,.64); }
.powered strong { font-size: 30px; letter-spacing: -0.04em; }
.powered strong::before {
  content: "✣";
  color: var(--yellow);
  margin-right: 8px;
}
.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 70px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 980px) {
  .site-header { height: auto; padding: 22px 0; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; gap: 26px; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 30px; }
  .hero-art { min-height: 480px; order: -1; }
  .hero-art img { width: min(520px, 100%); }
  .floating-card { right: 18px; bottom: 72px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card { grid-template-columns: 1fr; }
  .plan-divider { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 600px; }
  .step:not(:last-child)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 34px 0; text-align: center; }
  .footer-brand p { margin-left: 0; }
  .brand-footer { justify-content: center; }
  .footer-social, .powered { justify-self: center; }
  .footer-bottom { flex-wrap: wrap; padding: 22px 0; gap: 16px; }
}

@media (max-width: 620px) {
  .site-header, .hero, .features-grid, .steps, .footer-inner, .footer-bottom { width: min(100% - 28px, 1180px); }
  .brand-text, .brand-text strong { font-size: 23px; }
  .brand-shield { width: 44px; height: 44px; }
  .login-btn { padding: 12px 18px; min-width: auto; }
  .nav { gap: 18px; font-size: 14px; }
  h1 { font-size: 50px; }
  .hero-copy { font-size: 16px; line-height: 1.7; }
  .btn { width: 100%; }
  .hero-art { min-height: 390px; }
  .floating-card { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .plan-card { width: min(100% - 28px, 690px); padding: 30px 24px; }
  .price { font-size: 38px; }
  .step { grid-template-columns: 62px 1fr; }
  .step-icon { width: 62px; height: 62px; font-size: 26px; }
}
