/* ═══════════════════════════════════════════════════════════════
   CampusIQ — Premium University Auth Stylesheet
   Design: Deep Oxford Navy × Champagne Gold × Frosted Glass
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  /* Navy Palette */
  --navy:        #002147;
  --navy-deep:   #001328;
  --navy-mid:    #0a2f5c;
  --navy-light:  #1a4080;

  /* Gold Palette */
  --gold:        #C9A84C;
  --gold-bright: #E8C96E;
  --gold-pale:   #FDF5E0;
  --gold-muted:  #B8922E;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --ink:         #0D1B2E;
  --ink-2:       #2D3F55;
  --muted:       #7E90A5;
  --border:      #E4EAF2;
  --border-mid:  #C8D6E8;

  /* Semantic */
  --success:     #0D7352;
  --error:       #C0392B;
  --warn:        #B7791F;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;

  /* Shadows */
  --sh-xs:  0 1px 4px rgba(0,33,71,.06), 0 1px 2px rgba(0,33,71,.04);
  --sh-sm:  0 4px 16px rgba(0,33,71,.09), 0 1px 4px rgba(0,33,71,.05);
  --sh-md:  0 10px 40px rgba(0,33,71,.13), 0 3px 10px rgba(0,33,71,.07);
  --sh-lg:  0 24px 64px rgba(0,33,71,.18), 0 8px 24px rgba(0,33,71,.10);
  --sh-xl:  0 40px 90px rgba(0,33,71,.24), 0 16px 40px rgba(0,33,71,.12);
  --sh-gold: 0 4px 24px rgba(201,168,76,.30);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy-deep);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT — full viewport split
   ═══════════════════════════════════════════════════════════════ */
.page {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Ambient background for entire page */
.page::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 90% 110%, rgba(26,64,128,.35) 0%, transparent 65%),
    var(--navy-deep);
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   LEFT — HERO PANEL
   ═══════════════════════════════════════════════════════════════ */
.img-panel {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Dual-layer slideshow photo with Ken Burns motion effect */
.img-photo {
  position: absolute; inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
  z-index: 1;
}

.img-photo.active {
  opacity: 1;
  transform: scale(1.10);
}

.img-photo.zooming {
  transform: scale(1.12);
}

/* Rich cinematic overlay — Navy & Gold tones with high photo visibility */
.img-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      160deg,
      rgba(0,19,40,.55) 0%,
      rgba(0,33,71,.25) 35%,
      rgba(0,33,71,.15) 55%,
      rgba(0,20,45,.65) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,10,25,.35) 0%,
      transparent 30%,
      transparent 55%,
      rgba(0,10,25,.75) 100%
    );
}

/* Subtle gold vignette accent */
.img-gold-accent {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 40% at 0% 100%, rgba(201,168,76,.10) 0%, transparent 70%);
}

/* Film-grain texture overlay */
.img-noise {
  position: absolute; inset: 0; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
}

/* Content over photo */
.img-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  height: 100%;
  padding: 44px 52px;
}

/* ── Logo ── */
.p-logo { display: flex; align-items: center; gap: 14px; }

.p-logo-crest {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.45);
  backdrop-filter: blur(16px) saturate(180%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.12);
  transition: all .3s ease;
}
.p-logo-crest:hover { background: rgba(201,168,76,.28); border-color: rgba(201,168,76,.65); }
.p-logo-crest img { width: 44px; height: 44px; object-fit: contain; }

.p-logo-name {
  display: flex; flex-direction: column; gap: 1px;
}
.p-logo-txt {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 900; color: #fff;
  letter-spacing: -.025em;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  line-height: 1;
}
.p-logo-txt em { font-style: italic; color: var(--gold-bright); }
.p-logo-sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: .14em;
  color: rgba(255,255,255,.45); text-transform: uppercase;
}

/* ── Institution Tag ── */
.p-institution {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 99px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.30);
  backdrop-filter: blur(12px);
  margin-bottom: 22px;
}
.p-inst-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.25);
  animation: pulse-dot 2.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,168,76,.25); }
  50%       { box-shadow: 0 0 0 5px rgba(201,168,76,.10); }
}
.p-inst-txt {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.70); text-transform: uppercase;
}

/* ── Headline ── */
.p-bottom { margin-top: auto; }

.p-headline {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -.04em;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.p-headline em { font-style: italic; color: var(--gold-bright); }

.p-sub {
  font-size: 14.5px; color: rgba(255,255,255,.50);
  font-weight: 400; line-height: 1.70;
  max-width: 380px; margin-bottom: 32px;
  letter-spacing: .01em;
}

/* ── Stats Glassmorphic Cards ── */
.p-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.pstat {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px) saturate(140%);
  transition: all .25s ease;
  cursor: default;
}
.pstat:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(201,168,76,.30);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
}

