/* Body */
body {
  background: radial-gradient(circle at top left, #0b1430 0%, #041018 50%, #000000 100%);
  min-height: 100vh;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 48px 80px;
  position: relative;
  z-index: 1;
}

/* Hero Background Grid */
.hero::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

/* Hero Background Glow */
.hero::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(22, 162, 231, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(30, 200, 255, 0.10) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Hero Left */
.hero-left {
  position: relative;
  z-index: 2;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.1rem;
  background: rgba(22, 162, 231, 0.12);
  border: 1px solid rgba(22, 162, 231, 0.30);
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge i {
  color: #1ec8ff;
  font-size: 0.72rem;
}

/* Hero Heading */
.hero-heading {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Description */
.hero-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.7rem;
  background: transparent;
  border: 1px solid rgba(30, 200, 255, 0.35);
  border-radius: 0.5rem;
  color: #1ec8ff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.hero-cta:hover {
  background: rgba(22, 162, 231, 0.15);
  border-color: #1ec8ff;
  transform: translateY(-2px);
  color: #4fd6ff;
}

/* Stat Badge */
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0.9rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  margin-top: 1rem;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(22, 162, 231, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i { color: #1ec8ff; font-size: 1.1rem; }

.stat-val {
  display: block;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-lbl {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.3px;
  margin-top: 3px;
}

/* Hero Right */
.hero-right {
  position: relative;
  z-index: 2;
}

/* Form Card */
.form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 48px 44px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

/* Form Card Top Accent */
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, #16A2E7, transparent);
  border-radius: 0 0 4px 4px;
}

/* Form Title */
.form-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.form-title span { color: #1ec8ff; }

/* Form Subtitle */
.form-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.req { color: #1ec8ff; margin-left: 2px; }

/* Input Wrapper */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap > i {
  position: absolute;
  left: 15px;
  color: rgba(30, 200, 255, 0.7);
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Inputs */
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 13px 14px 13px 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.92rem;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Input Focus */
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: rgba(30, 200, 255, 0.55);
  background: rgba(30, 200, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(30, 200, 255, 0.10);
}

.input-wrap:focus-within > i { color: #1ec8ff; }

/* Select Arrow */
.select-wrap::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.75rem;
  pointer-events: none;
}

.input-wrap select option { background: #0b1430; color: #ffffff; }

/* Textarea */
.input-wrap textarea {
  min-height: 90px;
  resize: none;
  padding-top: 14px;
  padding-left: 42px;
  line-height: 1.6;
}

/* Password Toggle */
.pwd-toggle {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  z-index: 1;
}

.pwd-toggle:hover { color: #1ec8ff; }

/* Checkbox Row */
.checkbox-row {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(30, 200, 255, 0.35);
  border-radius: 5px;
  cursor: pointer;
  margin-top: 2px;
  transition: all 0.25s ease;
  position: relative;
}

.checkbox-row input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  border-color: #1ec8ff;
}

.checkbox-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid #041018;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-row label {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.checkbox-row label a {
  color: #1ec8ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.checkbox-row label a:hover { color: #4fd6ff; text-decoration: underline; }

/* Submit Button */
.btn-submit {
  grid-column: span 2;
  margin-top: 8px;
  padding: 15px 24px;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #0e8bc7 100%);
  border: none;
  border-radius: 12px;
  color: #041018;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30, 200, 255, 0.40);
}

.btn-submit:hover::before { background: rgba(255, 255, 255, 0.08); }

.btn-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 200, 255, 0.30);
}

/* Form Footer */
.form-footer {
  margin-top: 1.4rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
}

.form-footer a {
  color: #1ec8ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.form-footer a:hover { color: #4fd6ff; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.55); }


/* Base Fixes */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.hero,
.hero-left,
.hero-right,
.form-card,
.form-grid {
  max-width: 100%;
  min-width: 0;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  min-width: 0;
  max-width: 100%;
}

/* 1100px */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 130px 32px 80px;
  }

  .hero-heading { font-size: 3rem; }

  .form-card { padding: 40px 32px; }
}

/* 860px - Single Column */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 110px 32px 70px;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge { margin: 0 auto 1.8rem; }

  .hero-heading { font-size: 2.8rem; }

  .hero-desc {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-badge { margin-top: 1rem; }

  .hero-right { width: 100%; }

  .form-card {
    padding: 40px 36px;
    max-width: 640px;
    margin: 0 auto;
  }

  .form-grid { grid-template-columns: 1fr 1fr; }
}

/* 600px - Single Column Form */
@media (max-width: 600px) {
  .hero {
    padding: 100px 18px 60px;
    gap: 32px;
  }

  .hero-heading { font-size: 2.2rem; }

  .hero-desc { font-size: 0.96rem; }

  .form-card {
    padding: 32px 22px;
    border-radius: 20px;
    max-width: 100%;
  }

  .form-title { font-size: 1.7rem; }

  .form-sub {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-group.full,
  .checkbox-row,
  .btn-submit {
    grid-column: span 1;
  }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    padding: 12px 14px 12px 40px;
    font-size: 16px;
  }

  .input-wrap > i {
    font-size: 0.85rem;
    left: 13px;
  }

  .form-group label { font-size: 0.78rem; }

  .btn-submit {
    padding: 14px 20px;
    font-size: 0.94rem;
    min-height: 50px;
    border-radius: 12px;
    width: 100%;
  }

  .stat-badge { align-self: center; }

  .hero-badge { font-size: 0.72rem; }
}

/* 480px */
@media (max-width: 480px) {
  .hero {
    padding: 96px 14px 56px;
    gap: 28px;
  }

  .hero-heading { font-size: 2.0rem; line-height: 1.15; }

  .hero-desc { font-size: 0.93rem; }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.38rem 0.9rem;
    letter-spacing: 0.8px;
  }

  .form-card {
    padding: 26px 16px;
    border-radius: 18px;
  }

  .form-title { font-size: 1.55rem; }

  .form-sub { font-size: 0.82rem; }

  .form-grid { gap: 12px; }

  .form-group label { font-size: 0.75rem; letter-spacing: 0.2px; }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    padding: 11px 12px 11px 38px;
    border-radius: 10px;
  }

  .input-wrap > i { left: 11px; font-size: 0.80rem; }

  .pwd-toggle { right: 10px; font-size: 0.85rem; padding: 6px; }

  .checkbox-row { gap: 8px; margin-top: 2px; }

  .checkbox-row label { font-size: 0.80rem; line-height: 1.45; }

  .checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
  }

  .btn-submit {
    padding: 13px 18px;
    font-size: 0.90rem;
    min-height: 48px;
    margin-top: 6px;
  }

  .stat-badge { padding: 0.75rem 1.1rem; gap: 10px; }

  .stat-icon { width: 38px; height: 38px; }

  .stat-val { font-size: 1.15rem; }

  .stat-lbl { font-size: 0.72rem; }

  .form-footer { font-size: 0.82rem; margin-top: 1.1rem; }

  .select-wrap::after { right: 12px; font-size: 0.70rem; }
}

/* 375px */
@media (max-width: 375px) {
  .hero { padding: 92px 12px 52px; }

  .hero-heading { font-size: 1.85rem; }

  .form-card { padding: 22px 14px; border-radius: 16px; }

  .form-title { font-size: 1.45rem; }

  .form-grid { gap: 10px; }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    padding: 10px 10px 10px 36px;
    border-radius: 9px;
  }

  .input-wrap > i { left: 10px; font-size: 0.75rem; }

  .btn-submit { padding: 12px 16px; font-size: 0.88rem; min-height: 46px; }

  .checkbox-row label { font-size: 0.76rem; }

  .hero-badge { font-size: 0.65rem; padding: 0.32rem 0.75rem; }

  .stat-badge { padding: 0.65rem 1rem; }
}

/* 320px */
@media (max-width: 320px) {
  .hero { padding: 88px 10px 48px; }

  .hero-heading { font-size: 1.65rem; }

  .form-card { padding: 18px 12px; border-radius: 14px; }

  .form-title { font-size: 1.3rem; }

  .form-sub { font-size: 0.78rem; }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    padding: 9px 9px 9px 34px;
    font-size: 15px;
    border-radius: 8px;
  }

  .input-wrap > i { left: 9px; }

  .btn-submit { font-size: 0.85rem; min-height: 44px; }

  .checkbox-row label { font-size: 0.72rem; }

  .form-grid { gap: 9px; }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    font-size: 16px;
  }

  .btn-submit { min-height: 50px; }

  .pwd-toggle {
    padding: 10px 14px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .checkbox-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .hero-cta:hover { transform: none; }

  .btn-submit:hover { transform: none; box-shadow: none; }
}

/* Landscape Mobile */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    padding-top: 90px;
    gap: 28px;
  }

  .hero-heading { font-size: 2.2rem; margin-bottom: 0.8rem; }

  .hero-desc { margin-bottom: 1.2rem; }

  .hero-badge { margin-bottom: 1.2rem; }

  .form-card { padding: 28px 28px; }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-group.full,
  .checkbox-row,
  .btn-submit {
    grid-column: span 2;
  }
}