/*  ════════════
   GoGrads – Sunset Gradient Edition
   Gradient : #FF3B30 -> #FF8A00 (Red to Orange)
   Font     : Inter (clean modern sans-serif)
 ════════════ */

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

:root {
  --blue:      #FF3B30;
  --blue-d:    #E62E24;
  --blue-l:    #FF8A00;
  --blue-pale: #FFF1ED;
  --red:       #FF3B30;
  --red-l:     #FFC080;
  --red-pale:  #FFF1ED;
  --green:     #16A34A;
  --danger:    #DC2626;
  --white:     #FFFFFF;
  --off:       #F8FAFC;
  --light:     #FFF1ED;
  --border:    #FFE0DB;
  --text:      #27272A;
  --muted:     #6B7280;
  --dark-nav:  #2E2E33;

  /* Legacy aliases — keep old names working */
  --gold:      #FF3B30;
  --gold-l:    #FFC080;
  --gold-pale: #FFF1ED;
  --warm:      #FF3B30;
  --sky:       #FF8A00;
  --deep:      #E62E24;
  --darkest:   #2E2E33;
  --dp:        #FF3B30;
  --lp:        #FF8A00;
  --gy:        #FF3B30;
  --sg:        #16A34A;
  --bo:        #DC2626;
  --c1:        #FF3B30;
  --bg:        #F8FAFC;
  --card:      #FFFFFF;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --shadow-xl: 0 16px 56px rgba(0,0,0,.18);
  --font:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font); }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); min-height: 100vh; font-size: 15px; line-height: 1.6; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--deep); }

/* ── NAV ── */
#main-nav {
  background: #ffffff;
  border-bottom: 1px solid rgba(226,232,240,.9);
  padding: 0 2.5rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 6px rgba(15,23,42,.07);
}
.logo {
  font-size: 1.75rem; font-weight: 900; color: var(--darkest);
  letter-spacing: -1px; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo span { color: var(--red); }
.nav-logo-img {
  width: 60px; height: 60px; object-fit: contain;
  filter: none;
  transition: transform .2s;
}
.logo:hover .nav-logo-img { transform: scale(1.04); }
.nav-links { display: flex; gap: .6rem; align-items: center; }
.nav-btn {
  padding: 10px 20px; border-radius: 999px; font-size: .88rem; font-weight: 700;
  cursor: pointer; border: 1px solid transparent; transition: all .18s;
  text-decoration: none; display: inline-flex; align-items: center;
  letter-spacing: -.2px; background: rgba(15,23,42,.03); color: var(--darkest);
}
.nav-btn:hover { background: rgba(255,59,48,.12); color: var(--deep); }
.nav-ghost {
  background: transparent; color: var(--darkest);
  border: 1px solid rgba(15,23,42,.08);
}
.nav-primary {
  background: linear-gradient(135deg, #FF3B30, #FF8A00); color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(255,59,48,.25);
}
.nav-primary:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,59,48,.3); text-decoration: none; }

/* ── NAUKRI-STYLE NAV — Centre Links + Right Buttons ──────────── */
.nav-centre {
  display: flex; align-items: center; gap: .2rem;
  flex: 1; justify-content: center;
}
.nav-link-item {
  padding: 8px 14px; border-radius: 6px;
  font-size: .9rem; font-weight: 600; color: #374151;
  background: transparent; border: none; cursor: pointer;
  transition: all .15s; white-space: nowrap; letter-spacing: -.1px;
  font-family: var(--font);
}
.nav-link-item:hover { background: #F5F7FA; color: var(--red); }
a.nav-link-item { text-decoration: none; display: inline-block; }
.nav-caret { font-size: .7rem; margin-left: 2px; opacity: .6; }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px; box-shadow: 0 8px 30px rgba(0,0,0,.1);
  min-width: 200px; padding: 6px; z-index: 500;
}
.nav-dropdown-right { left: auto; right: 0; }
.nav-dropdown button, .nav-dropdown a {
  display: block; width: 100%; text-align: left;
  padding: 9px 14px; border: none; background: transparent;
  font-size: .88rem; font-weight: 600; color: #374151;
  cursor: pointer; border-radius: 6px; font-family: var(--font);
  text-decoration: none; transition: background .12s;
}
.nav-dropdown button:hover, .nav-dropdown a:hover {
  background: #FFF1ED; color: var(--red);
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown-wrap.open .nav-dropdown { display: block; }

/* Right-side buttons */
.nav-right {
  display: flex; align-items: center; gap: .6rem; flex-shrink: 0;
}
.nav-btn-login {
  padding: 8px 22px; border-radius: 999px;
  border: 1.5px solid #D1D5DB; background: transparent;
  font-size: .88rem; font-weight: 700; color: #374151;
  cursor: pointer; transition: all .15s; white-space: nowrap;
  font-family: var(--font);
  display: flex; align-items: center; gap: 4px;
}
.nav-btn-login:hover { border-color: var(--red); color: var(--red); }
.nav-btn-register {
  padding: 8px 22px; border-radius: 999px;
  border: none; background: var(--red);
  font-size: .88rem; font-weight: 800; color: #fff;
  cursor: pointer; transition: all .15s; white-space: nowrap;
  font-family: var(--font);
  box-shadow: 0 4px 14px rgba(255,59,48,.3);
}
.nav-btn-register:hover { background: #cc0000; transform: translateY(-1px); }

/* Hide centre + right on mobile, show on desktop */
@media (max-width: 900px) {
  .nav-centre { display: none; }
  .nav-right { display: none; }
}
@media (min-width: 901px) {
  .nav-hamburger { display: none !important; }
  .mobile-nav-drawer { display: none !important; }
}
/* ── END NAUKRI NAV ──────────────────────────────────────────── */

.nav-admin {
  background: transparent; color: var(--darkest);
  border: 1px solid rgba(15,23,42,.12);
  font-size: .75rem; letter-spacing: .12em;
  text-decoration: none; transition: all .18s;
}
.nav-admin:hover { color: var(--deep); border-color: rgba(255,59,48,.3); background: rgba(255,59,48,.08); text-decoration: none; }

/* ── PAGE TRANSITIONS ── */
.page { display: none; }
.page.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.35)} }

/*  
   HERO — Split layout (left content + right card)
  */
.hero {
  min-height: calc(100vh - 66px);
  background: #F8FAFC;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0 4rem 5%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 2.5rem 5% 3rem; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 15% 40%, rgba(255,59,48,.10) 0%, transparent 58%),
    radial-gradient(ellipse 40% 35% at 78% 92%, rgba(255,176,32,.07) 0%, transparent 55%);
}
.hero > * { position: relative; z-index: 1; }

/* LEFT */
.hero-left { display: flex; flex-direction: column; gap: 1.6rem; width: 100%; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue-pale); border: 1.5px solid rgba(255,59,48,.25);
  border-radius: 40px; padding: 8px 20px;
  font-size: .8rem; font-weight: 700; color: var(--blue);
  width: fit-content;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  animation: pulse 2s infinite; flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.08; color: var(--darkest);
  letter-spacing: -1.5px;
}
.hero h1 em { font-style: normal; font-weight: 900; color: var(--red); }
.hero h1 span { color: var(--red); -webkit-text-stroke: 0; }
.hero-sub { font-size: 1rem; color: var(--muted); max-width: 800px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero search card */
.hero-search-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px; padding: 1.7rem;
  box-shadow: var(--shadow-lg);
}
.hero-search-title {
  font-size: .9rem; font-weight: 700; color: var(--deep);
  margin-bottom: 1rem; letter-spacing: .2px;
}
.hero-search-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 10px;
  margin-bottom: 1rem;
}
.hero-search-field { display: flex; flex-direction: column; gap: 6px; }
.hero-search-label { font-size: .72rem; font-weight: 700; color: var(--muted); letter-spacing: .4px; text-transform: uppercase; }
.hero-search-input {
  padding: 11px 14px; background: #F8FAFC;
  border: 1.5px solid rgba(226,232,240,.9); border-radius: 12px;
  color: var(--text); font-size: .95rem; outline: none; transition: all .18s;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.hero-search-input::placeholder { color: rgba(75,85,99,.45); }
.hero-search-input option {
  background: #fff !important;
  background-color: #fff !important;
  color: var(--darkest) !important;
}
.hero-search-input:focus { border-color: var(--deep); background: #ffffff; }
select.hero-search-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D4ED8' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.hero-search-footer { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-search-btn {
  padding: 11px 24px; background: linear-gradient(135deg, #FF3B30, #FF8A00); color: #fff;
  border: none; border-radius: 999px; font-size: .92rem; font-weight: 800;
  cursor: pointer; transition: all .15s; box-shadow: 0 8px 20px rgba(255,59,48,.3);
  font-family: var(--font);
}
.hero-search-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.hero-search-note { font-size: .82rem; color: var(--muted); }

/* Category pills row — sits below the hero CTAs, horizontal */
.hero-categories {
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin-top: 2.2rem;
}
.hero-cat-pill {
  display: flex; align-items: center; gap: .55rem;
  padding: .7rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(17,24,39,.04);
  transition: all .15s;
}
.hero-cat-pill:hover {
  border-color: var(--red);
  box-shadow: 0 6px 16px rgba(255,59,48,.14);
  transform: translateY(-1px);
}
.hero-cat-icon { font-size: 1.15rem; line-height: 1; }
.hero-cat-label { font-size: .82rem; font-weight: 700; color: var(--text); letter-spacing: .2px; white-space: nowrap; }

/* ── MARQUEE ── */
.marquee-band {
  background: #FFF1ED;
  border-top: 1px solid rgba(255,59,48,.2);
  border-bottom: 1px solid rgba(255,59,48,.2);
  overflow: hidden;
  padding: .8rem 0;
  display: flex;
  align-items: center;
}

.marquee-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--darkest);
  padding: 0 1rem 0 1.2rem;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  background: #FFF1ED;
}

.marquee-divider {
  color: var(--red);
  font-size: .7rem;
  flex-shrink: 0;
  padding-right: .8rem;
  background: #FFF1ED;
  z-index: 1;
}

.marquee-scroll-wrapper {
  overflow: hidden;
  flex: 1;
}

.marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

.marquee-item { font-size: .82rem; font-weight: 700; color: var(--darkest); padding: 0 1.4rem; display: inline-flex; align-items: center; gap: 7px; }
.marquee-sep  { color: rgba(0,0,0,.3); padding: 0 .2rem; font-size: .75rem; }

/* ── HOW IT WORKS ── */
.how-section {
  background: #ffffff; padding: 6rem 5%;
  position: relative; border-top: 1px solid var(--border);
}
.how-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #FF3B30, #7DD3FC, #FF3B30);
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,59,48,.08); color: var(--deep);
  border-radius: 40px; padding: 6px 18px;
  font-size: .76rem; font-weight: 700; letter-spacing: .7px;
  text-transform: uppercase; margin-bottom: 1rem;
  border: 1px solid rgba(255,59,48,.16);
}
.section-title { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; margin-bottom: .6rem; letter-spacing: -1px; color: var(--darkest); }
.section-title strong { color: var(--deep); }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.65; max-width: 520px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.step-card {
  background: #F8FAFC; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
  transition: box-shadow .2s, transform .2s; position: relative; overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--deep), var(--red));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.step-card:hover::after { transform: scaleX(1); }
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255,59,48,.1); color: var(--deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; margin-bottom: 1.2rem;
}
.step-emoji { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 1.5rem; opacity: .7; }
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--darkest); }
.step-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/*  
   WHY GOGRADS SECTION
  */
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header .section-sub { margin: 0 auto; }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