.pstat-ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pstat-ico svg { width: 15px; height: 15px; color: var(--gold-bright); }

.pstat-val {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 900; color: #fff;
  line-height: 1;
}
.pstat-lbl {
  font-size: 9.5px; color: rgba(255,255,255,.45);
  font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; margin-top: 2px;
}

/* ── Testimonial & Spotlight Carousel ── */
.p-testimonial-carousel {
  position: relative;
  max-width: 440px;
  min-height: 160px;
}

.p-testimonial-slide {
  display: none;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.25);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  animation: fadeInSlide 0.5s ease forwards;
}

.p-testimonial-slide.active {
  display: block;
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.p-testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 12px;
}

.p-testimonial-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: #eab308;
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
  padding: 3px 10px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
}

.p-testimonial-quote {
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.68;
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 400;
}

.p-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.p-testimonial-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.p-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-stat-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1px 7px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.p-testimonial-role {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.p-testimonial-dots {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.p-tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.p-tdot.active {
  width: 24px;
  border-radius: 99px;
  background: #eab308;
}
  width: 20px;
}
.p-dot.act { width: 36px; background: var(--gold); }
.p-dot:hover:not(.act) { background: rgba(255,255,255,.55); }

/* Decorative Vertical Gold Line */
.hero-line {
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.4) 40%, rgba(201,168,76,.4) 60%, transparent);
  z-index: 4;
}

/* ═══════════════════════════════════════════════════════════════
   RIGHT — FORM PANEL
   ═══════════════════════════════════════════════════════════════ */
.form-panel {
  flex: 1;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 64px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

/* Subtle frosted warmth on form panel */
.form-panel::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(201,168,76,.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0,33,71,.04) 0%, transparent 60%);
}

/* Decorative top bar gold */
.form-panel::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent);
}

.form-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
}

/* ── Mobile Logo ── */
.mob-logo { display: none; align-items: center; gap: 13px; margin-bottom: 36px; }
.mob-crest {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 2px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,33,71,.30), inset 0 1px 0 rgba(255,255,255,.08);
}
.mob-crest img { width: 40px; height: 40px; object-fit: contain; }
.mob-logo-name { display: flex; flex-direction: column; gap: 2px; }
.mob-logo-txt {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 900; color: var(--navy);
  letter-spacing: -.025em; line-height: 1;
}
.mob-logo-txt em { font-style: italic; color: var(--gold-muted); }
.mob-logo-sub {
  font-size: 9px; font-weight: 700; letter-spacing: .15em;
  color: var(--muted); text-transform: uppercase;
}

/* ── Mode Tabs ── */
.mode-tabs {
  display: flex;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 5px; gap: 4px;
  margin-bottom: 36px;
  box-shadow: inset 0 1px 3px rgba(0,33,71,.05);
}
.mtab {
  flex: 1; padding: 11px 16px; border-radius: 11px;
  font-size: 13px; font-weight: 700; color: var(--muted);
  border: none; background: none;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  letter-spacing: .01em;
}
.mtab.act {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--sh-sm);
}
.mtab:hover:not(.act) { color: var(--ink-2); }

