html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  background: #082f73;
}

* {
  box-sizing: border-box;
}

.hero {
  min-height: 100vh;
  width: 100%;
  padding: 60px 0 44px;
  background: linear-gradient(135deg,#082f73,#0057ff,#3b82f6);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%,rgba(0,102,255,.42),transparent 40%),
    radial-gradient(circle at 82% 16%,rgba(96,165,250,.45),transparent 40%),
    radial-gradient(circle at 50% 55%,rgba(255,255,255,.10),transparent 35%);
  z-index: 0;
}

.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,29,112,.24);
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-svg {
  width: 28px;
  height: 28px;
  fill: #60a5fa;
  transform: rotate(-15deg);
  filter: drop-shadow(0 0 8px rgba(96,165,250,.65));
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.logo-text span {
  background: linear-gradient(135deg,#60a5fa,#bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  opacity: .92;
}

.header-cta {
  padding: 10px 18px;
  border: none;
  border-radius: 12px;
  background: white;
  color: #1d4ed8;
  font-weight: 800;
  cursor: pointer;
}

.content {
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 135px 20px 0;
  z-index: 1;
}

h1 {
  font-size: 55px;
  line-height: 1.1;
  margin: 0 0 24px;
}

h1 span {
  color: #fff;
  text-shadow:
    0 0 10px rgba(96,165,250,.8),
    0 0 30px rgba(59,130,246,.7);
  animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
  0% { text-shadow:0 0 10px rgba(96,165,250,.5),0 0 25px rgba(59,130,246,.45); }
  50% { text-shadow:0 0 25px rgba(96,165,250,1),0 0 70px rgba(59,130,246,.9); }
  100% { text-shadow:0 0 10px rgba(96,165,250,.5),0 0 25px rgba(59,130,246,.45); }
}

p {
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 34px;
}

.form-card {
  margin: 40px auto;
  max-width: 1050px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0,29,112,.32);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  background: #f7f9ff;
  border-radius: 20px;
  padding: 10px;
}

.form-row input,
.step-input {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #d8e0ee;
  font-size: 15px;
  outline: none;
}

.form-row input:focus,
.step-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,.14);
}

.main-btn {
  position: relative;
  padding: 18px 30px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg,#2563eb,#3b82f6,#60a5fa);
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 0 10px rgba(59,130,246,.6),
    0 0 20px rgba(59,130,246,.5),
    0 10px 25px rgba(37,99,235,.4);
  overflow: hidden;
  transition: all .3s ease;
  animation: buttonGlow 2s infinite ease-in-out;
}

.main-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

@keyframes buttonGlow {
  0% { box-shadow:0 0 10px rgba(59,130,246,.5),0 0 20px rgba(59,130,246,.4); }
  50% { box-shadow:0 0 20px rgba(96,165,250,1),0 0 40px rgba(59,130,246,.9),0 10px 30px rgba(37,99,235,.6); }
  100% { box-shadow:0 0 10px rgba(59,130,246,.5),0 0 20px rgba(59,130,246,.4); }
}

.hidden {
  display: none !important;
}

#step2,
#step3 {
  background: white;
  color: #111827;
  padding: 34px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(0,29,112,.18);
}

.issue-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.issue-btn {
  background: #f8fbff;
  color: #0f172a;
  border: 2px solid #e5edff;
  border-radius: 20px;
  padding: 24px 18px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.issue-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf2ff;
  border-radius: 12px;
}

.issue-icon svg {
  width: 26px;
  height: 26px;
  stroke: #2563eb;
  stroke-width: 2.2;
  fill: none;
}

.step-subtitle {
  color: #64748b;
}

.check-card {
  display: flex;
  gap: 10px;
  text-align: left;
  background: #f8fbff;
  border-radius: 16px;
  padding: 14px;
  margin: 20px 0;
}

.submit-btn {
  position: relative;
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg,#1d4ed8,#3b82f6,#60a5fa);
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow:
    0 0 10px rgba(59,130,246,.55),
    0 0 22px rgba(59,130,246,.45),
    0 12px 28px rgba(37,99,235,.35);
  animation: submitGlow 2s infinite ease-in-out;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transition: .6s;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 25px rgba(96,165,250,1),
    0 0 60px rgba(59,130,246,.85),
    0 18px 42px rgba(37,99,235,.62);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: scale(.98);
}

@keyframes submitGlow {
  0% {
    box-shadow: 0 0 10px rgba(59,130,246,.45), 0 0 20px rgba(59,130,246,.35);
  }
  50% {
    box-shadow: 0 0 22px rgba(96,165,250,1), 0 0 45px rgba(59,130,246,.85), 0 12px 34px rgba(37,99,235,.55);
  }
  100% {
    box-shadow: 0 0 10px rgba(59,130,246,.45), 0 0 20px rgba(59,130,246,.35);
  }
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  color: #64748b;
}

.success {
  background: white;
  color: #16a34a;
  padding: 32px;
  border-radius: 24px;
  font-size: 24px;
  font-weight: bold;
}

.benefits {
  max-width: 980px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.benefits div {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 20px 22px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  color: white;
  font-weight: 900;
}

.benefit-content strong {
  display: block;
  font-size: 18px;
  color: white;
}

.benefit-content small {
  color: rgba(255,255,255,.82);
}

@media(max-width:800px) {
  .nav { display:none; }
  h1 { font-size:38px; }
  .form-row,
  .issue-grid,
  .contact-grid,
  .benefits {
    grid-template-columns:1fr;
  }
}

#step2,
#step3 {
  position: relative;
}

.back-btn {
  position: absolute;
  top: 24px;
  left: 24px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 12px;

  background: #eaf2ff;
  color: #2563eb;

  font-size: 24px;
  font-weight: 900;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 8px 18px rgba(37,99,235,.12);
}

.back-btn:hover {
  background: #dbeafe;
  transform: translateX(-4px);
}

.how-section {
  background: #f8fbff;
  padding: 90px 20px;
  color: #0f172a;
}

.how-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.how-container h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.how-subtitle {
  color: #64748b;
  margin-bottom: 45px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.how-card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.how-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg,#2563eb,#60a5fa);
  color: white;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.how-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.how-card p {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

@media(max-width:800px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-container h2 {
    font-size: 32px;
  }
}