:root {
  --bg: #08131f;
  --bg2: #102338;
  --panel: rgba(14, 28, 43, 0.82);
  --panel-border: rgba(255,255,255,0.10);
  --text: #f4f8fc;
  --muted: #b7c7d9;
  --brand: #56d7c6;
  --brand-2: #8ad6ff;
  --accent: #ffd16a;
  --success: #163d29;
  --success-border: #39c17b;
  --error: #461b1d;
  --error-border: #ff7b84;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(86,215,198,.18), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(138,214,255,.18), transparent 22%),
    linear-gradient(160deg, var(--bg), var(--bg2));
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .25;
  pointer-events: none;
}
.orb-1 {
  width: 22rem; height: 22rem;
  background: var(--brand);
  top: -6rem; left: -4rem;
}
.orb-2 {
  width: 18rem; height: 18rem;
  background: #6ea8ff;
  right: -4rem; bottom: 8rem;
}

.shell {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--brand);
  border-radius: 999px;
  padding: .55rem .9rem;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: .95;
  margin: 1rem 0 .9rem;
  letter-spacing: -.04em;
}

.subhead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 48rem;
  margin: 0 0 1.75rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  align-items: stretch;
}

.offer-box,
.offer-copy {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 1.3rem;
}

.offer-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.label {
  color: var(--muted);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.price {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin: .35rem 0;
  color: var(--accent);
}

.offer-copy p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.02rem;
}

.cta, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07202f;
  padding: .9rem 1.15rem;
  box-shadow: 0 10px 24px rgba(86,215,198,.25);
}

.cta:hover, button:hover {
  transform: translateY(-2px);
}

.value-points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.value-points li {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .7rem .95rem;
  color: var(--muted);
  font-weight: 600;
}

.contact {
  padding: 2rem;
}

.section-head h2 {
  margin: 0 0 .5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.section-head p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.notice {
  margin-bottom: 1rem;
  border-radius: 14px;
  padding: .95rem 1rem;
  border: 1px solid transparent;
  font-weight: 600;
}
.notice.success {
  background: var(--success);
  border-color: var(--success-border);
}
.notice.error {
  background: var(--error);
  border-color: var(--error-border);
}

.contact-form {
  display: grid;
  gap: 1rem;
}
.grid.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: .45rem;
  font-size: .95rem;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: .95rem 1rem;
  font: inherit;
}

input::placeholder, textarea::placeholder {
  color: #8fa7bf;
}

textarea {
  resize: vertical;
  min-height: 160px;
}

input:focus, textarea:focus {
  outline: 2px solid rgba(86,215,198,.35);
  border-color: rgba(86,215,198,.55);
}

button {
  background: linear-gradient(135deg, #ffd16a, #ffb650);
  color: #2e2203;
  padding: .95rem 1.2rem;
  justify-self: start;
  box-shadow: 0 10px 24px rgba(255,182,80,.2);
}

.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 820px) {
  .offer-row, .grid.two-up {
    grid-template-columns: 1fr;
  }
  .hero, .contact {
    padding: 1.25rem;
  }
  .shell {
    padding-top: 1rem;
  }
}