/* --- Feature Cards --- */
.why-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  transition: box-shadow .2s, transform .2s;
  cursor: default;
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}
.why-card-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-card-body { flex: 1; }
.why-card-top {
  display: flex; align-items: center; gap: .7rem; margin-bottom: .35rem;
}
.why-card-title {
  font-weight: 800; font-size: .97rem; color: var(--darkest);
}
.why-badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .06em;
  background: var(--blue-pale); color: var(--blue);
  border: 1px solid rgba(255,59,48,.2);
  border-radius: 40px; padding: 2px 9px;
  white-space: nowrap;
}
.why-card-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* --- Right Visual Card --- */
.why-visual {
  position: sticky; top: 6rem;
}
.why-visual-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.why-visual-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
.why-visual-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #2E2E33; color: #fff;
  border-radius: 40px; padding: 5px 14px;
  font-size: .72rem; font-weight: 700;
  margin-bottom: 1.4rem;
}
.why-visual-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}
.why-visual-profile {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
}
.why-visual-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-visual-name { font-weight: 800; font-size: 1rem; color: var(--darkest); }
.why-visual-role { font-size: .78rem; color: var(--muted); margin-top: 2px; }

.why-visual-skills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem;
}
.why-skill-tag {
  font-size: .73rem; font-weight: 700;
  background: var(--blue-pale); color: var(--blue);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 40px; padding: 3px 12px;
}
.why-visual-stats {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--off); border-radius: 12px; padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
}
.why-vstat { text-align: center; }
.why-vstat-num {
  font-size: 1.4rem; font-weight: 900; color: var(--red); line-height: 1;
}
.why-vstat-label { font-size: .68rem; color: var(--muted); margin-top: 3px; font-weight: 600; }
.why-vstat-divider { width: 1px; height: 36px; background: var(--border); }

.why-visual-footer {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--muted); font-weight: 600;
  border-top: 1px solid var(--border); padding-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { position: static; }
}
@media (max-width: 600px) {
  .why-card { padding: 1.1rem 1.2rem; }
  .why-card-icon { width: 40px; height: 40px; }
}

/* ── BUTTONS ── */
.btn-hero-primary, .btn-next {
  padding: 13px 30px; background: linear-gradient(135deg, #FF3B30, #FF8A00); color: #fff;
  border: none; border-radius: 40px; font-size: .92rem; font-weight: 800;
  cursor: pointer; transition: all .15s;
  box-shadow: 0 6px 22px rgba(255,59,48,.3);
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font);
}
.btn-hero-primary:hover, .btn-next:hover {
  filter: brightness(1.06); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,59,48,.4);
}
.btn-next:disabled { background: #c8c8c8; box-shadow: none; cursor: not-allowed; transform: none; color: rgba(0,0,0,.35); }
.btn-hero-sec {
  padding: 13px 30px; background: transparent; color: var(--deep);
  border: 1.5px solid rgba(255,59,48,.18); border-radius: 40px;
  font-size: .92rem; font-weight: 700; cursor: pointer; transition: all .18s;
}
.btn-hero-sec:hover { border-color: var(--deep); color: var(--deep); background: rgba(255,59,48,.06); }
.btn-back {
  padding: 10px 22px; border-radius: 40px;
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border); font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: all .18s;
}
.btn-back:hover { border-color: var(--blue); color: var(--blue); }

.btn-copy {
  padding: 6px 14px; border-radius: 20px;
  background: var(--blue); color: #fff; border: none;
  font-size: .76rem; font-weight: 700; cursor: pointer; transition: all .15s; white-space: nowrap;
}
.btn-copy:hover { background: #FF8A00; }
.btn-unlock {
  padding: 10px 22px; border-radius: 40px;
  background: var(--red); color: var(--darkest); border: none;
  font-size: .86rem; font-weight: 800; cursor: pointer; transition: all .18s;
  box-shadow: 0 4px 14px rgba(255,59,48,.25); white-space: nowrap;
}
.btn-unlock:hover { background: #EA580C; transform: translateY(-1px); }

/*  
   AUTH SPLIT PAGE
  */
.auth-split-page { display: grid; grid-template-columns: 420px 1fr; min-height: calc(100vh - 66px); }

/* Left branding panel */
.auth-left {
  background: linear-gradient(160deg, #FFF1ED 0%, #FFE0DB 45%, #ffffff 100%);
  padding: 3rem 2.5rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.auth-left::after {
  content: '';
  position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,59,48,.15) 0%, transparent 65%);
  right: -120px; bottom: -120px; pointer-events: none;
}
.auth-left::before {
  content: '';
  position: absolute; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,59,48,.16) 0%, transparent 65%);
  left: -70px; top: -70px; pointer-events: none;
}
.auth-left-inner { position: relative; z-index: 1; width: 100%; }
.auth-logo-img { width: 48px; height: 48px; object-fit: contain; margin-bottom: 1rem; }
.auth-brand { font-size: 2rem; font-weight: 900; color: var(--darkest); letter-spacing: -1px; margin-bottom: .5rem; }
.auth-brand span { color: var(--red); }
.auth-brand-tagline { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.auth-highlights { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.auth-hl-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: #FFFFFF; border: 1px solid rgba(226,232,240,.9);
  border-radius: 16px; padding: 16px 16px;
}
.auth-hl-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.auth-hl-item div { font-size: .9rem; color: var(--text); line-height: 1.6; }
.auth-hl-item strong { color: var(--darkest); display: block; margin-bottom: 2px; font-size: .95rem; }
.auth-stats-row { display: flex; gap: 0; }
.auth-stat {
  flex: 1; text-align: center; padding: 1rem .5rem;
  border-right: 1px solid rgba(226,232,240,.9);
}
.auth-stat:last-child { border-right: none; }
.auth-stat-num { font-size: 1.35rem; font-weight: 900; color: var(--deep); letter-spacing: -1px; }
.auth-stat-label { font-size: .75rem; color: var(--muted); margin-top: 3px; }

/* Right form panel */
.auth-right {
  background: #ffffff; padding: 3rem 3rem 3rem;
  display: flex; flex-direction: column;
  overflow-y: auto; position: relative;
  box-shadow: var(--shadow);
}
.auth-back-btn {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--muted); border-radius: 40px;
  padding: 6px 16px; font-size: .82rem; font-weight: 700; cursor: pointer;
  transition: all .18s;
}
.auth-back-btn:hover { border-color: var(--deep); color: var(--deep); }
.auth-tabs {
  display: flex; gap: 0; border: 1.5px solid var(--border);
  border-radius: 40px; padding: 3px;
  margin: 3.5rem 0 2rem; align-self: flex-start;
}
.auth-tab {
  padding: 9px 22px; border-radius: 40px; font-size: .88rem; font-weight: 700;
  cursor: pointer; border: none; background: transparent; color: var(--muted);
  transition: all .2s;
}
.auth-tab.active { background: linear-gradient(135deg, var(--blue), var(--sky)); color: #fff; box-shadow: 0 4px 12px rgba(255,59,48,.15); }
.auth-panel { flex: 1; }
.auth-title { font-size: 1.7rem; font-weight: 900; color: var(--darkest); letter-spacing: -.5px; margin-bottom: .4rem; }
.auth-subtitle { font-size: .9rem; color: var(--muted); margin-bottom: 1.8rem; line-height: 1.5; }
.auth-switch-hint { font-size: .85rem; color: var(--muted); text-align: center; margin-top: 1.2rem; }
.auth-switch-hint a { color: var(--blue); font-weight: 700; }
.auth-info-box {
  background: rgba(5,150,105,.05); border: 1.5px solid rgba(5,150,105,.18);
  border-radius: var(--radius-sm); padding: .9rem 1.1rem;
  font-size: .82rem; color: var(--muted); line-height: 1.6; margin-top: 1.2rem;
}
.auth-info-box strong { color: var(--blue); }

/* Progress dots */
.auth-progress-wrap { margin-bottom: 1.8rem; }
.auth-step-dots { display: flex; align-items: center; gap: 0; margin-bottom: .5rem; }
.auth-step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); transition: background .25s;
}
.auth-step-dot.active { background: var(--blue); box-shadow: 0 0 0 3px rgba(5,150,105,.2); }
.auth-step-dot.done { background: var(--red); }
.auth-step-line { flex: 1; height: 2px; background: var(--border); transition: background .25s; }
.auth-step-line.done { background: var(--red); }
.auth-step-labels {
  display: flex; justify-content: space-between;
  font-size: .7rem; color: var(--muted); font-weight: 700;
  letter-spacing: .3px; padding: 0 2px;
}

/* ── FORMS ── */
.form-page { background: var(--bg); min-height: calc(100vh - 66px); padding: 3rem 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .84rem; font-weight: 700; color: var(--text); letter-spacing: -.1px; }
.req { color: var(--bo); }
input[type="text"], input[type="email"], input[type="tel"],
input[type="url"], input[type="password"], select, textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--text); background: var(--bg);
  outline: none; transition: border-color .18s, box-shadow .18s; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
textarea { resize: vertical; min-height: 90px; }
.err-msg {
  color: #a83428; font-size: .82rem; margin-top: 8px;
  padding: 8px 12px; background: #fdf0ee; border-radius: 8px;
  border-left: 3px solid #d44;
}
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1.5px solid var(--border);
}

/* ── SKILLS ── */
.skills-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.skill-chip {
  padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 40px;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  background: var(--bg); color: var(--muted); transition: all .15s; user-select: none;
}
.skill-chip:hover { border-color: var(--blue); color: var(--blue); }
.skill-chip.selected { background: linear-gradient(135deg, var(--blue), var(--sky)); border-color: var(--blue); color: #fff; font-weight: 700; }
.skill-chip.disabled { opacity: .4; cursor: not-allowed; }
.skill-count { font-size: .8rem; color: var(--muted); margin-top: 8px; }

/* ── UPLOAD ── */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 2.5rem; text-align: center; cursor: pointer;
  transition: all .18s; background: var(--bg);
}
.upload-zone:hover { border-color: var(--blue); background: rgba(5,150,105,.03); }
.upload-zone.has-file { border-color: var(--red); background: rgba(249,115,22,.04); }
.upload-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.upload-title { font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.upload-sub { font-size: .82rem; color: var(--muted); }
.upload-ok { color: var(--red); font-weight: 700; font-size: .9rem; margin-top: .5rem; }
.earn-notice {
  margin-top: 1.5rem; padding: 1rem 1.2rem;
  background: rgba(249,115,22,.08); border: 1.5px solid rgba(249,115,22,.3);
  border-radius: var(--radius-sm); font-size: .88rem; color: #9A3412; line-height: 1.6;
}

/* ── SUCCESS ── */
.success-wrap { max-width: 500px; margin: 0 auto; text-align: center; padding: 4rem 2rem; }
.success-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; margin: 0 auto 1.5rem; color: #fff;
  box-shadow: 0 8px 30px rgba(255,59,48,.18);
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.success-title { font-size: 2rem; font-weight: 900; margin-bottom: .6rem; color: var(--darkest); letter-spacing: -1px; }
.success-sub { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.earnings-card {
  background: #fff;
  border-radius: var(--radius); padding: 1.5rem; color: var(--darkest); margin-bottom: 2rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(226,232,240,.9);
}
.earnings-card::after {
  content: ''; position: absolute; right: -20px; top: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,59,48,.08);
}
.earnings-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; position: relative; z-index: 1; }
.earnings-card p { opacity: .75; font-size: .88rem; position: relative; z-index: 1; }
.earnings-big { font-size: 2.2rem; font-weight: 900; color: var(--red); margin-top: .5rem; position: relative; z-index: 1; letter-spacing: -1px; }
.share-box {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: .8rem 1rem;
  display: flex; align-items: center; gap: 10px;
}
.share-url { flex: 1; color: var(--blue); font-weight: 600; word-break: break-all; font-size: .85rem; }

