@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300..900&family=Poppins:wght@400..900&display=swap");

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:   #0b5cff;
  --orange: #ff7a18;
  --bg:     #070a12;
  --card:   #0e1424;
  --line:   rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 20px;

  --font-body:    "Figtree", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;

  --fs-text:         #ffffff;
  --fs-muted:        rgba(255,255,255,.72);
  --fs-input-bg:     rgba(255,255,255,.04);
  --fs-input-border: rgba(255,255,255,.14);
  --fs-focus:        rgba(11,92,255,.70);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, input, textarea, button { max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(11,92,255,.25), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(255,122,24,.18), transparent 55%),
    linear-gradient(180deg, #05070e, var(--bg));
  color: #fff;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ──────────────────────────────────────────────── */
.top {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid var(--line);
}
.top-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: flex; gap: 12px; align-items: center; }
.logo {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 900;
  color: #0b1220;
  font-family: var(--font-display);
}
.brand-text strong { display: block; font-weight: 900; letter-spacing: .2px; font-family: var(--font-display); }
.brand-text span   { display: block; font-size: 13px; color: rgba(255,255,255,.75); }

/* ── HERO ────────────────────────────────────────────────── */
.hero { padding: 64px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }

h1 {
  font-family: var(--font-display);
  font-size: 48px; line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -.6px; font-weight: 900;
}
.lead { margin: 0 0 18px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.5; max-width: 56ch; }

.price-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(14,20,36,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 18px 0;
}
.kicker { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; }
.price  { margin: 6px 0 4px; font-size: 34px; font-weight: 900; font-family: var(--font-display); }
.fine   { margin: 0; font-size: 13px; color: rgba(255,255,255,.70); }
.badge {
  text-align: right; padding: 10px 12px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(11,92,255,.28), rgba(255,122,24,.20));
  border: 1px solid rgba(255,255,255,.14);
}
.badge span  { display: block; font-weight: 900; font-family: var(--font-display); }
.badge small { display: block; color: rgba(255,255,255,.70); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0 10px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 14px;
  font-weight: 900; letter-spacing: .2px;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer; user-select: none;
  font-family: var(--font-display);
  transition: opacity .2s, transform .2s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--orange)); color: #0b1220; }
.btn-outline  { border-color: rgba(255,255,255,.22); color: #fff; background: transparent; }
.btn-ghost    { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.88); background: rgba(255,255,255,.04); }

/* ── HERO CARD ───────────────────────────────────────────── */
.hero-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(14,20,36,.75);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-inner  { display: flex; flex-direction: column; height: 100%; }
.img-wrap    { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-meta   { padding: 16px; }
.card-title  { margin: 0; font-weight: 900; font-size: 18px; font-family: var(--font-display); }
.card-sub    { margin: 6px 0 12px; color: rgba(255,255,255,.75); }
.chips       { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12px; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
}

.bullets { margin: 16px 0 0; padding-left: 18px; color: rgba(255,255,255,.82); }
.bullets li { margin: 8px 0; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { padding: 40px 0 70px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }

h2 { font-family: var(--font-display); font-size: 34px; margin: 0 0 10px; font-weight: 900; letter-spacing: -.4px; }

.info         { margin-top: 18px; display: grid; gap: 12px; }
.info-item    { display: flex; gap: 12px; align-items: flex-start; }
.dot {
  width: 10px; height: 10px; border-radius: 999px; margin-top: 6px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

/* ── FORM ────────────────────────────────────────────────── */
.fs-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14,20,36,.75);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  row-gap: 14px;
}
.fs-field   { display: flex; flex-direction: column; row-gap: 8px; }
.fs-label   { font-family: var(--font-display); font-weight: 900; font-size: 14px; color: var(--fs-text); }
.fs-input,
.fs-textarea {
  width: 100%; border-radius: 14px;
  border: 1px solid var(--fs-input-border);
  background: var(--fs-input-bg);
  color: var(--fs-text); outline: none;
  padding: 12px; font-size: 15px;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.fs-input          { height: 46px; }
.fs-input:focus,
.fs-textarea:focus { border-color: var(--fs-focus); }
.fs-textarea       { border-radius: 14px; resize: vertical; }

/* ── CONSENT CHECKBOX ────────────────────────────────────── */
.fs-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--fs-muted); line-height: 1.5;
}
.fs-consent input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--blue); flex-shrink: 0; cursor: pointer;
}
.fs-consent a { color: rgba(11,92,255,.9); text-decoration: underline; }
.fs-consent a:hover { color: var(--orange); }

.fs-button-group { display: flex; justify-content: flex-end; }
.fs-button {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 9999px; color: #0b1220;
  cursor: pointer; font-size: 16px; font-weight: 900;
  padding: 12px 18px; font-family: var(--font-display); border: none;
  transition: opacity .2s, transform .2s;
}
.fs-button:hover { opacity: .88; transform: translateY(-1px); }
.fs-button:focus-visible { outline: 3px solid rgba(255,255,255,.25); outline-offset: 2px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  background: rgba(7,10,18,.55);
}
.foot-inner {
  display: flex; justify-content: space-between;
  gap: 14px; align-items: center; flex-wrap: wrap;
}
.link { color: rgba(255,255,255,.85); text-decoration: none; }
.link:hover { text-decoration: underline; }

.foot-legal {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px;
}
.foot-legal a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.foot-legal a:hover { color: rgba(255,255,255,.85); }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(14,20,36,.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1; font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6; min-width: 200px;
}
.cookie-banner__text a {
  color: rgba(11,92,255,.9);
  text-decoration: underline;
}
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 18px; border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  cursor: pointer; border: none; transition: opacity .2s;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn--accept {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #0b1220;
}
.cookie-btn--reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.75);
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-page {
  max-width: 820px; margin: 0 auto;
  padding: 100px 20px 80px;
}
.legal-page h1 {
  font-size: 36px; margin-bottom: 8px;
}
.legal-page .legal-updated {
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 40px; display: block;
}
.legal-page h2 {
  font-size: 20px; margin: 36px 0 10px;
  color: rgba(255,255,255,.9);
}
.legal-page p,
.legal-page li {
  font-size: 15px; color: rgba(255,255,255,.72);
  line-height: 1.75; margin-bottom: 10px;
}
.legal-page ul { padding-left: 20px; }
.legal-page a  { color: rgba(11,92,255,.9); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
}

@media (max-width: 520px) {
  .wrap    { padding: 12px 16px; }
  .hero    { padding: 44px 0 18px; }
  .contact { padding: 28px 0 56px; }

  h1 { font-size: 34px; line-height: 1.08; }
  h2 { font-size: 28px; }

  .price-card   { flex-direction: column; align-items: flex-start; gap: 10px; }
  .badge        { width: 100%; text-align: left; }
  .cta-row      { flex-direction: column; }
  .cta-row .btn { width: 100%; }

  .hero-card { max-width: 100%; }
  .img-wrap  { aspect-ratio: 16/10; }

  .fs-form         { padding: 16px; }
  .fs-button-group { justify-content: stretch; }
  .fs-button       { width: 100%; }

  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  .foot-inner  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .foot-legal  { gap: 10px; }
}
