:root {
  --ice: #fbfdff;
  --cyan: #00cfe8;
  --cyan-soft: #e9fbff;
  --indigo: #20145f;
  --royal: #3824a7;
  --ink: #101828;
  --muted: #5a6578;
  --line: #d9e7f5;
  --green: #067647;
  --warm: #f6c85f;
  --shadow: 0 24px 72px rgba(32, 20, 95, .18);
}

* { box-sizing: border-box; }

html { min-width: 320px; }

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: var(--ice);
}

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

.wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.top {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  color: var(--indigo);
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(32, 20, 95, .16);
}

.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  color: #29395f;
}

.links a:not(.call) {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.call {
  background: var(--indigo);
  color: #fff;
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(0,207,232,.28), transparent 30%),
    linear-gradient(135deg, #fafdff 0%, #eef8ff 42%, #ffffff 100%);
}

.premium-hero {
  min-height: calc(100vh - 72px);
  padding: clamp(26px, 4vw, 72px) 0 24px;
  display: grid;
  align-content: center;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 42%;
  background: linear-gradient(135deg, rgba(32,20,95,.08), rgba(0,207,232,.08));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding: clamp(6px, 2vw, 20px) 0;
}

.launch {
  display: inline-flex;
  border: 1px solid rgba(0, 207, 232, .55);
  background: #fff;
  color: #18316f;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(0, 207, 232, .14);
}

h1 {
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: .98;
  margin: 0 0 18px;
  letter-spacing: 0;
  color: var(--indigo);
  max-width: 980px;
}

h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 14px;
  color: var(--indigo);
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: #18316f;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

.lead {
  font-size: clamp(17px, 1.4vw, 22px);
  max-width: 820px;
  color: #34405a;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-actions { margin-top: 28px; }

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 950;
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 14px 30px rgba(32, 20, 95, .18);
  text-align: center;
}

.btn.whatsapp {
  background: linear-gradient(135deg, #0b8f63, #14c38e);
  color: white;
}

.btn.call-btn {
  background: var(--royal);
}

.btn.secondary {
  background: #fff;
  color: var(--indigo);
  border: 1px solid var(--line);
  box-shadow: none;
}

.trust-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
}

.trust-strip span {
  min-height: 58px;
  border: 1px solid rgba(0, 207, 232, .28);
  background: rgba(255,255,255,.86);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  color: #1f3569;
  font-size: 13px;
  font-weight: 900;
}

.mascot-zone {
  min-width: 0;
  display: grid;
  place-items: center;
  align-self: stretch;
}

.mascot-zone img {
  width: min(100%, 560px);
  max-height: min(68vh, 680px);
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(32, 20, 95, .22));
}

.showroom-band {
  position: relative;
  margin-top: clamp(16px, 3vw, 34px);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(32,20,95,.14);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  padding: 14px 16px;
  box-shadow: 0 14px 38px rgba(32, 20, 95, .08);
}

.showroom-band strong {
  color: var(--indigo);
  font-size: 16px;
}

.showroom-band span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 34px 0;
}

.first-hint {
  padding-top: 26px;
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(41, 67, 123, .07);
}

.tile { grid-column: span 4; min-height: 142px; }
.two { grid-column: span 6; }
.full { grid-column: 1 / -1; }

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: #18316f;
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  margin: 0 8px 8px 0;
}

form { display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 850; color: #263b6b; }

input, select, textarea {
  width: 100%;
  border: 1px solid #cddfeb;
  background: #fff;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
}

textarea { min-height: 108px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #4e5e7f; }
.check input { width: auto; min-height: auto; margin-top: 3px; }
.notice { border-left: 4px solid var(--cyan); background: #f4fcff; padding: 12px 14px; border-radius: 8px; color: #31436d; }
.result { min-height: 22px; font-weight: 850; color: #1b6b45; }
.result.bad { color: #a83d3d; }

footer {
  margin-top: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #53627d;
}

.foot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

@media (min-width: 1600px) {
  .wrap { width: min(1760px, calc(100% - 72px)); }
  .premium-hero { min-height: calc(100vh - 72px); padding-top: 64px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(520px, .56fr); }
  .mascot-zone img { width: min(100%, 650px); max-height: 72vh; }
  .trust-strip span { min-height: 64px; font-size: 15px; }
  .showroom-band { min-height: 78px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .mascot-zone { order: -1; min-height: 220px; }
  .mascot-zone img { width: min(78vw, 360px); max-height: 330px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .tile, .two { grid-column: 1 / -1; }
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .links { width: 100%; justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .call { width: 100%; justify-content: center; text-align: center; }
  .showroom-band { display: block; }
  .showroom-band span { display: block; margin-top: 6px; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 620px); }
  .premium-hero { min-height: auto; padding: 18px 0 22px; }
  h1 { font-size: 38px; }
  .lead { font-size: 16px; }
  .actions { gap: 10px; }
  .btn { width: 100%; min-height: 46px; padding: 0 12px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { min-height: 48px; }
  .mascot-zone { min-height: 190px; }
  .mascot-zone img { width: min(82vw, 300px); max-height: 260px; }
}