/*  
   FRESHER DASHBOARD
  */
.fd-wallet-card {
  background: #ffffff;
  border-radius: var(--radius); padding: 1.8rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; box-shadow: var(--shadow);
  border: 1px solid rgba(226,232,240,.9); position: relative; overflow: hidden;
}
.fd-wallet-card::after {
  content: ''; position: absolute; right: -30px; bottom: -30px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,59,48,.08); pointer-events: none;
}
.fd-wallet-label { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.fd-wallet-amount { font-size: 2.4rem; font-weight: 900; color: var(--deep); letter-spacing: -1.5px; margin-bottom: 4px; }
.fd-wallet-sub { font-size: .82rem; color: var(--muted); }
.fd-wallet-icon { font-size: 2.8rem; position: relative; z-index: 1; color: var(--red); }

/*  
   COMPANY DASHBOARD — sidebar layout
  */
.dashboard { display: flex; min-height: calc(100vh - 66px); }
.sidebar {
  width: 260px; flex-shrink: 0;
  background: #F8FAFC;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  position: sticky; top: 66px; height: calc(100vh - 66px);
  overflow-y: auto;
  border-right: 1px solid rgba(226,232,240,.9);
}
.sidebar-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; }
.sidebar-logo-img { width: 40px; height: 40px; object-fit: contain; }
.sidebar-logo { font-size: 1.4rem; font-weight: 900; color: var(--darkest); letter-spacing: -.5px; }
.sidebar-logo span { color: var(--red); }
.sidebar-welcome {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.sidebar-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,59,48,.12); border: 1.5px solid rgba(255,59,48,.2);
  color: var(--deep); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .95rem;
}
.sidebar-name { font-weight: 600; color: var(--darkest); font-size: .88rem; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.slink {
  background: transparent; border: none;
  color: var(--darkest); padding: 11px 14px; border-radius: 10px;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  text-align: left; transition: all .18s; letter-spacing: -.1px;
}
.slink:hover { background: rgba(255,59,48,.08); color: var(--deep); }
.slink.active {
  background: rgba(255,59,48,.12); color: var(--deep);
  border-left: 3px solid var(--red); padding-left: 11px;
}
.sidebar-logout {
  margin-top: 1rem; background: transparent;
  border: 1px solid rgba(226,232,240,.9); color: var(--muted);
  padding: 10px 14px; border-radius: 10px;
  font-size: .85rem; cursor: pointer; transition: all .18s; text-align: left;
}
.sidebar-logout:hover { border-color: rgba(255,59,48,.3); color: var(--deep); }
.dash-main { flex: 1; padding: 2.5rem; overflow-y: auto; }
.dash-tab { display: none; }
.dash-tab.active { display: block; animation: fadeUp .25s ease; }
.dash-header { margin-bottom: 2rem; }
.dash-title { font-size: 1.7rem; font-weight: 900; margin-bottom: .4rem; color: var(--darkest); letter-spacing: -.5px; }
.dash-sub { color: var(--muted); font-size: .95rem; }
.search-box-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow); margin-bottom: 2rem;
}

/* ── CANDIDATE CARDS ── */
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.candidate-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.candidate-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #F97316);
}
.candidate-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.candidate-card.unlocked-card { border-color: rgba(5,150,105,.25); background: rgba(5,150,105,.02); }
.cc-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; }
.cc-avatar {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #047857, #059669);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #fff;
}
.cc-name { font-weight: 800; font-size: 1rem; margin-bottom: 2px; color: var(--darkest); letter-spacing: -.3px; }
.cc-meta { font-size: .76rem; color: var(--muted); }
.cc-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: .9rem; }
.cc-skill-match { background: rgba(5,150,105,.1); color: var(--blue); border: 1px solid rgba(5,150,105,.2); padding: 3px 10px; border-radius: 20px; font-size: .7rem; font-weight: 700; }
.cc-skill-other { background: var(--bg); color: var(--muted); border: 1px solid var(--border); padding: 3px 10px; border-radius: 20px; font-size: .7rem; }
.cc-stats { display: flex; gap: .6rem; margin-bottom: 1rem; }
.cc-stat { flex: 1; background: var(--bg); border-radius: 8px; padding: .5rem .7rem; }
.cc-stat-label { font-size: .66rem; color: var(--muted); }
.cc-stat-val { font-size: .84rem; font-weight: 700; color: var(--text); }
.cc-progress { margin-bottom: 1rem; }
.cc-prog-label { display: flex; justify-content: space-between; font-size: .7rem; color: var(--muted); margin-bottom: 4px; }
.cc-prog-bar { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.cc-prog-fill { height: 100%; background: linear-gradient(90deg, #059669, #F97316); border-radius: 3px; }
.cc-actions { display: flex; gap: 8px; }
.btn-view-profile {
  flex: 1; padding: 8px 14px; border-radius: 40px;
  background: transparent; color: var(--blue); border: 1.5px solid var(--border);
  font-size: .8rem; font-weight: 700; cursor: pointer; transition: all .15s;
  text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center;
}
.btn-view-profile:hover { border-color: var(--blue); background: rgba(5,150,105,.06); text-decoration: none; }
.btn-unlock-card {
  flex: 1; padding: 8px 14px; border-radius: 40px;
  background: var(--red); color: #fff; border: none;
  font-size: .8rem; font-weight: 800; cursor: pointer; transition: all .15s;
  box-shadow: 0 3px 10px rgba(249,115,22,.4);
}
.btn-unlock-card:hover { background: #EA580C; transform: translateY(-1px); }
.match-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--red), var(--red-l));
  color: var(--darkest); font-size: .68rem; font-weight: 800;
  padding: 3px 9px; border-radius: 20px;
}
.unlocked-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(5,150,105,.1); color: var(--blue);
  border: 1px solid rgba(5,150,105,.22);
  font-size: .68rem; font-weight: 800; padding: 3px 9px; border-radius: 20px;
}
.no-results { text-align: center; padding: 4rem 2rem; color: var(--muted); grid-column: 1/-1; }
.no-results .nr-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── PROFILE PAGE ── */
.profile-page { background: var(--bg); min-height: calc(100vh - 66px); padding: 2.5rem 1rem; }
.profile-wrap { max-width: 900px; margin: 0 auto; }
.profile-top {
  background: #ffffff;
  border: 1.5px solid rgba(226,232,240,.9);
  border-radius: var(--radius); padding: 2rem;
  display: flex; gap: 2rem; align-items: flex-start;
  margin-bottom: 1.5rem; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.profile-top::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,59,48,.12) 0%, transparent 70%);
}
.avatar-ring {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #FF3B30, #ff4d4d);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: #2E2E33;
  box-shadow: 0 4px 20px rgba(255,59,48,.2); position: relative; z-index: 1;
}
.profile-info { flex: 1; position: relative; z-index: 1; }
.profile-name { font-size: 1.6rem; font-weight: 900; margin-bottom: .3rem; color: var(--darkest); letter-spacing: -.5px; }
.profile-meta { font-size: .88rem; color: var(--muted); margin-bottom: .8rem; }
.profile-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.badge { padding: 5px 13px; border-radius: 40px; font-size: .76rem; font-weight: 700; border: 1.5px solid; }
.badge-skill { background: rgba(255,59,48,.08); color: var(--deep); border-color: rgba(255,59,48,.18); }
.badge-open  { background: rgba(255,59,48,.12); color: var(--red); border-color: rgba(255,59,48,.25); }
.profile-earning {
  background: rgba(255,59,48,.09); border: 1.5px solid rgba(255,59,48,.2);
  border-radius: var(--radius-sm); padding: .8rem 1.2rem;
  display: flex; align-items: center; gap: 10px;
}
.earning-icon { font-size: 1.3rem; }
.earning-text { font-size: .85rem; color: var(--darkest); line-height: 1.4; }
.earning-text strong { display: block; font-size: 1rem; color: var(--red); }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.profile-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.card-label {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; color: var(--blue); margin-bottom: 1rem;
}
.lock-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); grid-column: 1/-1;
}
.lock-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(5,150,105,.05); border: 1.5px solid rgba(5,150,105,.18);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-top: .5rem;
}
.lock-icon { font-size: 1.8rem; }
.lock-text { flex: 1; }
.lock-text strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: .2rem; font-weight: 700; }
.lock-text span { font-size: .82rem; color: var(--muted); }
.contact-item { background: var(--bg); border-radius: 10px; padding: 1rem; border: 1px solid var(--border); }
.ci-label { font-size: .7rem; color: var(--muted); margin-bottom: 4px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; }
.ci-value { font-size: .88rem; font-weight: 700; color: var(--text); }
.ci-value a { color: var(--blue); }

/* ── MODAL ── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(6,78,59,.3);
  z-index: 300; display: none; backdrop-filter: blur(8px);
}
.modal-backdrop.show { display: block; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -60%);
  background: #fff; border-radius: 24px; padding: 2.5rem;
  width: 420px; max-width: calc(100vw - 2rem);
  z-index: 400; display: none; text-align: center;
  box-shadow: 0 24px 80px rgba(6,78,59,.2);
  border: 1.5px solid var(--border);
}
.modal.show { display: block; animation: slideUp .25s cubic-bezier(.34,1.56,.64,1); transform: translate(-50%, -50%); }
@keyframes slideUp { from{opacity:0;transform:translate(-50%,-40%)} to{opacity:1;transform:translate(-50%,-50%)} }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg); border: none; width: 32px; height: 32px;
  border-radius: 50%; cursor: pointer; font-size: .9rem; color: var(--muted); transition: all .15s;
}
.modal-close:hover { background: var(--border); }
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; color: var(--darkest); letter-spacing: -.5px; }
.modal-body { margin-bottom: 1.5rem; font-size: .9rem; color: var(--muted); line-height: 1.7; }
.modal-price-box {
  background: rgba(5,150,105,.05); border-radius: var(--radius-sm);
  padding: 1rem; margin: 1rem 0; border: 1.5px solid rgba(5,150,105,.18);
}
.modal-price { font-size: 2.2rem; font-weight: 900; color: var(--darkest); letter-spacing: -1px; }

/* ── UNLOCKED LIST ── */
.unlocked-list-item {
  background: #fff; border: 1.5px solid rgba(3,90,166,.2);
  border-radius: var(--radius); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem; box-shadow: var(--shadow); transition: box-shadow .2s;
}
.unlocked-list-item:hover { box-shadow: var(--shadow-lg); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: rgba(15,23,42,.95); color: #fff;
  padding: 12px 24px; border-radius: 40px; font-size: .88rem; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 999;
  border: 1px solid rgba(255,59,48,.18);
  box-shadow: 0 8px 32px rgba(15,23,42,.2);
}
.toast.show { opacity: 1; }

