:root {
  --navy-900: #081f3f;
  --navy-800: #0c2c57;
  --navy-700: #123b73;
  --gold-500: #c7a56a;
  --gold-400: #d7ba8a;
  --gold-200: #efe0bf;
  --slate-950: #162235;
  --slate-800: #30445f;
  --slate-700: #4b6280;
  --slate-500: #7d90aa;
  --slate-300: #c7d2e0;
  --slate-200: #dbe4ef;
  --white: #ffffff;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-hero: 0 30px 60px rgba(8, 31, 63, 0.20);
  --shadow-card: 0 20px 50px rgba(15, 41, 79, 0.08);
  --shadow-soft: 0 12px 30px rgba(12, 44, 87, 0.08);
  --shadow-focus: 0 0 0 5px rgba(199, 165, 106, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 165, 106, 0.10), transparent 24%),
    radial-gradient(circle at right top, rgba(18, 59, 115, 0.12), transparent 28%),
    linear-gradient(180deg, #eff4f9 0%, #f6f9fc 100%);
  color: var(--slate-950);
  min-height: 100vh;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.45), transparent 20%);
  z-index: 0;
}

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

.site-header {
  padding: 38px 0 26px;
}

.hero {
  background:
    linear-gradient(135deg, rgba(8, 31, 63, 0.98), rgba(12, 44, 87, 0.96)),
    var(--navy-900);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 42px;
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 165, 106, 0.26), transparent 65%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -70px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-brand {
  margin-bottom: 20px;
}

.hero-logo {
  max-height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(231, 215, 181, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-200);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.hero-description {
  max-width: 570px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.page {
  padding: 26px 0 48px;
}

.form-shell {
  display: grid;
  gap: 24px;
}

.form-section,
.action-bar {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(199, 210, 224, 0.75);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.section-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-200);
}

.step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(12, 44, 87, 0.25);
}

.section-head-text h2 {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.section-head-text p {
  color: var(--slate-700);
  line-height: 1.65;
  font-size: 1rem;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 20px;
  align-items: end;
}

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

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

.col-3-full {
  grid-column: 1 / -1;
}

.col-2-full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
  letter-spacing: -0.01em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--slate-950);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--slate-500);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #b6c4d6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: var(--shadow-focus);
  background: #ffffff;
  transform: translateY(-1px);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.plate-input {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.subcard {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,255,0.88));
  border: 1px solid rgba(199, 210, 224, 0.9);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.subcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-200);
}

.subcard-head h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.subcard-head span {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}

.input-icon {
  position: relative;
}

.input-icon span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--slate-700);
  font-size: 15px;
  pointer-events: none;
}

.input-icon input {
  padding-left: 52px;
}

.action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(8, 31, 63, 0.98), rgba(29, 36, 45, 0.95)),
    var(--navy-900);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-hero);
}

.action-bar .section-tag {
  color: var(--gold-200);
}

.action-copy h2 {
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.action-copy p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 720px;
}

.action-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 16px 28px rgba(199, 165, 106, 0.30);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(199, 165, 106, 0.38);
}

.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

@media (max-width: 1080px) {
  .split,
  .action-bar {
    grid-template-columns: 1fr;
    display: grid;
  }

  .action-bar {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 30px 24px;
  }

  .form-section,
  .action-bar {
    padding: 24px 20px;
  }

  .section-head-text h2 {
    font-size: 1.65rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  .section-head {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

}
.vtechlogo {
    position: absolute;
    left: 675px;
    width: 375px;
    top: 50px;
  }