
:root {
  --bg: #000000;
  --text: #ffffff;
  --accent: #c79b3b;
  --accent-soft: rgba(199,155,59,0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Sections: reusable padding and container widths */
.section {
  padding: 1.3rem 0;
}

.section-alt {
  padding: 1.3rem 0;
  background: rgba(255,255,255,0.02);
}

.services-hero {
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
}

.services-hero .page-hero {
  padding: 0;
  margin-bottom: 0.7rem;
}

.services-hero .page-hero p {
  margin-bottom: 0;
}

.services-core {
  padding-top: 0.9rem;
}

/* Give anchored sections breathing room when jumped to via hash */
#our-story {
  scroll-margin-top: 140px;
}

/* Trim top space on first section of each page */
.section:first-of-type,
.section-alt:first-of-type {
  padding-top: 0.1rem;
}

.section .section-inner,
.section-alt .section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-inner.narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .section,
  .section-alt {
    padding: 4rem 0;
  }
  .section .section-inner,
  .section-alt .section-inner {
    padding: 0 1.2rem;
  }
  .services-hero {
    padding-top: 1.7rem;
    padding-bottom: 1.5rem;
  }
  .services-core {
    padding-top: 1.4rem;
  }
}

/* Subtle grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.055) 1px, transparent 0),
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  opacity: 0.42;
  mix-blend-mode: screen;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Splash (home only) */

#splash {
  position: fixed;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  perspective: 1100px;
}

.splash-logo-wrap {
  position: relative;
}

.splash-logo {
  width: 220px;
  height: 220px;
  animation: logoSpin3D 2s ease-out forwards;
}

/* Golden finishing line in front of the logo */
.finish-line {
  position: absolute;
  left: 50%;
  top: 118px;
  width: 300px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.4));
  overflow: hidden;
  transform-origin: left center;
  transform: translateX(-50%) skewX(-10deg);
}

.finish-line::before {
  content: none;
}

.finish-line::after {
  content: "";
  position: absolute;
  left: -40%;
  top: -2px;
  width: 40%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #f5d591);
  box-shadow: 0 0 18px rgba(199,155,59,0.8);
  animation: rushFinish 1.8s ease-out forwards;
}

.splash-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes logoSpin3D {
  0% {
    transform: rotateY(-45deg) translateY(4px) scale(0.6);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: rotateY(18deg) translateY(0) scale(1.05);
  }
  100% {
    transform: rotateY(0deg) translateY(0) scale(1);
  }
}

@keyframes rushFinish {
  0% { left: -40%; opacity: 0; }
  20% { opacity: 1; }
  90% { left: 70%; opacity: 1; }
  100% { left: 85%; opacity: 0; }
}

@keyframes taglineIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0px); }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

#main {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

#main.ready {
  opacity: 1;
}

/* Layout: compact nav / hero spacing */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav.shrunk {
  padding: 0 0.5rem;
  transition: padding 0.2s ease, background 0.2s ease;
  background: rgba(0, 0, 0, 0.92);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-home {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.nav-logo-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.nav.shrunk .nav-logo-icon {
  transform: scale(0.9);
}

/* Our story (About) */
.about-real {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.015), rgba(255,255,255,0.04));
}

.about-real .section-inner {
  max-width: 1080px;
}

.about-real__header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
  max-width: 720px;
}

.about-real__eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 650;
  color: #f7d879;
}

.about-real__header h2 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.about-real__lede {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 1.06rem;
  line-height: 1.65;
}

.about-real__divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.28), rgba(255,255,255,0));
  margin: 1.5rem 0 1rem;
  opacity: 0.7;
}

.about-real__stack {
  display: grid;
  gap: 6.5rem;
}

.about-real__block {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
}

.about-real__subhead {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 2.24rem;
  font-weight: 750;
  color: #ffffff;
}

.about-real__text {
  max-width: 720px;
  display: grid;
  gap: 1.4rem;
  line-height: 1.75;
  font-size: 1.04rem;
}

.about-real__list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding-left: 0;
}

.about-real__list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.75;
}

.about-real__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(199,155,59,0.5);
  transform: translateY(-50%);
}