/*  
   FOOTER
  */
.site-footer {
  background: #F8FAFC;
  margin-top: 4rem;
  padding: 2.6rem 5% 0;
  border-top: 3px solid var(--red);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
}
.footer-watermark {
  overflow: hidden;
  line-height: 1;
  text-align: center;
}
.footer-brand-shadow {
  font-size: clamp(5.5rem, 25vw, 10rem);
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--darkest);
  opacity: .05;
  white-space: nowrap;
  user-select: none;
  margin: 1rem 0;
}
.footer-brand { max-width: 320px; display: flex; flex-direction: column; gap: .9rem; }
.footer-logo-img {
  width: 64px; height: 64px;
  object-fit: contain;
  display: block;
}
.footer-tagline { font-size: .92rem; color: var(--muted); line-height: 1.65; margin: 0; }

.footer-links-group { display: flex; gap: 3.5rem; }
.footer-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col-title {
  font-size: .68rem; font-weight: 800;
  color: var(--deep);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.footer-col a { font-size: .88rem; color: var(--darkest); transition: color .15s; }
.footer-col a:hover { color: var(--deep); text-decoration: none; }
.footer-social {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #EEF2F6;
  color: var(--deep);
  transition: background .18s, color .18s, transform .18s;
}
/*.footer-social-link:hover { background: var(--deep); color: #fff; transform: translateY(-3px); text-decoration: none; }*/
.footer-social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(226,232,240,.9);
}
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex: 1;
}
.footer-copy { font-size: .8rem; color: var(--muted); }
.footer-legal-link {
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.footer-legal-link:hover { color: var(--deep); text-decoration: none; }
.footer-ds   { font-size: .8rem; color: var(--muted); }
.footer-ds-link { color: var(--deep); font-weight: 800; text-decoration: none; }
.footer-ds-link:hover { color: var(--red); text-decoration: none; }

/*  
   DS CREDITS PAGE
  */
.ds-page { background: var(--bg); min-height: calc(100vh - 66px); }
.ds-hero {
  background: linear-gradient(135deg, #FFF1ED 0%, #FFE0DB 55%, #FFFFFF 100%);
  padding: 72px 5% 64px; text-align: center; position: relative; overflow: hidden;
}
.ds-hero::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,59,48,.12) 0%, transparent 65%);
  right: -80px; top: -80px; pointer-events: none;
}
.ds-hero h1 {
  font-size: clamp(28px,4vw,48px); font-weight: 900; color: var(--darkest);
  letter-spacing: -1.5px; margin-bottom: 14px; position: relative; z-index: 1;
}
.ds-hero p {
  font-size: .95rem; color: var(--muted); max-width: 520px;
  margin: 0 auto; position: relative; z-index: 1; line-height: 1.65;
}
.ds-body { max-width: 860px; margin: 0 auto; padding: 52px 5% 60px; }
.ds-section {
  background: #fff; border-radius: 18px; padding: 32px 36px;
  margin-bottom: 22px; box-shadow: 0 2px 16px rgba(5,150,105,.07);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.ds-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #F97316);
  border-radius: 18px 18px 0 0;
}
.ds-section h2 {
  font-size: 1.2rem; font-weight: 900; color: var(--darkest);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--bg);
  letter-spacing: -.3px;
}
.credit-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--bg); align-items: flex-start;
}
.credit-row:last-child { border-bottom: none; padding-bottom: 0; }
.credit-role {
  font-size: .7rem; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: .1em; padding-top: 3px;
}
.credit-names { display: flex; flex-direction: column; gap: 8px; }
.credit-name {
  font-size: .95rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.credit-name::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #059669, #F97316); flex-shrink: 0;
}
.ds-gst-card {
  background: #fff;
  border-radius: 18px; padding: 28px 36px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; border: 1px solid rgba(226,232,240,.9);
  position: relative; overflow: hidden;
}
.ds-gst-card::before {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,59,48,.12) 0%, transparent 65%);
  right: -60px; bottom: -80px; pointer-events: none;
}
.gst-label {
  font-size: .68rem; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px;
}
.gst-number {
  font-size: clamp(16px,3vw,24px); font-weight: 900; color: var(--darkest); letter-spacing: 3px;
  position: relative; z-index: 1;
}
.gst-badge {
  background: rgba(255,59,48,.12); border: 1px solid rgba(255,59,48,.2);
  border-radius: 10px; padding: 10px 20px;
  font-size: .82rem; font-weight: 800; color: var(--red);
  display: flex; align-items: center; gap: 8px; position: relative; z-index: 1;
}
.gst-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  display: inline-block; animation: pulse 2s infinite;
}
.ds-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ds-contact-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 22px; transition: transform .2s, box-shadow .2s;
}
.ds-contact-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(5,150,105,.12); }
.ds-contact-card.full { grid-column: 1 / -1; }
.ds-contact-card .icon { font-size: 1.6rem; margin-bottom: 10px; }
.ds-contact-card h3 {
  font-size: .7rem; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.ds-contact-card a { color: var(--text); font-weight: 700; font-size: .88rem; transition: color .15s; }
.ds-contact-card a:hover { color: var(--blue); text-decoration: none; }

/* ── OTP ── */
.otp-section {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem;
}
.otp-section-title {
  font-size: .84rem; font-weight: 800; color: var(--text);
  margin-bottom: .9rem; display: flex; align-items: center; gap: 6px;
}
.otp-row { display: flex; gap: 10px; align-items: flex-end; }
.otp-verify-row { display: flex; gap: 10px; align-items: center; margin-top: .8rem; }
.otp-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 1rem; font-weight: 800;
  letter-spacing: 5px; text-align: center; color: var(--blue);
  background: #fff; outline: none; transition: border-color .18s;
}
.otp-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(5,150,105,.15); }
.btn-otp-send {
  padding: 10px 18px; background: rgba(5,150,105,.08); color: var(--blue);
  border: 1.5px solid rgba(5,150,105,.22); border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 800; cursor: pointer; white-space: nowrap;
  transition: all .18s; flex-shrink: 0;
}
.btn-otp-send:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-otp-send:disabled { opacity: .5; cursor: not-allowed; }
.btn-otp-verify {
  padding: 10px 18px; background: var(--red); color: #fff; border: none;
  border-radius: var(--radius-sm); font-size: .82rem; font-weight: 800;
  cursor: pointer; white-space: nowrap; transition: all .18s; flex-shrink: 0;
}
.btn-otp-verify:hover { background: #EA580C; }
.otp-status { margin-top: .6rem; font-size: .8rem; font-weight: 700; min-height: 20px; }
.otp-status.success { color: #1a7a3c; }
.otp-status.error   { color: #a83428; }
.otp-status.info    { color: var(--blue); }

/* GST verify */
.review-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.4rem; margin-bottom: 1rem;
}
.review-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.review-row:last-child { border-bottom: none; }
.review-key { width: 140px; flex-shrink: 0; color: var(--muted); font-weight: 600; font-size: .82rem; }
.review-val { color: var(--text); font-weight: 700; }
.verified-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(5,150,105,.08); color: var(--blue);
  border: 1px solid rgba(5,150,105,.22); border-radius: 20px;
  padding: 2px 10px; font-size: .7rem; font-weight: 800; margin-left: 6px;
}

/*  ════════════
   FULLY RESPONSIVE — Phone · Tablet · Laptop
 ════════════ */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* NAV */
  #main-nav { padding: 0 1.5rem; height: 68px; }
  .nav-btn { padding: 7px 14px; font-size: .82rem; }

  /* HERO */
  .hero { gap: 2rem; padding: 3rem 4%; }
  .hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
  .hero-search-grid { grid-template-columns: 1fr 1fr; }

  /* SIDEBAR */
  .sidebar { width: 220px; }
  .dash-main { padding: 1.8rem; }

  /* AUTH */
  .auth-split-page { grid-template-columns: 360px 1fr; }
  .auth-left { padding: 2rem 1.8rem; }
  .auth-brand { font-size: 1.7rem; }

  /* STEPS */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* DS PAGE */
  .ds-section { padding: 24px 28px; }
  .ds-contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── LARGE PHONE / SMALL TABLET (≤ 768px) ── */
@media (max-width: 768px) {
  /* NAV — compact */
  #main-nav { padding: 0 1rem; height: 62px; gap: .4rem; }
  .logo { font-size: 1.35rem; }
  .nav-logo-img { width: 80px; height: 80px; }
  .nav-links { gap: .3rem; }
  .nav-btn { padding: 6px 12px; font-size: .78rem; }
  .nav-primary { padding: 7px 14px; }

  /* HERO — single column */
  .hero {
    padding: 2.5rem 5%;
    min-height: auto;
    gap: 0;
  }
  .hero-categories { gap: .6rem; margin-top: 1.6rem; }
  .hero-cat-pill { padding: .55rem .85rem; }
  .hero-cat-label { font-size: .76rem; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); letter-spacing: -1px; }
  .hero-sub { font-size: .92rem; }
  .hero-search-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-search-card { padding: 1.1rem; }
  .hero-ctas { flex-direction: column; gap: .8rem; }
  .btn-hero-primary, .btn-hero-sec { width: 100%; justify-content: center; padding: 13px 20px; }

  /* MARQUEE */
  .marquee-item { font-size: .75rem; padding: 0 .9rem; }

  /* HOW IT WORKS */
  .how-section { padding: 3.5rem 5%; }
  .section-title { font-size: 1.6rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step-card { padding: 1.2rem 1rem; }

  /* FORMS */
  .form-page { padding: 1.5rem .8rem; }
  .form-wrap { border-radius: 16px; }
  .form-header { padding: 1.8rem 1.5rem 1.4rem; }
  .form-header h2 { font-size: 1.4rem; }
  .form-body { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
  .form-nav { flex-direction: column-reverse; gap: .8rem; }
  .form-nav .btn-next,
  .form-nav .btn-back { width: 100%; justify-content: center; }

  /* AUTH SPLIT — full width, no left panel */
  .auth-split-page { grid-template-columns: 1fr; min-height: auto; }
  .auth-left { display: none; }
  .auth-right { padding: 2rem 1.5rem; min-height: calc(100vh - 58px); }
  .auth-back-btn { top: 1rem; left: 1rem; }
  .auth-tabs { margin: 3rem 0 1.5rem; }
  .auth-title { font-size: 1.45rem; }
  .auth-subtitle { font-size: .85rem; margin-bottom: 1.4rem; }
  .auth-step-labels { font-size: .65rem; }

  /* OTP */
  .otp-row { flex-wrap: wrap; }
  .otp-row .field { min-width: 0; }
  .btn-otp-send { width: 100%; margin-top: 6px; }
  .otp-verify-row { flex-wrap: wrap; }
  .btn-otp-verify { width: 100%; margin-top: 6px; }

  /* DASHBOARD — stacked */
  .dashboard { flex-direction: column; }
  .sidebar {
    width: 100%; height: auto; position: static;
    flex-direction: column; padding: 1rem 1rem .8rem;
    border-right: none; border-bottom: 1px solid rgba(255,59,48,.15);
  }
  .sidebar-logo-wrap { margin-bottom: 1rem; }
  .sidebar-welcome { margin-bottom: 1rem; padding-bottom: 1rem; }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .slink { padding: 8px 12px; font-size: .78rem; border-radius: 8px; }
  .slink.active { border-left: none; border-bottom: 2px solid var(--red); padding-left: 12px; }
  .sidebar-logout { margin-top: .5rem; width: auto; align-self: flex-start; }
  .dash-main { padding: 1.2rem 1rem; }
  .dash-title { font-size: 1.35rem; }
  .search-box-card { padding: 1.2rem; }

  /* CANDIDATE CARDS */
  .results-grid { grid-template-columns: 1fr; }
  .cc-stats { flex-wrap: wrap; }
  .cc-actions { flex-direction: column; }
  .btn-view-profile, .btn-unlock-card { width: 100%; justify-content: center; }

  /* PROFILE PAGE */
  .profile-page { padding: 1.5rem .8rem; }
  .profile-top { flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; }
  .profile-info { width: 100%; }
  .profile-badges { justify-content: center; }
  .profile-earning { flex-direction: column; text-align: center; }
  .profile-grid { grid-template-columns: 1fr; }
  .lock-badge { flex-direction: column; text-align: center; }
  .lock-badge .btn-unlock { width: 100%; }

  /* MODAL */
  .modal { width: calc(100vw - 2rem); padding: 2rem 1.5rem; }
  .modal-price { font-size: 1.8rem; }

  /* FOOTER */
  .site-footer { padding: 2rem 5% 0; margin-top: 2rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-brand { max-width: 100%; }
  .footer-links-group { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: .8rem; }
  .footer-legal { justify-content: center; gap: 1.2rem; }
  .footer-brand-shadow { font-size: 3rem; letter-spacing: -1px; }

  /* DS PAGE */
  .ds-hero { padding: 48px 5% 40px; }
  .ds-hero h1 { font-size: 1.8rem; }
  .ds-body { padding: 32px 5% 40px; }
  .ds-section { padding: 20px 18px; }
  .credit-row { grid-template-columns: 90px 1fr; gap: 12px; }
  .ds-gst-card { padding: 20px 18px; flex-direction: column; gap: 14px; }
  .gst-number { font-size: 1rem; letter-spacing: 2px; }
  .ds-contact-grid { grid-template-columns: 1fr; }
  .ds-contact-card.full { grid-column: 1; }

  /* REVIEW CARD */
  .review-row { flex-direction: column; gap: 3px; }
  .review-key { width: auto; }

  /* JOB POST */
  .job-post-banner { flex-direction: column; gap: 1rem; }
  .job-post-footer { flex-direction: column; align-items: stretch; }
  .job-post-footer .btn-next { width: 100%; justify-content: center; }
  .job-post-terms { flex-wrap: wrap; gap: .8rem; }
}

/* ── PHONE (≤ 480px) ── */
@media (max-width: 480px) {
  /* NAV — hide middle links, keep logo + primary CTA */
  #main-nav { height: 58px; }
  .logo { font-size: 1.25rem; }
  .nav-logo-img { width: 80px; height: 80px; }
  .nav-links .nav-ghost { display: none; }
  .nav-primary { font-size: .76rem; padding: 6px 12px; }

  /* HERO */
  .hero { padding: 2rem 4%; }
  .hero h1 { font-size: 1.65rem; letter-spacing: -.8px; }
  .hero-sub { font-size: .85rem; }
  .hero-tag { font-size: .72rem; padding: 5px 13px; }
  .hero-search-card { padding: .9rem; }
  .hero-search-title { font-size: .78rem; }
  .hero-search-label { font-size: .62rem; }
  .hero-search-input { font-size: .8rem; padding: 8px 10px; }
  .hero-search-btn { font-size: .8rem; padding: 9px 16px; width: 100%; }
  .hero-search-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-search-note { font-size: .7rem; }

  /* HOW IT WORKS */
  .how-section { padding: 2.5rem 4%; }
  .section-title { font-size: 1.4rem; }
  .section-sub { font-size: .88rem; }
  .steps-grid { grid-template-columns: 1fr; gap: .8rem; }
  .step-card { padding: 1.1rem; }
  .step-num { width: 38px; height: 38px; font-size: .85rem; }

  /* AUTH */
  .auth-right { padding: 1.5rem 1.1rem; }
  .auth-tabs { margin: 2.5rem 0 1.2rem; }
  .auth-tab { padding: 8px 16px; font-size: .82rem; }
  .auth-title { font-size: 1.3rem; }
  .auth-progress-wrap { margin-bottom: 1.4rem; }
  .auth-step-labels span { font-size: .6rem; }

  /* FORM */
  .form-header { padding: 1.4rem 1.1rem 1.1rem; }
  .form-header h2 { font-size: 1.2rem; }
  .form-body { padding: 1.2rem 1.1rem; }
  label { font-size: .8rem; }
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="url"], input[type="password"], select, textarea {
    font-size: .88rem; padding: 10px 12px;
  }
  .step-label { font-size: .72rem; }
  .skill-chip { padding: 6px 12px; font-size: .78rem; }
  .upload-zone { padding: 1.8rem 1rem; }

  /* SUCCESS */
  .success-wrap { padding: 2.5rem 1rem; }
  .success-icon { width: 72px; height: 72px; font-size: 2rem; }
  .success-title { font-size: 1.6rem; }
  .earnings-big { font-size: 1.8rem; }
  .share-box { flex-direction: column; align-items: flex-start; gap: 8px; }
  .btn-copy { align-self: stretch; text-align: center; }

  /* DASHBOARD */
  .sidebar-nav { gap: 3px; }
  .slink { padding: 7px 10px; font-size: .74rem; }
  .dash-title { font-size: 1.2rem; }
  .dash-sub { font-size: .82rem; }
  .search-box-card { padding: 1rem; }

  /* CANDIDATE CARD */
  .candidate-card { padding: 1.1rem; }
  .cc-name { font-size: .92rem; }
  .match-badge, .unlocked-tag { font-size: .6rem; padding: 2px 7px; top: .8rem; right: .8rem; }

  /* PROFILE */
  .avatar-ring { width: 72px; height: 72px; font-size: 1.5rem; }
  .profile-name { font-size: 1.3rem; }
  .profile-meta { font-size: .8rem; }
  .badge { padding: 4px 10px; font-size: .7rem; }
  .card-label { font-size: .68rem; }

  /* MODAL */
  .modal { padding: 1.6rem 1.1rem; border-radius: 18px; }
  .modal-title { font-size: 1.2rem; }
  .modal-icon { font-size: 2.4rem; }

  /* FOOTER */
  .footer-logo-img { width: 52px; height: 52px; }
  .footer-tagline { font-size: .82rem; }
  .footer-col a { font-size: .82rem; }
  .footer-copy, .footer-ds { font-size: .74rem; }

  /* DS PAGE */
  .ds-hero h1 { font-size: 1.5rem; }
  .ds-hero p { font-size: .85rem; }
  .ds-section h2 { font-size: 1rem; }
  .credit-row { grid-template-columns: 80px 1fr; gap: 10px; font-size: .88rem; }
  .credit-name { font-size: .88rem; }
  .gst-number { font-size: .9rem; letter-spacing: 1.5px; }
  .gst-badge { font-size: .75rem; padding: 8px 14px; }
  .ds-contact-card { padding: 16px; }
  .ds-contact-card a { font-size: .82rem; }

  /* JOB POSTING */
  .job-tabs-row { gap: 0; }
  .job-sub-tab { padding: 8px 14px; font-size: .68rem; }
  .job-post-card { padding: 1.2rem 1rem; }
  .job-post-banner-price { font-size: 1.5rem; }
  .job-card { padding: 1rem; }
  .job-card-title { font-size: .95rem; }
}

/* ── VERY SMALL PHONES (≤ 360px) ── */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.45rem; }
  .auth-tab { padding: 7px 12px; font-size: .76rem; }
  .nav-primary { font-size: .7rem; padding: 5px 10px; }
  .sidebar-nav { flex-direction: column; }
  .slink { font-size: .8rem; }
}

