/* ===================================================
   VALORIS AI — DESIGN SYSTEM (Dark / Gold)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────── */
:root {
  --bg-main:        #0A0A0A;
  --bg-card:        #1A1A1A;
  --bg-alt:         #111111;
  --bg-footer:      #050505;

  --gold:           #D4AF37;
  --gold-hover:     #DFC052;
  --navy:           #D4AF37;   /* alias — keeps existing var() calls pointing to gold */

  --silver:         #4A4A4A;
  --silver-light:   #333333;

  --text-primary:   #F5F0DC;
  --text-heading:   #F5F0DC;
  --text-body:      #B8B4A8;
  --text-muted:     #4A4A4A;

  --border-subtle:  rgba(212,175,55,0.10);
  --border-card:    rgba(212,175,55,0.15);
  --border-hover:   rgba(212,175,55,0.55);

  --radius-card:    12px;
  --radius-btn:     8px;
  --radius-pill:    50px;

  --shadow-card:    0 2px 16px rgba(0,0,0,0.5);
  --shadow-hover:   0 8px 40px rgba(212,175,55,0.14);
  --shadow-btn:     0 2px 12px rgba(0,0,0,0.5);

  --max-width:      1200px;
  --section-pad:    100px;
  --transition:     0.25s ease;
}

/* ── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;

}

body {
  background-color: var(--bg-main);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: inherit; }

/* ── Utility ────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-body);
  max-width: 560px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0A0A0A;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Cards ──────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 0;
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
}

.nav-logo img {
  display: block;
  vertical-align: bottom;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #0A0A0A;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-heading);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .btn { margin-top: 8px; }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 24px 80px;
  background: var(--bg-main);
}

/* Subtle geometric background rings */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.08);
  top: -160px;
  right: -160px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.06);
  bottom: -100px;
  left: -100px;
}

.hero-bg-extra { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(212,175,55,0.07);
}

.hero-heading {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.hero-heading .accent {
  color: var(--gold);
}

.hero-subheading {
  font-size: 19px;
  color: var(--text-heading);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-stat {
  flex: 1;
  min-width: 120px;
  padding: 24px 20px;
  border-right: 1px solid var(--border-subtle);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
  margin-top: 4px;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.services-section {
  background: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  padding: 32px;
  background: var(--bg-card);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  opacity: 0.8;
}

.service-link:hover { gap: 10px; opacity: 1; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */
.process-section {
  background: var(--bg-alt);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: rgba(212,175,55,0.25);
  z-index: 0;
}

.process-step {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  letter-spacing: -1px;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 24px;
  border: 3px solid var(--bg-alt);
  outline: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   RESULTS / STATS
   ══════════════════════════════════════════════════ */
.stats-section {
  background: #111111;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-heading);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════ */
.cta-section {
  background: var(--bg-main);
}

.cta-card {
  position: relative;
  border-radius: 16px;
  padding: 80px 48px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.cta-heading {
  font-size: 44px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-fine-print {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
}

.cta-fine-print span { margin: 0 8px; }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
footer {
  background: var(--bg-footer);
  padding: 72px 0 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}

.footer-grid-simple {
  grid-template-columns: 1fr auto;
  max-width: 100%;
}

.footer-grid-simple .footer-col:last-child {
  text-align: right;
}

.footer-grid-simple .footer-col:last-child .footer-contact-item {
  justify-content: flex-end;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(245,240,220,0.4);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text-heading); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,240,220,0.4);
  margin-bottom: 12px;
}

.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(245,240,220,0.25);
}

.footer-socials { display: flex; gap: 12px; }

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(212,175,55,0.5);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-link:hover {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.4);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════
   REGISTRATION PAGE
   ══════════════════════════════════════════════════ */
.register-page {
  padding: 160px 0 100px;
  min-height: 100vh;
  background: var(--bg-main);
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* Left info column */
.register-info-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.register-info-subtitle {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.info-icon { font-size: 18px; flex-shrink: 0; }

.info-text {
  font-size: 14px;
  color: var(--text-body);
}

.next-steps {
  margin-top: 48px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.next-steps-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.next-step-item:last-child { margin-bottom: 0; }

.next-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #0A0A0A;
  flex-shrink: 0;
}

.next-step-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  padding-top: 3px;
}

/* Form card */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

/* Form elements */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #E05252;
  margin-left: 3px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid #4A4A4A;
  border-radius: var(--radius-btn);
  color: var(--text-heading);
  font-size: 14px;
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--silver); }

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-input.error,
.form-textarea.error {
  border-color: #E05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.10);
}

.field-error {
  font-size: 12px;
  color: #E05252;
  margin-top: 6px;
  display: none;
}

.field-error.show { display: block; }

/* Form grid (2 columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 24px 0;
}

/* Error banner */
.form-error-banner {
  background: rgba(224,82,82,0.08);
  border: 1px solid rgba(224,82,82,0.3);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  font-size: 14px;
  color: #F08080;
  margin-bottom: 24px;
  display: none;
}

.form-error-banner.show { display: block; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 2px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 28px;
  animation: successPop 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes successPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.success-text {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid-simple { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .register-grid { grid-template-columns: 1fr; gap: 40px; }
  .register-info-heading { font-size: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-heading { font-size: 38px; letter-spacing: -1px; }
  .hero-subheading { font-size: 17px; }
  .hero-stat { min-width: 80px; padding: 18px 12px; }
  .hero-stat-number { font-size: 22px; }

  .section-heading { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid-simple { grid-template-columns: 1fr; }

  .cta-card { padding: 48px 28px; }
  .cta-heading { font-size: 30px; }

  .register-page { padding: 160px 0 72px; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 30px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-bottom: 1px solid var(--border-subtle); }
  .hero-stat:nth-child(even) { border-right: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-subtle); }
}