.about-real__block--list {
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

.about-real__block--split {
  max-width: 1080px;
}

.about-real__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  align-items: start;
}

.about-real__split--reverse .about-real__visual {
  order: 1;
}

.about-real__split--reverse .about-real__text {
  order: 2;
}

.about-real__visual {
  border-radius: 0;
  overflow: visible;
  display: block;
  box-shadow: none;
  max-width: 100%;
  margin: 0;
}

.about-real__visual img {
  width: 92%;
  height: auto;
  object-fit: cover;
  display: block;
}


.about-real__quote-block {
  max-width: 760px;
}

.about-real__quote {
  padding: 1.8rem 1.9rem;
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(199,155,59,0.16), rgba(199,155,59,0.05));
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 18px rgba(199,155,59,0.25);
  border-radius: 14px;
  color: #f2e7c8;
  font-weight: 650;
  line-height: 1.75;
  font-size: 1.1rem;
}

.about-real__closing {
  padding: 1.9rem 1.7rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 1.4rem;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .about-real {
    padding: 2.4rem 0;
  }

  .about-real__header {
    flex-direction: column;
  }

  .about-real__stack {
    gap: 4.5rem;
  }

  .about-real__block,
  .about-real__quote-block {
    max-width: 100%;
  }

  .about-real__split {
    grid-template-columns: 1fr;
  }

  .about-real__split--reverse .about-real__visual,
  .about-real__split--reverse .about-real__text {
    order: unset;
  }

  .about-real__visual {
    max-width: 100%;
  }
}

.about-real__visual-placeholder {
  width: 100%;
  min-height: 240px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.25);
  background: radial-gradient(circle at top left, rgba(199,155,59,0.18), rgba(0,0,0,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.about-real__note {
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.about-real__link {
  color: #f7d879;
  text-decoration: underline;
}

.about-real__link:hover {
  color: #ffe08d;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  line-height: 1.3;
}

.nav-brand-text span:first-child {
  font-weight: 600;
}

.nav-brand-text span:last-child {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #f5d591);
  border-radius: 999px;
  transition: width 0.18s ease-out;
}

.nav-links a:hover {
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(199,155,59,0.75);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at top left, rgba(199,155,59,0.28), transparent 55%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: radial-gradient(circle at top left, rgba(199,155,59,0.4), transparent 60%);
  transform: translateY(-1px);
}

.nav-cta--gold {
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  color: #2b1b09;
  font-weight: 800;
  border: none;
  box-shadow: 0 10px 24px rgba(255,214,137,0.35);
}

.nav-cta--gold {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.nav-cta--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(199,155,59,0.9);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-cta--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255,214,137,0.5);
  color: #fff;
}

.nav-cta--gold:hover::after {
  opacity: 1;
}

.btn-outline-gold {
  position: relative;
  border: 1.5px solid rgba(199,155,59,0.75);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #f8e8b8;
  text-transform: uppercase;
  overflow: hidden;
}

.btn-outline-gold::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(199,155,59,0.18), rgba(0,0,0,0.9));
  z-index: -1;
}