/*  ════════════
   MOBILE HAMBURGER NAV
 ════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 6px; cursor: pointer;
  background: rgba(15,23,42,.05); border: 1.5px solid rgba(15,23,42,.1);
  border-radius: 8px;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--darkest); border-radius: 2px; transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-drawer {
  display: none;
  flex-direction: column; gap: 8px;
  position: fixed; top: 54px; left: 0; right: 0;
  background: #ffffff;
  border-bottom: 2px solid rgba(255,59,48,.16);
  padding: 1rem 1.2rem 1.4rem;
  z-index: 190;
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  animation: slideDownDrawer .22s ease;
}
@keyframes slideDownDrawer {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-drawer.open { display: flex; }

@media (max-width: 900px) {
  .nav-centre { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav-drawer { top: 54px; }
}

/* ── FORM WRAP — full width on mobile ── */
@media (max-width: 480px) {
  .form-wrap { border-radius: 0; box-shadow: none; border-left: none; border-right: none; }
  .form-page { padding: 0; background: #fff; }
}
/*  ═════════════
   AUTH SPLIT LAYOUT (Fresher Login + Company Login)
 ════════════ */
.auth-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
}

/* LEFT brand panel */
.auth-brand-panel {
  background: linear-gradient(160deg, #FFF1ED 0%, #FFE0DB 45%, #FFFFFF 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 8%; position: relative; overflow: hidden;
}
.auth-brand-panel::before {
  content: ''; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255,59,48,.08);
  bottom: -120px; right: -120px; pointer-events: none;
}
.auth-brand-panel::after {
  content: ''; position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,59,48,.08);
  top: -60px; left: -60px; pointer-events: none;
}
.auth-brand-inner { position: relative; z-index: 1; max-width: 380px; }
.auth-brand-logo  { width: 58px; height: 58px; object-fit: contain; margin-bottom: 1.1rem; }
.auth-brand-title {
  font-size: 2rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--darkest); margin-bottom: .5rem;
}
.auth-brand-title span { color: var(--red); }
.auth-brand-tagline { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.2rem; }
.auth-brand-features { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.2rem; }
.auth-brand-feat {
  display: flex; gap: 13px; align-items: flex-start;
  color: var(--darkest); font-size: .88rem; line-height: 1.55;
}
.auth-brand-feat strong { display: block; color: var(--darkest); font-weight: 700; margin-bottom: 2px; }
.auth-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,59,48,.08); border: 1px solid rgba(255,59,48,.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--deep);
}
.auth-brand-stats {
  display: flex; border: 1px solid rgba(226,232,240,.9);
}
.auth-brand-stat {
  flex: 1; padding: 15px 10px; text-align: center;
  border-right: 1px solid rgba(226,232,240,.9);
}
.auth-brand-stat:last-child { border-right: none; }
.abs-num { font-size: 1.3rem; font-weight: 800; color: var(--deep); line-height: 1; margin-bottom: 4px; }
.abs-lbl { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* RIGHT form panel */
.auth-form-panel {
  background: var(--light);
  padding: 52px 8%;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.auth-back-btn {
  background: transparent; border: none;
  font-family: var(--font); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  cursor: pointer; padding: 0; margin-bottom: 2rem;
  align-self: flex-start; transition: color .18s;
}
.auth-back-btn:hover { color: var(--blue); }
.auth-form-title {
  font-size: 1.9rem; font-weight: 800; color: var(--dark);
  margin-bottom: .4rem; letter-spacing: -.02em;
}
.auth-form-sub { font-size: .9rem; color: var(--muted); margin-bottom: 1.6rem; line-height: 1.6; }
.auth-submit-btn {
  width: 100%; padding: 14px;
  background: var(--red); color: var(--dark); border: none;
  font-family: var(--font); font-size: .8rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: all .18s; margin-bottom: 1.2rem;
}
.auth-submit-btn:hover { background: #F7B336; transform: translateY(-1px); }
.auth-switch-hint {
  text-align: center; font-size: .88rem; color: var(--muted); margin-bottom: 1rem;
}
.auth-switch-hint a { color: var(--blue); font-weight: 700; text-decoration: none; }
.auth-switch-hint a:hover { text-decoration: underline; }
.auth-info-box {
  margin-top: .8rem; padding: .9rem 1.1rem;
  background: rgba(5,150,105,.06); border-left: 3px solid var(--red);
  font-size: .82rem; color: var(--muted); line-height: 1.7;
}
.auth-progress-bar {
  display: flex; gap: 0; margin-bottom: 1.6rem;
}
.auth-progress-bar .prog-step { flex: 1; }

/* Responsive */
@media (max-width: 860px) {
  .auth-split-wrap { grid-template-columns: 1fr; }
  .auth-brand-panel { display: none; }
  .auth-form-panel { padding: 2.5rem 5%; min-height: calc(100vh - 70px); }
}
/*  ════════════
   LIVE JOB LISTINGS — Hero search results on home page
 ════════════ */
.jobs-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.job-listing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.job-listing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #F97316);
}
.job-listing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.jlc-company {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.jlc-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--darkest);
  margin-bottom: 4px;
  letter-spacing: -.3px;
}
.jlc-package {
  font-size: 1rem;
  font-weight: 800;
  color: var(--darkest);
  margin-bottom: .8rem;
}
.jlc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: .6rem;
}
.jlc-tag {
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  background: rgba(5,150,105,.08);
  color: var(--blue);
  border: 1px solid rgba(5,150,105,.2);
  border-radius: 20px;
}
.jlc-tag-gold {
  background: rgba(249,115,22,.1);
  color: #9A3412;
  border-color: rgba(249,115,22,.3);
}

