:root {
  --bg: #ffffff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-soft: #f7faff;
  --text: #13213d;
  --muted: #5d6f93;
  --primary: #6ea8fe;
  --primary-strong: #2d6fff;
  --accent: #0f9d7a;
  --border: rgba(19, 35, 67, 0.1);
  --shadow: 0 18px 55px rgba(26, 42, 75, 0.1);
  --shadow-strong: 0 28px 70px rgba(37, 76, 163, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(61, 124, 255, 0.16), transparent 0 18%),
    radial-gradient(circle at right center, rgba(110, 168, 254, 0.12), transparent 0 20%),
    linear-gradient(180deg, #dbe9ff 0%, #eef5ff 32%, #ffffff 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(61, 124, 255, 0.12);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  animation: floatShape 14s ease-in-out infinite;
}

.bg-block {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(61, 124, 255, 0.14), rgba(110, 168, 254, 0.06));
  border: 1px solid rgba(61, 124, 255, 0.12);
  box-shadow: 0 20px 40px rgba(61, 124, 255, 0.08);
  backdrop-filter: blur(4px);
  transform: rotate(12deg);
}

.shape-1 {
  top: 40px;
  left: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(61, 124, 255, 0.22), transparent 68%);
}

.shape-2 {
  top: 180px;
  right: -30px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(90, 150, 255, 0.18), transparent 68%);
  animation-delay: 2s;
}

.shape-3 {
  bottom: 70px;
  left: 10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(110, 168, 254, 0.2), transparent 68%);
  animation-delay: 4s;
}

.shape-4 {
  top: 52%;
  right: 16%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(44, 94, 200, 0.16), transparent 68%);
  animation-delay: 1s;
}

.shape-5 {
  bottom: 10px;
  right: -20px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(149, 192, 255, 0.2), transparent 70%);
  animation-delay: 3s;
}

.block-1 {
  top: 120px;
  right: 8%;
  width: 120px;
  height: 120px;
}

.block-2 {
  top: 520px;
  left: 4%;
  width: 160px;
  height: 90px;
  transform: rotate(-18deg);
}

.block-3 {
  bottom: 120px;
  right: 12%;
  width: 140px;
  height: 140px;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.04);
  }
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav.container {
  width: 100%;
  max-width: none;
}

.hero {
  padding: 0 0 64px;
  background:
    linear-gradient(180deg, rgba(16, 36, 73, 0.88) 0, rgba(16, 36, 73, 0.5) 86px, transparent 86px),
    radial-gradient(circle at top left, rgba(61, 124, 255, 0.18), transparent 0 32%),
    radial-gradient(circle at top right, rgba(110, 168, 254, 0.14), transparent 0 24%),
    transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(21, 48, 95, 0.72), rgba(15, 33, 68, 0.68));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(15, 33, 68, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(219, 232, 255, 0.72);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4a8dff, #2d6fff);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 20px rgba(45, 111, 255, 0.22);
  white-space: nowrap;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #dbe8ff;
  font-size: 0.72rem;
  vertical-align: middle;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding-top: 64px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature-pill {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 124, 255, 0.08);
  box-shadow: var(--shadow);
}

.feature-pill strong {
  display: block;
  margin-bottom: 4px;
  color: #17356a;
}

.feature-pill span {
  color: var(--muted);
  font-size: 0.95rem;
}

.badge,
.section-title span,
.cta-box span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(110, 168, 254, 0.12);
  color: #2c5ec8;
  font-size: 0.85rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 16px 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 12px 0 0;
}

h3 {
  margin-top: 0;
}

.hero-text,
.card p,
.timeline-item p,
.cta-box p,
.section-title p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 680px;
}

.hero-text {
  font-size: 1.06rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 16px;
}

.trust-line {
  margin: 0 0 18px;
  color: #355791;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #4a8dff, #2d6fff);
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(45, 111, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(45, 111, 255, 0.28);
}

.btn-small {
  padding: 10px 14px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: none;
  color: #244b9a;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  color: #28405f;
}

.hero-points li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 124, 255, 0.1);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(61, 124, 255, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 124, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(48, 89, 178, 0.07);
}

.hero-stats strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card,
.card,
.cta-box,
.timeline-item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(110, 168, 254, 0.14), transparent 0 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-strong);
}

.mini-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #17b26a;
  box-shadow: 0 0 0 6px rgba(23, 178, 106, 0.12);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 35, 67, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section {
  padding: 72px 0;
}

.alt {
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(247, 250, 255, 0.95));
}

.section-title {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 760px;
}

.section-title-left {
  text-align: left;
  margin: 0 0 24px;
}

.section-title p {
  margin-top: 12px;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(61, 124, 255, 0.18);
}

.card.soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96));
  border-top: 4px solid #cfe0ff;
}

.showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(61, 124, 255, 0.08);
  box-shadow: 0 12px 24px rgba(45, 111, 255, 0.05);
  font-weight: 500;
}

.showcase-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 255, 0.95));
  border: 1px solid rgba(61, 124, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.showcase-box {
  padding: 16px;
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(61, 124, 255, 0.08);
}

.showcase-box strong {
  display: block;
  margin-bottom: 6px;
}

.showcase-box p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.94));
}

.timeline-item strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(110, 168, 254, 0.24), rgba(126, 240, 201, 0.18));
}

.cta {
  position: relative;
  isolation: isolate;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 34px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.cta-copy h2 {
  margin-bottom: 12px;
}

.premium-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.premium-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(61, 124, 255, 0.12);
  color: #2c4f90;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.96));
  border: 1px solid rgba(61, 124, 255, 0.12);
  box-shadow: 0 18px 40px rgba(61, 124, 255, 0.08);
}

.contact-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1rem;
}

.contact-form input:focus {
  outline: 2px solid rgba(61, 124, 255, 0.2);
  border-color: rgba(61, 124, 255, 0.35);
}

.field-help {
  margin: -4px 0 4px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input::placeholder {
  color: #b9c8ea;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
}

.footer {
  margin-top: 28px;
  padding: 28px 0 40px;
  background: linear-gradient(180deg, #15305f, #0f2144);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 860px) {
  .hero-content,
  .cta-box,
  .cards-3,
  .hero-stats,
  .feature-strip,
  .showcase {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
  }

  .brand {
    align-items: center;
    text-align: center;
  }

  .nav-links {
    width: 100%;
    gap: 8px;
    justify-content: center;
  }

  .nav-links a,
  .nav-cta {
    text-align: center;
    flex: 1 1 140px;
  }
}