.btn-outline-gold span {
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn-outline-gold:hover {
  border-color: rgba(255,214,137,0.9);
  box-shadow: 0 0 25px rgba(199,155,59,0.35);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem 5.5rem;
}

/* About page spacing (home) */
.home-page main {
  padding: 3rem 2.4rem 7.5rem;
}

.home-page .page-hero {
  min-height: 70vh;
  align-items: flex-start;
  gap: 3.5rem;
  padding: 2rem 0 2rem;
  margin-bottom: 2vh;
}

.home-page .hero-ctas {
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.home-page .about-real {
  margin-top: -0.5rem;
  padding-top: 0.6rem;
}

.home-page .stats-bar {
  gap: 2.4rem 2rem;
  padding: 1.4rem 1.9rem;
}

.home-page .grid {
  gap: 6rem;
}

.home-page .section-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 0 4rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0 0 1rem;
  margin-bottom: 0;
}

.page-hero.single-column {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero-text h1 {
  font-size: 2.2rem;
  font-weight: 650;
  margin-bottom: 1rem;
}

.discovery-page .section {
  padding-bottom: 0.4rem;
}

.discovery-page .section + .section-alt {
  margin-top: -0.2rem;
}

.discovery-page .page-hero-text h1 {
  margin-bottom: 0.2rem;
}

.page-hero-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.6;
}

.hero-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.9rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

/* Larger, gold-forward hero buttons */
.hero-ctas .btn {
  padding: 1rem 1.56rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-width: 1.4px;
  background: linear-gradient(135deg, rgba(199,155,59,0.3), rgba(0,0,0,0.85));
  box-shadow: 0 10px 22px rgba(199,155,59,0.22), 0 3px 12px rgba(0,0,0,0.4);
}

.hero-ctas .btn.btn-giant {
  padding: 1.3rem 2.6rem;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-ctas .btn.btn-compact {
  padding: 0.78rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 650;
  border-width: 1px;
  box-shadow: 0 6px 16px rgba(199,155,59,0.18), 0 2px 8px rgba(0,0,0,0.35);
}

.hero-ctas .btn.secondary {
  background: linear-gradient(135deg, rgba(199,155,59,0.3), rgba(0,0,0,0.85));
  border-color: rgba(199,155,59,0.75);
  color: #fff;
  box-shadow: 0 10px 22px rgba(199,155,59,0.22), 0 3px 12px rgba(0,0,0,0.4);
}

.hero-ctas {
  gap: 1rem;
}

.hero-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.hero-img-wrap img {
  display: block;
  width: 80%;
  height: auto;
  transform: translateY(0);
}

.home-page .page-hero .hero-img-wrap img {
  width: clamp(200px, 35vw, 420px);
  margin-left: auto;
  margin-right: 0;
  display: block;
  transform: translateY(0);
}

.section-block {
  margin-bottom: 10rem;
  padding-top: 0.5rem;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 1.8rem;
  margin-bottom: 3rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.section-title-row .section-subtitle {
  flex-basis: 100%;
  margin-top: 0.6rem;
}

.section-title-row h2 {
  font-size: 2.55rem;
  font-weight: 600;
  flex-basis: 100%;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-title-row h2 {
    white-space: normal;
  }
}

.section-subtitle {
  max-width: 430px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.section-subtitle--white {
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-subtitle--white {
    white-space: normal;
  }
}

.section-cta {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.services-group {
  margin-bottom: 2.6rem;
}

.services-group:last-of-type {
  margin-bottom: 0;
}

.services-group-eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.6rem;
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255,215,128,0.35);
}

/* Cards / grids with more breathing room */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 3rem;
}

.services-matrix {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.services-matrix .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-matrix .card p {
  flex-grow: 1;
}

.services-stage {
  margin-bottom: 2.4rem;
}

.services-stage:last-child {
  margin-bottom: 0;
}

.services-stage-label {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.card .service-img {
  width: min(420px, 75%);
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  margin: 0.8rem auto 0.9rem;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0.4rem 0 0;
  padding: 0;
  align-items: stretch;
  width: 100%;
}

.service-point {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  width: 100%;
  min-height: 3.4rem;
  display: flex;
  align-items: center;
}

.service-point p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  text-align: left;
  width: 100%;
}

.card {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: radial-gradient(circle at top left, var(--accent-soft), #050505);
  padding: 0.35rem 1.6rem 1.6rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.services-matrix .card h3 {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
}

.services-invite {
  margin-top: 2.4rem;
  text-align: left;
  font-size: 1rem;
  color: #ffffff;
}


.services-invite p {
  margin: 0;
}

.services-invite p + p {
  margin-top: 0.9rem;
}

.services-invite-lead {
  font-size: 1rem;
}

.services-invite-title {
  margin-bottom: 1.2rem;
}

.services-invite-img {
  width: min(560px, 80%);
  aspect-ratio: 5 / 3;
  margin: 1.1rem auto;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  border: none;
  box-shadow: 0 22px 45px rgba(0,0,0,0.35);
}

.icy-highlight {
  background: linear-gradient(90deg, #d1f1ff 0%, #79c8ff 40%, #2fa1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-link {
  font-weight: 600;
  text-decoration: underline;
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-link:focus,
.gradient-link:hover {
  opacity: 0.85;
}


.card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.8);
  border-color: rgba(199,155,59,0.2);
}

/* Common problems split panels */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}


.problem-panel {
  width: 100%;
}

.problem-copy {
  background: linear-gradient(140deg, rgba(199,155,59,0.18), rgba(5,5,5,0.78));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  width: 100%;
  padding: 1.4rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  text-align: left;
}

.problem-copy--left {
  padding-left: 2rem;
  border-left: 3px solid rgba(199,155,59,0.7);
}


.problem-copy--right {
  padding-left: 2rem;
  border-left: 3px solid rgba(199,155,59,0.7);
}

.problem-copy p {
  margin: 0;
}

/* Pain points quiz */
#pain-points-quiz {
  position: relative;
}

.pain-quiz {
  max-width: 860px;
  margin: 0 auto;
}

.pain-quiz__head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.pain-quiz__head h2 {
  margin: 0;
  font-size: 2.2rem;
  color: #ffffff;
}

.pain-quiz__intro {
  max-width: none;
  width: 100%;
  white-space: normal;
}

.section-label {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.section-label--muted {
  color: rgba(255,255,255,0.5);
}

.pain-quiz__intro {
  max-width: none;
  width: 100%;
  white-space: normal;
}

.pain-quiz__module {
  position: relative;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2.5rem 4.5rem;
  background: linear-gradient(140deg, rgba(10,10,10,0.95), rgba(12,12,12,0.9));
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}

.pain-quiz__card {
  width: min(540px, 100%);
  min-height: 190px;
  background: #0f0f0f;
  border: 1px solid rgba(199,155,59,0.35);
  border-radius: 28px;
  padding: 2.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.65);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pain-quiz__card:hover {
  border-color: rgba(255,214,137,0.8);
  box-shadow: 0 40px 90px rgba(199,155,59,0.25);
  transform: translateY(-2px);
}

.pain-quiz__card p {
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  line-height: 1.6;
  margin: 0;
}

.pain-quiz__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.pain-quiz__btn {
  min-width: 220px;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid rgba(199,155,59,0.55);
  background: rgba(10,10,10,0.95);
  box-shadow: none;
}

.pain-quiz__btn--primary {
  background: rgba(10,10,10,0.95);
}

.pain-quiz__progress {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.pain-quiz__progress-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.pain-quiz__dots {
  display: flex;
  gap: 0.45rem;
}

.pain-quiz__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(199,155,59,0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.pain-quiz__dot.is-active {
  background: var(--accent);
  transform: scale(1.1);
}

.pain-quiz__arrow {
  position: absolute;
  bottom: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pain-quiz__arrow:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.pain-quiz__arrow--left {
  left: 25%;
}

.pain-quiz__arrow--right {
  right: 25%;
}

.pain-quiz__module--complete .pain-quiz__actions,
.pain-quiz__module--complete .pain-quiz__progress,
.pain-quiz__module--complete .pain-quiz__arrow {
  display: none;
}

.pain-quiz__card--result {
  border-style: dashed;
}

.pain-quiz__result {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0;
}

.pain-quiz__card .gradient-link {
  font-size: 1.02em;
}

@media (max-width: 720px) {
  .pain-quiz__module {
    padding: 1.8rem 1.2rem 4.8rem;
  }

  .pain-quiz__card {
    width: 100%;
    min-height: 160px;
    padding: 1.8rem 1.4rem;
  }

  .pain-quiz__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pain-quiz__btn {
    width: 100%;
  }

  .pain-quiz__arrow {
    bottom: 0.8rem;
  }
}



@media (max-width: 900px) {
  .problem-copy--right {
    text-align: left;
    padding-right: 1.2rem;
    padding-left: 1.8rem;
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
}

/* Simple stats bar */

.stats-bar {
  margin-top: 1.4rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem 1.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}

.stats-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.stats-bar span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Mentor cards */

.mentor-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
}

.mentor-profile-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.8rem;
  background: rgba(10,10,10,0.86);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mentor-profile-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
}

.mentor-profile-card__meta {
  display: flex;
  gap: 1.2rem;
  align-items: stretch;
}

.mentor-profile-card__image {
  flex: 1;
  min-height: 160px;
  border-radius: 28px;
  display: block;
  overflow: hidden;
  position: relative;
}

.mentor-profile-card__image::before {
  content: "";
  display: block;
  padding-bottom: 68%;
}

.mentor-profile-card__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.mentor-profile-card__columns {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.mentor-profile-card__column {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mentor-profile-card__column span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.mentor-profile-card__badge {
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #ffffff;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
}

.mentor-profile-card__badge img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.mentor-profile-card__facts p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
}

.mentor-profile-card__facts ul {
  margin: 0.3rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mentor-profile-card__title .mentor-name {
  font-weight: 700;
  font-size: 1.35rem;
}

.mentor-profile-card__badge .logo-usyd {
  max-height: 44px;
}

@media (max-width: 920px) {
  .mentor-profile-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .mentor-profile-card__meta {
    flex-direction: column;
  }
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.application-prompt pre {
  background: rgba(0,0,0,0.45);
  border-radius: 14px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.signup-form {
  background: rgba(0,0,0,0.35);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}

.signup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem 1.6rem;
}

.multi-step .signup-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-step .form-group .study-level-heading {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #f5e7b2;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.study-level-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.study-level-option {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(245,231,178,0.35);
  background: rgba(0,0,0,0.5);
  color: #ffffff !important;
  -webkit-background-clip: initial;
  background-clip: initial;
  width: 100%;
  box-sizing: border-box;
  text-align: left !important;
  position: relative;
}

.study-level-option input[type="radio"] {
  accent-color: #ffffff;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  flex-shrink: 0;
}

.study-level-option-label {
  color: #ffffff !important;
  text-transform: none !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  line-height: 1.15;
  display: flex;
  align-items: center;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  position: static !important;
  transform: translateY(-2px) !important;
  text-align: left !important;
  min-height: 1.2rem;
}

@media (max-width: 600px) {
  .study-level-option {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.8rem 0.85rem;
  }
  .phone-input-group {
    flex-direction: column;
  }
  .phone-input-group input[type="tel"] {
    flex: 1;
    max-width: 100%;
  }
}

.phone-input-group {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

.phone-country-field {
  flex: 0 0 120px;
}

.phone-country-field .search-select-field {
  width: 100%;
}

.phone-country-field input {
  padding-right: 2.1rem;
}

.phone-country-field .search-select-dropdown {
  max-height: 220px;
  overflow-y: auto;
}

.phone-input-group input[type="tel"] {
  flex: 0 0 50%;
  max-width: 50%;
}

.inline-radio-group {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.inline-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.02em;
}

.inline-radio-group label span {
  color: #fff !important;
  display: inline-block;
  margin-left: -0.15rem;
  position: relative;
  left: -1px;
}

.inline-radio-group input[type="radio"] {
  accent-color: #fff;
  width: 1rem;
  height: 1rem;
}

.conditional-field {
  display: none;
}

.conditional-field.is-visible {
  display: block;
}

.form-group.conditional-field {
  display: none;
}

.form-group.conditional-field.is-visible {
  display: flex;
  flex-direction: column;
}

.conditional-field .search-select-field input {
  background: rgba(0,0,0,0.9);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  border-radius: 18px;
}

.conditional-field .search-select-dropdown {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.25);
}

.conditional-field .search-select-option {
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group.search-select {
  position: relative;
}

.search-select-field {
  position: relative;
}

.multi-step .form-group {
  background: rgba(0,0,0,0.55);
  border-radius: 22px;
  padding: 1rem 1.1rem;
  min-height: 90px;
  margin-bottom: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.multi-step .form-group > label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  color: #fff;
  font-size: 0.95rem;
}

.multi-step .form-group input,
.multi-step .form-group select,
.multi-step .form-group textarea {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  width: 100%;
}

.month-year-field {
  position: relative;
}

.month-year-input {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  background: #000;
  transition: border-color 0.2s;
}

.month-year-input:focus-within {
  border-color: #c9a86a;
}

.month-year-input input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  outline: none;
}

.month-year-toggle {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 0 0.9rem;
  cursor: pointer;
  transition: color 0.2s;
}

.month-year-toggle:hover {
  color: #c9a86a;
}

.month-year-dropdown {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  right: 0;
  background: #000;
  border: 1px solid rgba(201,168,106,0.6);
  border-radius: 14px;
  display: none;
  z-index: 25;
}

.month-year-dropdown.show {
  display: flex;
}

.month-year-column {
  flex: 1;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.month-year-column span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.month-year-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.month-year-option {
  padding: 0.4rem 0.35rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.month-year-option:hover,
.month-year-option.active,
.month-year-option:focus {
  background: rgba(201,168,106,0.25);
  outline: none;
}
.search-select-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 0.3rem;
  box-shadow: 0 18px 36px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  max-height: 240px;
  overflow-y: auto;
  z-index: 5;
}

.search-select-dropdown.show {
  display: flex;
}

.search-select-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0.6rem 0.8rem;
  color: #fff;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.search-select-option:hover,
.search-select-option:focus {
  border-color: rgba(199,155,59,0.6);
  background: rgba(199,155,59,0.1);
}

.checkbox-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.corporate-services {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  background: rgba(0,0,0,0.28);
  display: none;
}

.corporate-services.is-visible {
  display: block;
}

.corporate-services > label {
  display: block;
  margin-bottom: 1.3rem;
}

.corporate-services textarea,
.service-description textarea {
  margin-top: 0.5rem;
}

.form-message {
  position: fixed;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 120;
}

.form-message.is-visible {
  opacity: 1;
}

.checkbox-grid label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.76rem;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  cursor: pointer;
  background: none !important;
  -webkit-background-clip: initial !important;
}

.multi-step .checkbox-grid label {
  align-items: center;
  font-size: 0.76rem;
  font-weight: 400 !important;
  gap: 1.3rem;
  color: #fff !important;
  background: none !important;
}

.checkbox-grid label span {
  color: #fff;
}

.checkbox-grid label.inline-other {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.inline-other-trigger {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.checkbox-grid input[type="text"] {
  margin-top: 0;
  font-size: 0.88rem;
  width: 100%;
  cursor: text;
}

.multi-step .checkbox-grid input[type="text"] {
  flex: none;
  width: 100%;
}

.checkbox-grid input[type="checkbox"] {
  width: 11px;
  height: 11px;
  -webkit-appearance: none !important;
  appearance: none !important;
  border: 1px solid rgba(255,255,255,0.85) !important;
  border-radius: 2px !important;
  background: #020202 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

.checkbox-grid input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 4.4px;
  height: 7.7px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
}

.checkbox-grid input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.form-step .checkbox-grid input[type="checkbox"] {
  width: 11px !important;
  height: 11px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 2px !important;
}

.btn.btn-dark-solid {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn.btn-dark-solid:hover {
  border-color: #c9a86a;
  color: #f5d37d;
  transform: translateY(-1px);
}

.thanks-confirmation {
  min-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.thanks-inner {
  width: min(700px, 100%);
  padding: 3rem 3.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(199,155,59,0.08), rgba(0,0,0,0.85));
  text-align: center;
}

.thanks-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.thanks-label {
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.thanks-copy h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.thanks-copy p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn.btn-premium {
  align-self: center;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(199,155,59,0.8);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  background: transparent;
  color: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 0 rgba(199,155,59,0);
}

.btn.btn-premium:hover,
.btn.btn-premium:focus-visible {
  border-color: #f2cd7d;
  box-shadow: 0 0 18px rgba(199,155,59,0.35);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .thanks-inner {
    padding: 2.5rem 1.8rem;
  }

  .thanks-copy {
    gap: 1rem;
  }

  .thanks-copy p {
    font-size: 0.95rem;
  }

  .btn.btn-premium {
    width: 100%;
    letter-spacing: 0.25em;
  }
}

.thanks-inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(199,155,59,0.14), rgba(0,0,0,0.93));
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 25px rgba(199,155,59,0.15);
}

.thanks-inner::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.thanks-headline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thanks-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(199,155,59,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  box-shadow: 0 10px 24px rgba(255,214,137,0.35);
}

.thanks-icon span {
  width: 14px;
  height: 7px;
  border-left: 2px solid #2b1b09;
  border-bottom: 2px solid #2b1b09;
  transform: rotate(-45deg);
  border-radius: 1px;
}

@media (max-width: 640px) {
  .thanks-headline {
    flex-direction: column;
  }

  .thanks-icon {
    width: 42px;
    height: 42px;
  }
}

.form-step {
  display: none;
}

.form-step .form-group label {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-step .form-group input,
.form-step .form-group select,
.form-step .form-group textarea {
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.form-step.is-visible {
  display: block;
}

.form-step.is-active {
  position: relative;
}

.hidden {
  display: none !important;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.form-nav.align-right {
  justify-content: flex-end;
}

.form-nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-page-count {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn.btn-giant {
  padding: 1.3rem 2.6rem;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-width: 1.4px;
}

.btn.btn-giant.hero-style {
  background: linear-gradient(135deg, rgba(199,155,59,0.6), rgba(0,0,0,0.85));
  box-shadow: 0 12px 26px rgba(199,155,59,0.32), 0 4px 16px rgba(0,0,0,0.45);
  border-color: rgba(199,155,59,0.8);
}

.btn.form-next {
  background: #fff;
  color: #000;
  border-color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn.form-prev {
  background: #fff;
  color: #000;
  border-color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.honeypot {
  display: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.process-card {
  padding: 1.4rem 1.2rem;
}

.process-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(199,155,59,0.25), rgba(0,0,0,0.8));
  border: 1px solid rgba(199,155,59,0.5);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-card h3 {
  margin-bottom: 0.3rem;
}
.muted {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.7rem;
}

/* Careers */

.careers-list {
  display: grid;
  gap: 2.2rem;
  margin-top: 1.4rem;
}

.career-item {
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: radial-gradient(circle at top left, rgba(199,155,59,0.2), #050505);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.career-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.career-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.career-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
}

/* Buttons & links */

button,
.btn,
.nav-cta {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(199,155,59,0.18), rgba(0,0,0,0.9));
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out, background 0.2s ease-out;
}

.btn.secondary {
  border-style: dashed;
  border-color: rgba(255,255,255,0.25);
  background: transparent;
}

.btn:hover {
  border-color: rgba(199,155,59,0.85);
  box-shadow: 0 0 24px rgba(199,155,59,0.45);
  transform: translateY(-2px) scale(1.02);
}

.btn:focus-visible {
  outline: 2px solid rgba(199,155,59,0.9);
  outline-offset: 3px;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(199,155,59,0.7);
  background: rgba(0,0,0,0.9);
  color: #fff;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Scroll reveal states */
.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-more {
  display: none;
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.card-more.show {
  display: block;
}

.service-toggle {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  background: linear-gradient(120deg, #f5d591, #c79b3b);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-toggle::after {
  content: "›";
  font-size: 0.9rem;
  line-height: 1;
  transform: translateY(1px);
  color: inherit;
}

.service-toggle:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.service-toggle:focus-visible {
  outline: 2px solid rgba(245,213,145,0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

.mentor-filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 1.2rem;
}

.filter-search {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.9rem;
}

.mentor-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.filter-btn.active {
  border-color: rgba(199,155,59,0.8);
  background: rgba(199,155,59,0.2);
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: flex-end;
}

.filter-count {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
}

.filter-reset {
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  border: 1px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.8rem;
}

.mentor-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mentor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 2rem 2.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
}

footer a {
  color: rgba(255,255,255,0.78);
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 1.2rem;
  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.55);
  z-index: 80;
}

.mobile-sticky-cta p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.mobile-sticky-cta .btn {
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  font-size: 0.68rem;
}


/* Responsive tweaks */

@media (max-width: 900px) {
  main {
    padding-inline: 1.5rem;
  }
  .nav {
    padding-inline: 1.5rem;
  }
  .page-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    margin-bottom: 3.2rem;
  }
  .home-page .page-hero .hero-img-wrap img {
    width: 100%;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    padding-inline: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
  }
  .nav-left {
    flex: 1 0 100%;
    justify-content: center;
  }
  .nav-links {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    order: 1;
    min-width: 0;
    align-items: center;
    align-content: center;
  }
  .nav-cta {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }
  main {
    padding-inline: 1.2rem;
  }
}
.styled-select {
  width: 100%;
  margin-top: 0.4rem;
  background: rgba(0,0,0,0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  appearance: none;
}

.styled-select option {
  background: #000;
  color: #fff;
}
.service-description {
  margin-top: 1rem;
  display: none;
}

.service-description.is-visible {
  display: block;
}

/* Careers mentor page */
.careers-mentor-page main {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.careers-mentor-page .section .section-inner,
.careers-mentor-page .section-alt .section-inner {
  padding-left: 0;
  padding-right: 0;
}

.career-hero {
  padding: 2.5rem 0 0;
}

.career-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.career-hero-inner h1,
.career-hero-inner p {
  text-align: left;
  margin: 0;
}

.career-hero-copy {
  max-width: 640px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.careers-mentor-page #mentor-criteria .section-inner,
.careers-mentor-page #hiring-process .section-inner,
.careers-mentor-page #mentor-application .section-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
}

.careers-mentor-page .criteria-list,
.careers-mentor-page .timeline-wrapper,
.careers-mentor-page .timeline {
  width: 100%;
}

.careers-mentor-page .criteria-list li,
.careers-mentor-page .timeline-step {
  width: 100%;
  z-index: 1;
}

.careers-mentor-page .section-title-row {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.careers-mentor-page .section-title-row .section-subtitle {
  margin-top: 0;
  max-width: 640px;
}

.careers-mentor-page .btn.btn-gold {
  align-self: flex-start;
}

.criteria-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.criteria-list li {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.criteria-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.45);
}

.btn.btn-gold {
  background: linear-gradient(90deg, #fdf5c4 0%, #f7d37d 35%, #c08a2d 68%, #ffeb9f 100%);
  color: #2b1b09;
  font-weight: 800;
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255,214,137,0.35);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.7rem 1.8rem;
}

.btn.btn-gold:hover,
.btn.btn-gold:focus-visible {
  box-shadow: 0 14px 30px rgba(255,214,137,0.5);
  color: #2b1b09;
  background: linear-gradient(90deg, #fff0a8 0%, #f5c85c 35%, #b7771f 68%, #ffe48a 100%);
  transform: translateY(-1px);
}

.timeline-wrapper {
  position: relative;
  margin-top: 2rem;
}
.careers-mentor-page .timeline-wrapper {
  margin-top: 1rem;
}

.timeline {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.timeline.timeline--boxes {
  flex-direction: column;
  max-width: 420px;
  margin: 0 auto;
}

.careers-mentor-page .timeline.timeline--boxes {
  max-width: none;
  width: 100%;
  margin: 0;
}

.careers-mentor-page .timeline.timeline--boxes .timeline-step {
  width: 100%;
  margin-bottom: 0;
}

.timeline-step {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 0.95rem 1.2rem;
  color: #fff;
  font-size: 0.92rem;
  flex: 1;
  min-width: 150px;
  text-align: left;
}

.careers-mentor-page .timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 0.85rem;
  align-items: center;
  border-color: rgba(199,155,59,0.55);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55), 0 0 25px rgba(199,155,59,0.08);
  background: rgba(0,0,0,0.92);
  overflow: visible;
}

.careers-mentor-page .timeline-step::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.timeline-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.careers-mentor-page .timeline-step-number {
  justify-self: center;
}

.mentor-application-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mentor-application-form label {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mentor-application-form input,
.mentor-application-form textarea {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  padding: 0.85rem 1rem;
  color: #fff;
}

.mentor-application-form input[type="file"] {
  font: inherit;
  padding: 0.6rem 1rem;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
}

.mentor-application-form input[type="file"]::file-selector-button {
  font: inherit;
  margin-right: 0.9rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mentor-application-form input[type="file"]::file-selector-button:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.mentor-application-form .mentor-phone-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mentor-application-form .mentor-phone-field label {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
}

.mentor-application-form .phone-input-group {
  width: 100%;
}

.mentor-application-form .phone-country-field {
  flex: 0 0 120px;
}

.mentor-application-form .phone-input-group input[type="tel"] {
  flex: 1;
  max-width: 100%;
}

.mentors-headline {
  font-size: 2.2rem;
  font-weight: 650;
  margin-bottom: 1rem;
}