@media (max-width: 480px) {
  .jobs-listing-grid { grid-template-columns: 1fr; }
}
/*  ════════════
   STATIC PAGES — About · Contact · Terms · Privacy
 ════════════ */
.static-page { background: var(--bg); min-height: calc(100vh - 66px); }

.static-hero {
  background: linear-gradient(135deg, #FFF1ED 0%, #FFE0DB 50%, #FFFFFF 100%);
  padding: 4rem 5%; text-align: center; position: relative; overflow: hidden;
}
.static-hero::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,59,48,.12) 0%, transparent 65%);
  right: -80px; top: -80px; pointer-events: none;
}
.static-hero-tag {
  display: inline-block; background: rgba(255,59,48,.12);
  border: 1.5px solid rgba(255,59,48,.2); border-radius: 40px;
  padding: 5px 18px; font-size: .75rem; font-weight: 700;
  color: var(--red); letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.static-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--darkest);
  letter-spacing: -1.5px; margin-bottom: .8rem; line-height: 1.1;
  position: relative; z-index: 1;
}
.static-hero p {
  font-size: .95rem; color: var(--muted); max-width: 540px;
  margin: 0 auto; line-height: 1.7; position: relative; z-index: 1;
}

.static-body { max-width: 860px; margin: 0 auto; padding: 3rem 5% 4rem; }

.static-section {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem 2.2rem;
  margin-bottom: 1.5rem; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.static-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #F97316);
}
.static-section h2 {
  font-size: 1.15rem; font-weight: 900; color: var(--darkest);
  margin-bottom: .9rem; letter-spacing: -.3px;
}
.static-section p { font-size: .92rem; color: var(--muted); line-height: 1.75; }
.static-list {
  list-style: none; display: flex; flex-direction: column; gap: .6rem;
}
.static-list li {
  font-size: .9rem; color: var(--muted); line-height: 1.65;
  padding-left: 1.4rem; position: relative;
}
.static-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; font-size: .8rem;
}

/* About — feature cards */
.static-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.static-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); text-align: center;
  position: relative; overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.static-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #F97316);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.static-card:hover::before { transform: scaleX(1); }
.static-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.static-card-icon { font-size: 2rem; margin-bottom: .8rem; }
.static-card h3 { font-size: .95rem; font-weight: 800; color: var(--darkest); margin-bottom: .5rem; letter-spacing: -.2px; }
.static-card p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* About — stats row */
.static-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.static-stat {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 1.2rem; text-align: center;
}
.static-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--red); letter-spacing: -1px; margin-bottom: 4px; }
.static-stat-label { font-size: .72rem; color: var(--muted); font-weight: 600; }

/* Contact cards grid */
.static-contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
.static-contact-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.static-contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.static-contact-icon { font-size: 2rem; margin-bottom: .8rem; }
.static-contact-card h3 {
  font-size: .7rem; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .3rem;
}
.static-contact-card p { font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.static-contact-card a {
  font-size: .9rem; font-weight: 700; color: var(--darkest);
  text-decoration: none; transition: color .15s;
}
.static-contact-card a:hover { color: var(--blue); text-decoration: underline; }

/* GST box */
.static-gst-box {
  background: #fff;
  border-radius: 14px; padding: 1.8rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  border: 1px solid rgba(226,232,240,.9);
}
.static-gst-badge {
  background: rgba(255,59,48,.12); border: 1px solid rgba(255,59,48,.2);
  border-radius: 10px; padding: 10px 20px;
  font-size: .85rem; font-weight: 800; color: var(--red);
}

/* Responsive */
@media (max-width: 768px) {
  .static-hero { padding: 3rem 5%; }
  .static-hero h1 { font-size: 1.8rem; }
  .static-cards { grid-template-columns: 1fr; }
  .static-stats  { grid-template-columns: 1fr 1fr; }
  .static-contact-grid { grid-template-columns: 1fr; }
  .static-section { padding: 1.5rem; }
  .static-gst-box { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
  .static-hero h1 { font-size: 1.5rem; }
  .static-stats  { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .static-stat-num { font-size: 1.3rem; }
}

/*  
   CONTACT PAGE — extended sections
  */
.contact-wide { max-width: 1000px; }

/* Availability / response time strip */
.contact-strip {
  display: flex; align-items: center; gap: 2rem;
  background: var(--blue-pale);
  border: 1px solid rgba(255,59,48,.15);
  border-radius: var(--radius);
  padding: 1.4rem 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.contact-strip-item { display: flex; align-items: center; gap: .9rem; flex: 1; min-width: 220px; }
.contact-strip-icon { font-size: 1.4rem; }
.contact-strip-title { font-size: .85rem; font-weight: 800; color: var(--darkest); }
.contact-strip-sub { font-size: .8rem; color: var(--muted); }
.contact-strip-divider { width: 1px; height: 36px; background: rgba(255,59,48,.2); }

/* Section heading used above steps + FAQ */
.contact-section-head { text-align: center; margin: 3rem 0 1.6rem; }
.contact-section-head h2 {
  font-size: 1.5rem; font-weight: 900; color: var(--darkest);
  letter-spacing: -.5px; margin-bottom: .5rem;
}
.contact-section-head p { font-size: .9rem; color: var(--muted); }

/* Contact form card */
.contact-form-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2.2rem 2.4rem; margin: 2.5rem 0;
}
.contact-form-head h2 {
  font-size: 1.4rem; font-weight: 900; color: var(--darkest);
  letter-spacing: -.4px; margin-bottom: .4rem;
}
.contact-form-head p { font-size: .88rem; color: var(--muted); margin-bottom: 1.6rem; }
.contact-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem;
}
.contact-form-field-full { grid-column: 1 / -1; }
.contact-form-field { display: flex; flex-direction: column; gap: .4rem; }
.contact-form-field label {
  font-size: .75rem; font-weight: 700; color: var(--text);
  letter-spacing: .03em; text-transform: uppercase;
}
.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  font-family: var(--font); font-size: .92rem; color: var(--text);
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 10px 14px; outline: none;
  transition: border-color .15s, background .15s; resize: vertical;
}
.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--blue); background: #fff;
}
.contact-form-submit { margin-top: .4rem; }
.contact-form-status { font-size: .85rem; margin-top: .8rem; font-weight: 600; }
.contact-form-status.success { color: var(--green); }
.contact-form-status.error { color: var(--danger); }

/* What Happens Next — steps */
.contact-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.contact-step {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  position: relative; overflow: hidden;
}
.contact-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
.contact-step-num {
  font-size: 1.6rem; font-weight: 900; color: var(--red-pale);
  -webkit-text-stroke: 1.5px var(--red); letter-spacing: -1px;
  margin-bottom: .6rem;
}
.contact-step h3 { font-size: .95rem; font-weight: 800; color: var(--darkest); margin-bottom: .4rem; }
.contact-step p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* FAQ accordion */
.contact-faq { display: flex; flex-direction: column; gap: .8rem; }
.contact-faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.contact-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; background: none; border: none; cursor: pointer;
  padding: 1rem 1.3rem; font-family: var(--font);
  font-size: .92rem; font-weight: 700; color: var(--darkest); text-align: left;
}
.contact-faq-arrow { transition: transform .2s; color: var(--blue); flex-shrink: 0; }
.contact-faq-item.open .contact-faq-arrow { transform: rotate(180deg); }
.contact-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
  padding: 0 1.3rem;
}
.contact-faq-item.open .contact-faq-a { max-height: 200px; padding: 0 1.3rem 1.1rem; }
.contact-faq-a p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* Bottom CTA band */
.contact-cta-band {
  background: linear-gradient(135deg, var(--darkest), var(--deep));
  text-align: center; padding: 3.5rem 5%; margin-top: 1rem;
}
.contact-cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; color: #fff;
  letter-spacing: -.5px; margin-bottom: .6rem;
}
.contact-cta-band p { font-size: .92rem; color: rgba(255,255,255,.75); margin-bottom: 1.8rem; }
.contact-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 768px) {
  .contact-strip { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.4rem; }
  .contact-strip-divider { display: none; }
  .contact-form-card { padding: 1.6rem 1.4rem; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-steps { grid-template-columns: 1fr 1fr; }
}

/* Connect page — two form boxes */
.connect-boxes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
  margin: 2.5rem 0; align-items: stretch;
}
.connect-box {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column;
}
.connect-box form.contact-form-grid { flex: 1; }
.connect-box .contact-form-field-full.contact-form-submit { margin-top: auto; }
@media (max-width: 768px) {
  .connect-boxes { grid-template-columns: 1fr; }
}

