:root {
  --bg: #f6f8ff;
  --bg-2: #ffffff;
  --muted: #5b6b85;
  --text: #0b1220;
  --brand: #ff2d6f;
  --brand-2: #7c3aed;
  --accent: #22c55e;
  --card: #ffffff;
  --line: #e3e8f4;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  font-weight: 800;
}
.brand-text strong {
  font-size: 18px;
  letter-spacing: 0.5px;
}
.brand-text span {
  opacity: 0.85;
}
.top-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent;
  color: #fff;
}
.btn-outline {
  background: transparent;
}
.btn-ghost {
  background: rgba(0, 0, 0, 0.04);
}
.btn.full {
  width: 100%;
  justify-content: center;
}

.hero {
  position: relative;
  padding: 72px 24px 40px;
  background: radial-gradient(
      1200px 500px at 20% -10%,
      rgba(255, 45, 111, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 400px at 90% 0,
      rgba(124, 58, 237, 0.18),
      transparent 60%
    );
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.eyebrow {
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.domain {
  font-size: 56px;
  line-height: 1.05;
  margin: 8px 0;
  background: linear-gradient(135deg, #0b1220, #3b4a66);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub {
  font-size: 22px;
  color: #425577;
  margin: 0 0 22px;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.trust {
  color: #5b6b85;
  font-size: 14px;
}
.floating-badge {
  position: absolute;
  right: 24px;
  bottom: 18px;
}
.badge {
  background: rgba(34, 197, 94, 0.15);
  color: #137a3f;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.highlights {
  padding: 36px 24px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}
.card .icon {
  font-size: 22px;
  color: #6b8cff;
  margin-bottom: 10px;
}
.card h3 {
  margin: 6px 0 6px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: #4b5e7f;
}

.offer {
  padding: 24px;
}
.offer .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}
.panel {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.chip.purple {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.25);
}
.chip.green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
}
.option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.02);
}
.option.active {
  outline: 2px solid rgba(255, 45, 111, 0.25);
}
.reassure {
  list-style: none;
  margin: 10px 0 6px;
  padding: 0;
  color: #cfd9f6;
}
.reassure li {
  margin: 4px 0;
  color: #4b5e7f;
}
.cards {
  display: flex;
  gap: 12px;
  color: #6b7da0;
  font-size: 24px;
}
.copy h2 {
  margin: 0 0 8px;
}
.copy p {
  color: #425577;
}
.bullets {
  list-style: disc;
  margin: 10px 0 0 18px;
  color: #425577;
}

.contact {
  padding: 26px 24px 50px;
}
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.contact-copy p {
  color: #425577;
}
form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
form label .req::after {
  content: " *";
  color: #e11d48;
  font-weight: 700;
}
form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label.full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #7c9cff;
  box-shadow: 0 0 0 3px rgba(124, 156, 255, 0.2);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.tiny {
  font-size: 12px;
  color: #6b7da0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  color: #6b7da0;
  background: #ffffff;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.to-top {
  color: #6b7da0;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer .container {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .domain {
    font-size: 40px;
  }
  form .row {
    grid-template-columns: 1fr;
  }
  .top-actions .btn-primary {
    display: none;
  }
}