/* ── Form Header ── */
.fhd { margin-bottom: 28px; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.ey-l {
  height: 2px; width: 24px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  border-radius: 99px;
}
.ey-t {
  font-size: 9.5px; font-weight: 800; letter-spacing: .16em;
  color: var(--gold-muted); text-transform: uppercase;
}
.ftitle {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900; color: var(--navy);
  letter-spacing: -.03em; line-height: 1.12;
  margin-bottom: 8px;
}
.ftitle em { font-style: italic; color: var(--gold-muted); }
.fsub { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 1.60; }

/* ── View Transitions ── */
.view { will-change: transform, opacity; }
.view.gone { display: none; }
.e-r { animation: eR .38s cubic-bezier(.4,0,.2,1) forwards; }
.e-l { animation: eL .38s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes eR { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes eL { from { transform: translateX(-40px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── Social Buttons ── */
.socials { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.soc {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  transition: all .20s ease;
  box-shadow: var(--sh-xs);
}
.soc:hover:not(:disabled) {
  border-color: rgba(0,33,71,.25);
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
  color: var(--navy);
}
.soc:disabled { opacity: .45; cursor: not-allowed; }

/* ── Divider ── */
.div { display: flex; align-items: center; gap: 14px; margin: 22px 0; }
.div-l { flex: 1; height: 1px; background: var(--border); }
.div-t { font-size: 11px; font-weight: 700; color: var(--muted); white-space: nowrap; letter-spacing: .05em; text-transform: uppercase; }

/* ── Fields ── */
.field { margin-bottom: 18px; }

.flabel {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 700; color: var(--ink-2);
  margin-bottom: 8px; letter-spacing: .02em;
}
.flabel span { color: var(--error); }

.fwrap { position: relative; }

.fi {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--muted);
  pointer-events: none;
  transition: color .2s ease;
  display: flex; align-items: center; justify-content: center;
}
.fi svg { width: 16px; height: 16px; }
.fwrap:focus-within .fi { color: var(--navy); }

.fe {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer;
  transition: color .18s, background .18s;
}
.fe:hover { color: var(--navy); background: var(--off-white); }
.fe svg { width: 15px; height: 15px; }

.finp {
  width: 100%; height: 50px;
  padding: 0 16px 0 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--off-white);
  font-size: 14px; color: var(--ink); font-weight: 500;
  outline: none; appearance: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.finp.ni { padding-left: 16px; }
.finp.ey { padding-right: 46px; }
.finp::placeholder { color: var(--muted); font-weight: 400; }
.finp:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,33,71,.08);
}
.finp.err {
  border-color: var(--error);
  background: #FEF2F2;
  box-shadow: 0 0 0 4px rgba(192,57,43,.07);
}

.fsel {
  width: 100%; height: 50px;
  padding: 0 40px 0 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--off-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237E90A5' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  font-size: 14px; color: var(--ink); font-weight: 500;
  outline: none; cursor: pointer; appearance: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.fsel:focus {
  border-color: var(--navy);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0,33,71,.08);
}

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ferr {
  display: none; align-items: center; gap: 5px;
  margin-top: 6px; font-size: 11.5px; font-weight: 600; color: var(--error);
}
.ferr.show { display: flex; }
.ferr svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── Password Strength ── */
.pwm { margin-top: 8px; display: none; }
.pw-bars { display: flex; gap: 5px; margin-bottom: 5px; }
.pb { flex: 1; height: 3px; border-radius: 99px; background: var(--border); transition: background .3s ease; }
.pb.w { background: #EF4444; }
.pb.f { background: #F59E0B; }
.pb.g { background: #3B82F6; }
.pb.s { background: #10B981; }
.ph { font-size: 11px; font-weight: 700; color: var(--muted); }

/* ── Checkbox Row ── */
.crow { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 16px; }
.chk {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  border: 1.5px solid var(--border-mid); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .20s ease; margin-top: 1px;
}
.chk:hover { border-color: var(--navy); background: var(--white); }
.chk.on { background: var(--navy); border-color: var(--navy); }
.chk svg { width: 10px; height: 10px; color: #fff; opacity: 0; transform: scale(.4); transition: all .20s ease; }
.chk.on svg { opacity: 1; transform: scale(1); }
.clbl { font-size: 13px; color: var(--muted); line-height: 1.60; font-weight: 400; }
.clbl a { color: var(--navy); font-weight: 600; }
.clbl a:hover { text-decoration: underline; }

/* ── Alert Banner ── */
.alert {
  display: none; padding: 13px 16px; border-radius: var(--r-sm);
  margin-bottom: 20px; font-size: 13px; font-weight: 600;
  align-items: flex-start; gap: 10px;
  animation: alertIn .25s ease;
}
@keyframes alertIn { from { transform: translateY(-10px); opacity: 0; } to { transform: none; opacity: 1; } }
.alert.show { display: flex; }
.alert svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.alert.error   { background: #FEF2F2; color: var(--error); border: 1px solid #FECACA; }
.alert.success { background: #ECFDF5; color: var(--success); border: 1px solid #A7F3D0; }
.alert.info    { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }

/* ── Submit Button ── */
.submit {
  width: 100%; height: 54px; border-radius: var(--r-sm);
  background: var(--navy);
  color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(0,33,71,.30), inset 0 1px 0 rgba(255,255,255,.08);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden; margin-top: 6px; border: none;
  text-transform: uppercase;
}

/* Gold shimmer sweep */
.submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.22), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
}
.submit:hover::before { left: 160%; }

.submit:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 32px rgba(0,33,71,.40), inset 0 1px 0 rgba(255,255,255,.10);
  transform: translateY(-2px);
}
.submit:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(0,33,71,.25); }
.submit svg { width: 16px; height: 16px; transition: transform .25s ease; flex-shrink: 0; }
.submit:hover svg { transform: translateX(4px); }
.submit.ld .bc { opacity: 0; }
.submit.ld::after {
  content: '';
  position: absolute; width: 20px; height: 20px;
  border-radius: 50%; border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Back Button ── */
.back-btn {
  width: 54px; height: 54px; border-radius: var(--r-sm);
  background: var(--off-white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); transition: all .20s ease; flex-shrink: 0;
}
.back-btn:hover { background: var(--white); border-color: var(--border-mid); color: var(--navy); box-shadow: var(--sh-xs); }
.back-btn svg { width: 17px; height: 17px; }
.dbtn { display: flex; gap: 10px; }

/* ── Steps Indicator ── */
.steps { display: flex; align-items: center; margin-bottom: 7px; }
.si { display: flex; align-items: center; flex: 1; }
.si:last-child { flex: 0; }
.sc {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
  border: 2px solid var(--border); background: var(--white); color: var(--muted);
  transition: all .30s ease; z-index: 1; position: relative;
}
.sc.act {
  border-color: var(--navy); color: var(--navy);
  background: rgba(0,33,71,.06);
  box-shadow: 0 0 0 4px rgba(0,33,71,.06);
}
.sc.done {
  background: var(--navy); border-color: var(--navy); color: #fff;
  box-shadow: 0 2px 8px rgba(0,33,71,.30);
}
.sb { flex: 1; height: 2px; background: var(--border); transition: background .45s ease; margin: 0 -1px; }
.sb.done { background: var(--navy); }
.slbls { display: flex; justify-content: space-between; margin-top: 8px; }
.slbl { font-size: 9.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; flex: 1; text-align: center; }
.slbl:first-child { text-align: left; }
.slbl:last-child  { text-align: right; }
.slbl.act { color: var(--navy); }

/* ── Summary Card ── */
.sum {
  background: linear-gradient(135deg, var(--off-white), #EFF6FF);
  border: 1.5px solid #BFDBFE;
  border-radius: var(--r); padding: 18px; margin-bottom: 18px;
}
.sum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sk { font-size: 9.5px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .10em; }
.sv { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-top: 3px; }

/* ── Success State ── */
.succ { text-align: center; padding: 8px 0 16px; display: none; }
.succ-ring {
  width: 82px; height: 82px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  animation: pop .45s cubic-bezier(.34,1.56,.64,1) forwards;
  box-shadow: var(--sh-gold);
}
@keyframes pop { from { transform: scale(.35); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.succ-ring svg { width: 36px; height: 36px; color: var(--gold-muted); }
.succ-title { font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 900; color: var(--navy); margin-bottom: 8px; letter-spacing: -.025em; }
.succ-sub { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.succ-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 99px;
  background: var(--off-white); border: 1.5px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--navy);
}
.chip svg { width: 13px; height: 13px; color: var(--gold-muted); }

/* ── Footer ── */
.ffoot { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); font-weight: 400; }
.ffoot a { color: var(--navy); font-weight: 600; cursor: pointer; border-bottom: 1px solid transparent; transition: border-color .18s; }
.ffoot a:hover { border-bottom-color: var(--navy); }

/* ── OTP Inputs ── */
.otp-wrap { display: flex; gap: 10px; justify-content: center; margin: 8px 0 20px; }
.oc {
  width: 52px; height: 62px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); text-align: center;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif; font-size: 24px; font-weight: 900; color: var(--navy);
  outline: none; background: var(--off-white);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.oc:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(0,33,71,.09); background: var(--white); }
.oc.hit { background: #EFF6FF; border-color: var(--navy); }

/* ── Ripple ── */
.rpl {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.22); transform: scale(0);
  animation: rplA .6s ease-out forwards; pointer-events: none;
}
.rpl.dk { background: rgba(0,33,71,.08); }
@keyframes rplA { to { transform: scale(1); opacity: 0; } }

/* ── Page Entrance Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-inner { animation: fadeUp .55s cubic-bezier(.4,0,.2,1) forwards; }
.img-content > * { animation: fadeUp .65s cubic-bezier(.4,0,.2,1) both; }
.img-content > *:nth-child(1) { animation-delay: .05s; }
.img-content > *:nth-child(2) { animation-delay: .15s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .img-panel { flex: 0 0 44%; }
  .form-panel { padding: 40px 48px; }
}
@media (max-width: 900px) {
  .img-panel { display: none; }
  .form-panel { padding: 36px 32px; align-items: flex-start; padding-top: 48px; background: var(--off-white); }
  .form-inner { max-width: 100%; }
  .mob-logo { display: flex; }
  .form-panel::after { background: linear-gradient(to right, var(--gold), var(--gold-bright) 50%, var(--gold)); }
}
@media (max-width: 600px) {
  .form-panel { padding: 28px 20px; padding-top: 40px; }
  .frow { grid-template-columns: 1fr; }
  .socials { grid-template-columns: 1fr; }
  .oc { width: 46px; height: 56px; font-size: 22px; }
  .ftitle { font-size: 26px; }
}
@media (max-width: 400px) {
  .form-panel { padding: 20px 16px; }
  .oc { width: 42px; height: 50px; font-size: 20px; }
}