/* Connect page — content card (right box) */
.connect-content-card {
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, var(--darkest) 0%, var(--deep) 55%, var(--red) 130%);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.connect-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  text-decoration: none;
}
.ccc-glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  z-index: -1;
}
.ccc-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: rgba(255,255,255,.14);
  margin-bottom: 1.2rem;
}
.ccc-title {
  font-size: 1.35rem; font-weight: 900; line-height: 1.35;
  letter-spacing: -.4px; margin-bottom: 1.4rem;
}
.ccc-title span { color: #ffd166; }
.ccc-points { list-style: none; padding: 0; margin: 0 0 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.ccc-points li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.92);
}
.ccc-num {
  font-size: .78rem; font-weight: 900; color: #fff;
  background: rgba(255,255,255,.16);
  border-radius: 6px; padding: 3px 7px; letter-spacing: .04em;
}
.ccc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .92rem;
  color: #fff; background: rgba(255,255,255,.16);
  border-radius: 999px; padding: 10px 20px;
  width: fit-content;
  transition: background .2s, gap .2s;
}
.connect-content-card:hover .ccc-cta { background: rgba(255,255,255,.28); gap: 12px; }
.ccc-arrow { transition: transform .2s; }
.connect-content-card:hover .ccc-arrow { transform: translateX(3px); }

/* ══════ CAMPUS CONNECT PAGE ══════ */
.cc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--darkest) 0%, var(--deep) 55%, var(--red) 130%);
  padding: 5.5rem 5% 6rem;
  text-align: center;
  isolation: isolate;
}
.cc-hero-glow {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
  z-index: -1;
}
.cc-hero-glow-1 { width: 420px; height: 420px; top: -160px; left: -120px; }
.cc-hero-glow-2 { width: 320px; height: 320px; bottom: -140px; right: -80px; background: radial-gradient(circle, rgba(255,209,102,.18), transparent 70%); }
.cc-hero-inner { max-width: 760px; margin: 0 auto; }
.cc-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); color: #fff;
  border-radius: 40px; padding: 7px 18px;
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.cc-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1.22; margin-bottom: 1.2rem;
}
.cc-hero h1 span { color: var(--red-l); }
.cc-hero p { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.cc-hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--deep);
  font-weight: 800; font-size: .92rem;
  padding: 13px 26px; border-radius: 999px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.cc-hero-btn:hover { transform: translateY(-3px); text-decoration: none; }
.cc-hero-btn-light { background: rgba(255,255,255,.16); color: #fff; box-shadow: none; }

.cc-body { max-width: 1100px; margin: 0 auto; padding: 4.5rem 5%; }
.cc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.cc-feature {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.7rem;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.cc-feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red-l));
}
.cc-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cc-feature-num {
  font-size: 1.7rem; font-weight: 900; color: var(--red-pale);
  -webkit-text-stroke: 1.5px var(--red); letter-spacing: -1px;
  margin-bottom: .6rem;
}
.cc-feature-icon { font-size: 2rem; margin-bottom: .8rem; }
.cc-feature h3 { font-size: 1.05rem; font-weight: 800; color: var(--darkest); margin-bottom: .6rem; letter-spacing: -.2px; }
.cc-feature p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.cc-cta-band {
  margin-top: 4rem; text-align: center;
  background: linear-gradient(135deg, var(--darkest), var(--deep));
  border-radius: var(--radius); padding: 3.2rem 5%;
}
.cc-cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 900; color: #fff; letter-spacing: -.5px; margin-bottom: .6rem; }
.cc-cta-band p { font-size: .92rem; color: rgba(255,255,255,.75); margin-bottom: 1.8rem; }

@media (max-width: 768px) {
  .cc-features { grid-template-columns: 1fr; }
  .cc-hero { padding: 4rem 6% 4.5rem; }
  .cc-body { padding: 3rem 6%; }
}

/* ══════ CAMPUS CONNECT — HERO V2 (split layout) ══════ */
.cc-hero-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #232327 0%, var(--darkest) 45%, #3a2420 100%);
  padding: 4.5rem 5%;
  isolation: isolate;
}
.cc-hero-v2-glow { position: absolute; border-radius: 50%; z-index: -1; }
.cc-hero-v2-glow-1 {
  width: 460px; height: 460px; top: -180px; left: -140px;
  background: radial-gradient(circle, rgba(255,59,48,.18), transparent 70%);
}
.cc-hero-v2-glow-2 {
  width: 380px; height: 380px; bottom: -160px; right: -100px;
  background: radial-gradient(circle, rgba(255,138,0,.14), transparent 70%);
}
.cc-hero-v2-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center;
}

.cc-hero-v2-badges { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.cc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,59,48,.16); border: 1px solid rgba(255,59,48,.3);
  color: #fff; font-size: .78rem; font-weight: 700;
  border-radius: 40px; padding: 6px 14px;
}
.cc-badge-alt { background: rgba(255,138,0,.16); border-color: rgba(255,138,0,.32); color: var(--red-l); }

.cc-hero-v2-heading {
  font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1.18; margin-bottom: 1.1rem;
}
.cc-hero-v2-heading span { color: var(--red); }

.cc-hero-v2-sub { font-size: .96rem; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 480px; margin-bottom: 1.4rem; }

.cc-hero-v2-checklist { list-style: none; padding: 0; margin: 0 0 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.cc-hero-v2-checklist li { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: #fff; }
.cc-check {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--red);
  color: var(--red); font-size: .68rem; font-weight: 900;
}

.cc-hero-v2-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.cc-hero-v2-card-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cc-hero-v2-card-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: .9rem; }
.cc-hero-v2-card-item strong { display: block; font-size: .88rem; font-weight: 700; color: #fff; }
.cc-hero-v2-card-sub { font-size: .78rem; color: rgba(255,255,255,.55); }
.cc-hero-v2-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(90deg, var(--red), var(--blue-l));
  color: #fff; font-weight: 800; font-size: .92rem;
  border-radius: 999px; padding: 12px 22px; text-decoration: none;
  margin-top: .4rem; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(255,59,48,.28);
}
.cc-hero-v2-btn:hover { transform: translateY(-2px); text-decoration: none; }
.cc-hero-v2-alt { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .8rem; text-align: center; }
.cc-hero-v2-alt a { color: var(--red-l); font-weight: 700; text-decoration: underline; }

.cc-hero-v2-stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.cc-stat-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: .8rem 1.1rem; flex: 1; min-width: 160px;
}
.cc-stat-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; background: rgba(255,255,255,.08);
}
.cc-stat-pill strong { display: block; font-size: .86rem; font-weight: 800; color: #fff; }
.cc-stat-pill span { font-size: .74rem; color: rgba(255,255,255,.55); }

.cc-hero-v2-right { display: flex; align-items: center; justify-content: center; }
.cc-hero-form-box { width: 100%; max-width: 440px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }

.cc-form-tabs { display: flex; gap: 6px; background: #F5F7FA; border-radius: 10px; padding: 4px; margin-bottom: 1.4rem; }
.cc-form-tab {
  flex: 1; border: none; background: transparent; cursor: pointer;
  padding: 9px 8px; border-radius: 7px;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  font-family: var(--font); transition: all .15s;
}
.cc-form-tab.active { background: #fff; color: var(--red); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.cc-form-panel { display: none; }
.cc-form-panel.active { display: block; }
.cc-hero-v2-visual {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.cc-visual-blob { position: absolute; border-radius: 50%; filter: blur(6px); z-index: -1; }
.cc-visual-blob-1 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,59,48,.35), transparent 70%); top: -40px; left: -40px; }
.cc-visual-blob-2 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(255,138,0,.3), transparent 70%); bottom: -50px; right: -30px; }
.cc-visual-icon { font-size: 4.5rem; opacity: .9; }
.cc-hero-v2-image { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

@media (max-width: 900px) {
  .cc-hero-v2-inner { grid-template-columns: 1fr; }
  .cc-hero-v2-right { order: -1; }
  .cc-hero-v2-visual { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .contact-steps { grid-template-columns: 1fr; }
  .contact-section-head h2 { font-size: 1.25rem; }
  .contact-cta-band { padding: 2.5rem 6%; }
  .contact-cta-actions { flex-direction: column; }
}

/*  
   NEW NAV BUTTONS
  */

.nav-btn-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid var(--red); color: var(--red); background: #fff;
  border-radius: 999px; font-size: .82rem; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: all .18s; white-space: nowrap;
}
.nav-btn-login:hover { background: var(--red); color: #fff; }

/*  
   EXPERIENCE PANEL
  */
#exp-panel.open { right: 0 !important; }

.exp-quick-link {
  display: block; width: 100%; text-align: left;
  padding: 11px 6px; border: none; background: transparent;
  font-size: .88rem; font-weight: 600; color: #0f172a;
  cursor: pointer; font-family: var(--font);
  border-bottom: 1px solid #f1f5f9; transition: color .15s;
}
.exp-quick-link:hover { color: var(--red); }

@media (max-width: 480px) {
  #exp-panel { width: 100vw !important; padding: 1.5rem 1.2rem 3rem; }
}

/*  
   STATS BAND
  */
.stats-band {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin: 3rem 5%;
  gap: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  transition: transform .2s;
}
.stat-item:hover {
  transform: translateY(-2px);
}
.stat-icon {
  font-size: 1.15rem;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-pale);
  line-height: 1;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--darkest);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-number span {
  color: var(--red);
}
.stat-label {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .4rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 600px) {
  .stats-band { flex-wrap: wrap; padding: 1.5rem 4%; gap: 0.5rem; margin: 2rem 4%; }
  .stat-divider { display: none; }
  .stat-item { min-width: 45%; padding: 0 1rem; }
  .stat-number { font-size: 2rem; }
}
/*  
   CLOSING CTA BANNER (Purplex-style)
  */
.cta-banner-wrap { padding: 2rem 5%; }
.cta-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--blue-d), var(--blue) 55%, var(--blue-l));
  border-radius: 22px;
  padding: 2.2rem 2.6rem;
  box-shadow: var(--shadow-xl);
}
.cta-banner-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.cta-banner-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 240px; }
.cta-banner-text strong { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: -.3px; }
.cta-banner-text span { color: rgba(255,255,255,.85); font-size: .88rem; }
.cta-banner-btn {
  background: #fff; color: var(--blue-d);
  border: none; border-radius: 40px; padding: 12px 24px;
  font-family: var(--font); font-size: .88rem; font-weight: 800;
  cursor: pointer; white-space: nowrap; transition: transform .18s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.cta-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
@media (max-width: 600px) {
  .cta-banner { padding: 1.7rem 1.5rem; }
  .cta-banner-text strong { font-size: 1.05rem; }
}

/*  
   HERO RIGHT VISUAL PANEL
  */
.hero-right {
  position: relative;
  height: 100%;
  align-self: stretch;
  border-radius: 0;
  overflow: hidden;
  display: flex; align-items: stretch; justify-content: flex-end;
  background: #F8FAFC;
}
/* Photo version */
.hero-photo-wrap { width: 100%; height: 100%; border-radius: 0; overflow: hidden; }
.hero-photo {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  border-radius: 0; display: block;
}
/* Floating cards on photo */
.hv-photo-card {
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.13) !important;
}
.hero-photo-wrap { position: relative; }
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #F8FAFC 0%, rgba(248,250,252,.85) 6%, rgba(248,250,252,0) 22%);
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248,250,252,.35) 0%, rgba(248,250,252,0) 14%);
}
.hv-card {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.hv-main {
  width: 250px; padding: 1.3rem 1.4rem;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 3;
}
.hv-main-top { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.hv-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-pale); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.hv-main-name { font-weight: 800; font-size: .92rem; color: var(--darkest); }
.hv-main-role { font-size: .72rem; color: var(--muted); margin-top: 1px; }
.hv-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.hv-skill { background: var(--blue-pale); color: var(--red); font-size: .65rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.hv-bar-track { background: var(--blue-pale); height: 6px; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.hv-bar-fill { height: 100%; width: 78%; background: linear-gradient(90deg, var(--red), var(--blue-l)); border-radius: 4px; }
.hv-bar-label { font-size: .68rem; color: var(--muted); font-weight: 600; }

.hv-card-1 { width: 168px; padding: .9rem 1rem; top: 6%; left: 0%; animation: floatY 5s ease-in-out infinite; }
.hv-card-1 .hv-stat-num { font-size: 1.3rem; font-weight: 900; color: var(--red); line-height: 1; }
.hv-card-1 .hv-stat-label { font-size: .65rem; color: var(--muted); font-weight: 700; margin-top: 3px; }

.hv-card-2 { width: 178px; padding: .85rem 1rem; bottom: 8%; right: 0%; animation: floatY 5.5s ease-in-out infinite .4s; }
.hv-card-2-top { display: flex; align-items: center; gap: 7px; margin-bottom: 4px; }
.hv-dot-live { width: 7px; height: 7px; border-radius: 50%; background: #16A34A; animation: pulse 2s infinite; }
.hv-card-2-title { font-size: .72rem; font-weight: 800; color: var(--darkest); }
.hv-card-2-sub { font-size: .65rem; color: var(--muted); }

.hv-card-3 { width: 60px; height: 60px; bottom: 22%; left: -2%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; animation: floatY 4.5s ease-in-out infinite .8s; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 980px) {
  .hero-right {
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 1.5rem;
  }
}

.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
  background: #F8FAFC;
}
/* Photo layout */
.hero-photo-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
}
/* Floating stat cards sit on top of the photo */
.hv-photo-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.14) !important;
}
/* ══════════════════════ GOODIES PAGE ══════════════════════ */

