*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-deep: #0a1628;
  --blue-mid: #1a3a6e;
  --blue-bright: #2563eb;
  --blue-sky: #3b82f6;
  --blue-light: #60a5fa;
  --blue-pale: #bfdbfe;
  --accent: #38bdf8;
  --accent-warm: #f0abfc;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.13);
  --text-muted: rgba(255, 255, 255, 0.55);
}

html,
body {
  min-height: 100vh;
  font-family: "Sora", sans-serif;
}

body {
  background: var(--blue-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* === HEADER === */
.header-img-bar {
  width: 100%;
  background: #ffffff;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #1a3a6e;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.header-img-bar img {
  max-width: 860px;
  width: 100%;
  height: auto;
  display: block;
}

.page-band {
  background: linear-gradient(135deg, #1a3a6e 0%, #2563eb 60%, #1e40af 100%);
  padding: 14px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-band-text {
  position: relative;
  z-index: 1;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: #fff;
  letter-spacing: 0.01em;
}

.page-band-text em {
  font-style: italic;
  background: linear-gradient(135deg, #bfdbfe, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-band-sub {
  position: relative;
  z-index: 1;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(135deg, #060e1f 0%, #0f1e40 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 22px 32px;
  text-align: center;
}

.footer-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.footer-text strong {
  color: var(--blue-light);
  font-weight: 600;
}

.footer-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 8px;
  vertical-align: middle;
  opacity: 0.6;
}

/* === MAIN LAYOUT === */
.main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* === LEFT PANEL === */
.left-panel {
  padding-top: 8px;
}

.panel-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.panel-heading {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--white);
}

.panel-heading span {
  background: linear-gradient(135deg, #93c5fd, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.panel-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 360px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  animation: fadeUp 0.5s ease both;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.05s;
}
.benefit-item:nth-child(2) {
  animation-delay: 0.1s;
}
.benefit-item:nth-child(3) {
  animation-delay: 0.15s;
}
.benefit-item:nth-child(4) {
  animation-delay: 0.2s;
}
.benefit-item:nth-child(5) {
  animation-delay: 0.25s;
}
.benefit-item:nth-child(6) {
  animation-delay: 0.3s;
}

.benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  transition:
    transform 0.2s ease,
    background 0.2s;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.08);
  background: rgba(37, 99, 235, 0.2);
}

.benefit-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.benefit-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
  margin: 36px 0;
}

.stats-row {
  display: flex;
  gap: 32px;
}

.stat {
}

.stat-num {
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.05em;
}

/* === FORM PANEL === */
.form-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.065) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeUp 0.5s ease both;
}

.form-card-header {
  margin-bottom: 32px;
}

.form-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-pale);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

input:focus,
select:focus {
  border-color: var(--blue-sky);
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

select option {
  background: #1a2f5e;
  color: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow:
    0 4px 24px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
}

.submit-btn:hover::after {
  opacity: 1;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--text-muted);
}

.form-note a {
  color: var(--blue-light);
  text-decoration: none;
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 6px;
}
notice-bar {
  background: linear-gradient(135deg, #060e1f 0%, #0f1e40 60%, #060e1f 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.25);
  border-bottom: 1px solid rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}

/* subtle grid overlay — mirrors .page-band::before */
.notice-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.notice-bar marquee {
  display: flex;
  align-items: center;
  height: 36px;
}

.marquee-inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
}

.marquee-icon {
  font-size: 13px;
  line-height: 1;
  animation: pulse-icon 2.4s ease-in-out infinite;
}

.marquee-label {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.marquee-number {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #bfdbfe, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marquee-sep {
  color: rgba(59, 130, 246, 0.4);
  font-size: 10px;
  margin: 0 4px;
}

@keyframes pulse-icon {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.18);
  }
}

.notice-bar {
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  border-top: 2px solid #c8a951;
  border-bottom: 2px solid #c8a951;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

/* wrapper */
.marquee {
  width: 100%;
  overflow: hidden;
}

/* moving track */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* pause on hover */
.notice-bar:hover .marquee-track {
  animation-play-state: paused;
}

/* animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* your styles (reuse) */
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  white-space: nowrap;
}

.marquee-icon {
  font-size: 1rem;
  animation: pulse-icon 2s ease-in-out infinite;
}

.marquee-label {
  color: #c8a951;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.marquee-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
}

.marquee-sep {
  color: #c8a951;
  opacity: 0.5;
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 20px;
  }
  .stats-row {
    gap: 20px;
  }
  .header {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .main {
    grid-template-columns: 1fr;
  }

  .main > :first-child {
    order: 2; /* left goes bottom */
  }

  .main > :last-child {
    order: 1; /* right comes top */
  }
}