/* Floating basket button */
.goodies-basket-fab {
  position: fixed; top: 96px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--blue-l));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(255,59,48,.4);
  cursor: pointer; border: none;
  animation: basketDropIn .6s cubic-bezier(.34,1.56,.64,1);
  transition: transform .2s;
}
.goodies-basket-fab:hover { transform: translateY(-3px) scale(1.04); }
.goodies-basket-fab svg { width: 26px; height: 26px; fill: #fff; }
.goodies-basket-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 22px; height: 22px; padding: 0 5px;
  background: #fff; color: var(--red);
  border-radius: 999px; border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900;
}
.goodies-basket-count.bump { animation: basketBump .35s ease; }

@keyframes basketDropIn {
  0%   { transform: translateY(-140px) scale(.4); opacity: 0; }
  70%  { transform: translateY(6px) scale(1.06); opacity: 1; }
  100% { transform: translateY(0) scale(1); }
}
@keyframes basketBump {
  0%,100% { transform: scale(1); }
  40% { transform: scale(1.35); }
}

/* Flying dot used for the add-to-basket animation */
.fly-dot {
  position: fixed; z-index: 950; pointer-events: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255,59,48,.25);
  transition: all .65s cubic-bezier(.35,0,.25,1);
}

@media (max-width: 768px) {
  .goodies-basket-fab { top: auto; bottom: 22px; right: 18px; width: 52px; height: 52px; }
}

/* Basket drawer */
.goodies-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 998; display: none; opacity: 0; transition: opacity .2s;
}
.goodies-drawer-backdrop.show { display: block; opacity: 1; }
.goodies-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 92vw;
  background: #fff; z-index: 999; box-shadow: -12px 0 40px rgba(0,0,0,.18);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.34,1,.4,1);
  display: flex; flex-direction: column;
}
.goodies-drawer.show { transform: translateX(0); }
.goodies-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border);
}
.goodies-drawer-head h3 { font-size: 1.1rem; font-weight: 900; color: var(--darkest); }
.goodies-drawer-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--muted); }
.goodies-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.goodies-drawer-empty { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 3rem; }
.goodies-drawer-item {
  display: flex; align-items: center; gap: 12px;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
}
.goodies-drawer-item-icon {
  width: 44px; height: 44px; border-radius: 10px; background: #F5F7FA;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.goodies-drawer-item-info { flex: 1; }
.goodies-drawer-item-info strong { display: block; font-size: .88rem; font-weight: 700; color: var(--darkest); }
.goodies-drawer-item-info span { font-size: .78rem; color: var(--muted); }
.goodies-drawer-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .9rem; }
.goodies-drawer-item-remove:hover { color: var(--red); }
.goodies-drawer-foot { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); }
.goodies-drawer-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .9rem; font-weight: 700; color: var(--darkest); margin-bottom: .9rem;
}
.goodies-drawer-total-row strong { font-size: 1.15rem; color: var(--red); }
.goodies-drawer-foot .btn-next { width: 100%; justify-content: center; }

/* Hero adjustments specific to Goodies */
.cc-hero .goodies-hero-badges { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.2rem; }

/* Kit sections */
.goodies-kits { max-width: 1240px; margin: -3rem auto 0; padding: 0 5% 5rem; position: relative; z-index: 2; }
.goodies-kit-grid { display: flex; flex-direction: column; gap: 2rem; }
.goodies-kit-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.goodies-kit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue-l));
}

/* Section header: icon + title/sub on the left, live total on the right */
.goodies-kit-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  margin-bottom: 1.4rem; flex-wrap: wrap;
}
.goodies-kit-head-left { display: flex; align-items: flex-start; gap: .9rem; }
.goodies-kit-icon {
  font-size: 1.5rem; flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: #F5F7FA; display: flex; align-items: center; justify-content: center;
}
.goodies-kit-title { font-size: 1.2rem; font-weight: 900; color: var(--darkest); letter-spacing: -.3px; display: flex; align-items: center; gap: .6rem; }
.goodies-kit-sub { font-size: .84rem; color: var(--muted); margin-top: .3rem; line-height: 1.55; max-width: 46ch; }

.goodies-kit-live-total {
  display: flex; align-items: center; gap: .6rem;
  background: #F8FAFC; border-radius: 999px; padding: .55rem 1.1rem;
  font-size: .82rem; font-weight: 700; color: var(--muted); flex-shrink: 0;
}
.goodies-kit-live-total strong { color: var(--red); font-size: 1rem; }

/* Product card grid */
.goodies-kit-items.goodies-product-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 14px;
}

.goodies-item-row.goodies-product-card {
  display: flex; flex-direction: column; align-items: stretch; gap: 0;
  padding: 0; font: inherit; color: inherit;
  border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden;
  background: #fff; cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.goodies-item-row.goodies-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.goodies-item-row.goodies-product-card.is-selected {
  border-color: var(--red); box-shadow: 0 0 0 2px rgba(255,59,48,.14); background: #fff;
}

.goodies-product-select { display: flex; flex-direction: column; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.goodies-product-select input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }

.goodies-product-media {
  height: 104px; position: relative;
  background: linear-gradient(160deg, #F8FAFC, #F1F1F5);
  display: flex; align-items: center; justify-content: center;
}
.goodies-product-icon { font-size: 2.5rem; line-height: 1; }
.goodies-product-photo {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  padding: 10px; box-sizing: border-box;
}
.goodies-product-check {
  position: absolute; top: 8px; right: 8px; width: 21px; height: 21px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border); color: transparent;
  display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 900;
  transition: background .15s, border-color .15s, color .15s;
}
.goodies-product-card.is-selected .goodies-product-check { background: var(--red); border-color: var(--red); color: #fff; }

.goodies-product-info { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 3px; }
.goodies-product-name { font-size: .81rem; font-weight: 700; color: var(--darkest); line-height: 1.3; }
.goodies-product-price { font-size: .8rem; font-weight: 800; color: var(--red); }

.goodies-product-card .goodies-item-qty {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 10px; max-height: 0; opacity: 0; overflow: hidden; pointer-events: none;
  transition: max-height .18s ease, opacity .15s ease, padding .18s ease;
}
.goodies-product-card.is-selected .goodies-item-qty {
  max-height: 40px; opacity: 1; pointer-events: auto; padding: 0 10px 12px;
}
.goodies-product-card .goodies-item-qty button {
  width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-size: .8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; color: var(--text);
}
.goodies-product-card .goodies-item-qty button:hover { background: #F5F7FA; border-color: var(--red); color: var(--red); }
.goodies-product-card .goodies-item-qty-val { min-width: 16px; text-align: center; font-size: .8rem; font-weight: 800; color: var(--darkest); }

@media (max-width: 640px) {
  .goodies-kit-head { flex-direction: column; align-items: flex-start; }
  .goodies-kit-live-total { align-self: flex-start; }
  .goodies-kit-items.goodies-product-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
  .goodies-product-media { height: 84px; }
  .goodies-product-icon { font-size: 2rem; }
}

.goodies-kit-meta {
  display: flex; justify-content: space-between; align-items: center;
  background: #F8FAFC; border-radius: 10px; padding: .8rem 1rem; margin-bottom: 1.2rem;
}
.goodies-kit-meta div { text-align: center; flex: 1; }
.goodies-kit-meta div + div { border-left: 1px solid var(--border); }
.goodies-kit-meta strong { display: block; font-size: .96rem; font-weight: 900; color: var(--darkest); }
.goodies-kit-meta span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }

.goodies-qty {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 1rem;
}
.goodies-qty-label { font-size: .8rem; font-weight: 700; color: var(--muted); }
.goodies-qty-stepper { display: flex; align-items: center; gap: 10px; }
.goodies-qty-stepper button {
  width: 28px; height: 28px; border-radius: 8px; border: 1.5px solid var(--border);
  background: #fff; font-weight: 800; color: var(--darkest); cursor: pointer; font-size: .9rem;
}
.goodies-qty-stepper button:hover { border-color: var(--red); color: var(--red); }
.goodies-qty-stepper span { min-width: 20px; text-align: center; font-weight: 800; color: var(--darkest); }

.goodies-add-btn {
  margin-top: 1.4rem; width: 100%; border: none; cursor: pointer;
  background: linear-gradient(90deg, var(--red), var(--blue-l));
  color: #fff; font-weight: 800; font-size: .9rem;
  padding: 12px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(255,59,48,.25);
}
.goodies-add-btn:hover { transform: translateY(-2px); }
.goodies-add-btn:disabled {
  background: #E2E8F0; color: var(--muted); box-shadow: none; cursor: not-allowed;
}

/* Placeholder / coming-soon kit cards */
.goodies-kit-card.is-placeholder { justify-content: center; text-align: center; }
.goodies-kit-card.is-placeholder .goodies-kit-icon { font-size: 2.4rem; }
.goodies-coming-soon {
  font-size: .78rem; font-weight: 800; color: var(--muted);
  background: #F5F7FA; border-radius: 999px; padding: 8px 16px;
  display: inline-block; margin-top: .6rem;
}

@media (max-width: 900px) {
  .goodies-kits { margin-top: -2rem; }
}

/* Goodies nav icon */
.goodies-gift-icon { display: inline-block; transform-origin: 50% 85%; margin-right: 2px; }
.goodies-gift-icon.wiggle { animation: giftWiggle .5s ease; }
@keyframes giftWiggle {
  0%   { transform: rotate(0deg) scale(1); }
  15%  { transform: rotate(-16deg) scale(1.1); }
  30%  { transform: rotate(14deg) scale(1.1); }
  45%  { transform: rotate(-10deg) scale(1.05); }
  60%  { transform: rotate(8deg) scale(1.05); }
  75%  { transform: rotate(-4deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}