

:root {
  --bg: #fff7ed;        /* warm cream / peach */
  --bg-soft: #fff3e8;   /* slightly deeper warm tone */
  --bg-alt: #fffbeb;    /* soft light yellow-cream */
  --accent: #f59e0b;    /* amber */
  --accent-strong: #d97706;
  --accent-soft: rgba(245, 158, 11, 0.18);
  --navy: #1f2937;      /* deep gray-blue for contrast */
  --navy-soft: #374151;
  --text: #111827;      /* dark slate for strong readability */
  --muted: #6b7280;
  --border-subtle: rgba(15, 23, 42, 0.06);
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
}


/* Reset */

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

html, body {
  margin: 0;
  padding: 0;
}

body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: radial-gradient(circle at top, #fff7ed 0, #fffbeb 46%, #fde68a 100%); color: var(--text); line-height: 1.6;
  color: var(--text);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topbar */

.topbar {
  background: var(--navy);
  color: #e5ecff;
  font-size: 0.78rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96), transparent);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(226, 177, 61, 0.8);
  font-weight: 700;
  color: #70470a;
  background: radial-gradient(circle at 30% 0, #fff8df, #f6cf73 45%, #f0a535 100%);
  box-shadow: 0 10px 26px rgba(148, 101, 21, 0.4);
  font-size: 0.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.nav a:hover {
  color: var(--navy-soft);
  border-color: rgba(23, 52, 90, 0.5);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.48rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(23, 52, 90, 0.3);
  background: #ffffff;
}

/* Hero */

.hero {
  padding: 3rem 0 2.6rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.05rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.hero-sub {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f6cf73, #f0a535);
  color: #412507;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(148, 101, 21, 0.4);
}

.btn-outline {
  background: #ffffff;
  border-color: rgba(23, 52, 90, 0.2);
  color: var(--navy-soft);
}

.btn-outline:hover {
  background: #f4f7ff;
  border-color: rgba(23, 52, 90, 0.35);
}

.btn-light {
  background: #ffffff;
  border-color: rgba(23, 52, 90, 0.15);
  color: var(--navy-soft);
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.hero-meta h3 {
  font-size: 0.9rem;
  margin: 0 0 0.25rem;
}

.hero-meta p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.hero-main-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-small {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.hero-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #fff7ed 0, #fffbeb 52%, #fed7aa 100%);
}

.section-soft {
  background: var(--bg-soft);
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.section-intro {
  color: var(--muted);
  max-width: 40rem;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.section-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.3rem;
}

/* About */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  font-size: 0.86rem;
  color: var(--muted);
}

.mini-card h3 {
  font-size: 0.96rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
  color: var(--navy-soft);
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Cards */

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--navy-soft);
}

.card p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.card ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

/* Programs */

.programs-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: center;
}

.programs-list {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.icon-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.icon-list li {
  margin-bottom: 0.3rem;
}

.programs-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 1.1rem;
  align-items: center;
}

.programs-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.programs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-highlight p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* Services banner */

.service-banner {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy), #25518a);
  color: #f7fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-banner h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
}

.service-banner p {
  margin: 0;
  font-size: 0.84rem;
}

/* Testimonials */

.testimonial {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.05rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.86rem;
}

.testimonial-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 190px;
}

.testimonial-text {
  color: var(--muted);
  margin: 0;
}

.testimonial-name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-soft);
}

/* Media grid */

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 1rem;
}

.media-large img,
.media-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-subtle);
}

.media-large {
  grid-row: span 2;
}

.media-small {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.media-video {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 0.9rem 0.9rem 1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.video-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.88rem;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(226, 177, 61, 0.4);
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #fdfcf8;
  color: var(--text);
  font-family: inherit;
  font-size: 0.84rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(226, 177, 61, 0.9);
  box-shadow: 0 0 0 1px rgba(226, 177, 61, 0.5);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.1rem 0 1.6rem;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    max-width: 480px;
    margin: 0 auto;
  }
  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .programs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .programs-highlight {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 840px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .service-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

@media (max-width: 480px) {
  .nav {
    display: none;
  }
}


/* Sound video block */
.sound-video {
  position: relative;
  margin-top: 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
  aspect-ratio: 16 / 9;          /* match Studio & Events video frame */
}

.sound-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sound-video-label {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Studio video embed */
.studio-video {
  margin-top: 1.2rem;
}

.studio-video-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
  background: #000;
  aspect-ratio: 16 / 9;
}

.studio-video-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.studio-video-label {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-video-label {
  position:absolute;
  left:1rem;
  bottom:1rem;
  background:rgba(0,0,0,0.6);
  color:white;
  padding:6px 12px;
  border-radius:12px;
  font-size:0.8rem;
}

/* Studio YouTube embed */
.studio-video-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
  background: #000;
  aspect-ratio: 16 / 9;
}

.studio-video-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.studio-caption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
}


/* Hero with background video */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
}

.hero-video-layer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.85));
  mix-blend-mode: multiply;
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-inner.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 1040px;
  border-radius: 26px;
  padding: 2.2rem 2.4rem;
  background: rgba(255, 247, 237, 0.96);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(248, 250, 252, 0.55);
}

.hero-card .hero-text h1 {
  color: #111827;
}

.hero-card .hero-sub {
  color: #4b5563;
}

.hero-card .hero-meta h3 {
  color: #6b7280;
}

.hero-card .hero-meta p {
  color: #111827;
}

/* Keep hero layout responsive */
@media (max-width: 900px) {
  .hero-inner.hero-overlay {
    justify-content: center;
  }
  .hero-card {
    padding: 1.8rem 1.6rem;
  }
}


/* Booking section (online classes) */
.booking-inner {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.booking-header {
  max-width: 640px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.booking-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #0f172a;
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e5e7eb;
}

.pricing-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.pricing-tag {
  font-size: 0.86rem;
  color: #cbd5f5;
  margin-bottom: 0.75rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.93rem;
}

.pricing-card li {
  margin-bottom: 0.35rem;
}

.pricing-card strong {
  color: #facc15;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.pricing-card .btn-sm + .btn-sm {
  margin-left: 0.4rem;
}

/* Booking form card */
.booking-form-card {
  background: #f9fafb;
  border-radius: 1.5rem;
  padding: 1.6rem 1.7rem 1.8rem;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.booking-form-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.booking-form-card p {
  margin-top: 0;
  font-size: 0.94rem;
  color: #4b5563;
}

.booking-form {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.35);
}

.booking-note {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: #6b7280;
}

/* Responsive booking layout */
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-pricing {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* CareerKit-style fullscreen hero */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

.hero.hero-career {
  position: relative;
  margin: 0;
  padding: 0 1.4rem 2.5rem;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  overflow: hidden;
}

/* Video background fills the whole viewport */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.96));
}

/* Centered text stack similar to CareerKit */
.hero-overlay-content.hero-career-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Badge pill */
.hero-badge {
  align-self: center;
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #facc15;
  color: #1f2933;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Headings */
.hero-title-main {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.4rem 0 0.6rem;
}

/* Supporting copy */
.hero-subline {
  font-size: 0.98rem;
  max-width: 32rem;
  margin: 0 auto;
}

.hero-trust {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fde68a;
}

/* CTA buttons inspired by CareerKit */
.hero-cta-row {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-hero-primary {
  background: #facc15;
  color: #111827;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.btn-hero-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.6);
}

.btn-hero-secondary {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(248, 250, 252, 0.4);
  color: #f9fafb;
}

.btn-hero-secondary:hover {
  background: rgba(15, 23, 42, 1);
  border-color: #facc15;
}

/* Desktop alignment for hero CTA */
@media (min-width: 720px) {
  .hero-cta-row {
    flex-direction: row;
    justify-content: center;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    min-width: 190px;
  }
}

/* Put header on top of hero like CareerKit */
.topbar {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  box-shadow: none;
}

.header-inner {
  color: #f9fafb;
}

.header .logo-name,
.header .logo-tagline {
  color: #f9fafb;
}

.nav a {
  color: #e5ecff;
}

.nav a:hover {
  color: #facc15;
}

.nav-cta {
  border-color: rgba(248, 250, 252, 0.45);
  background: rgba(15, 23, 42, 0.65);
  color: #f9fafb;
}

.nav-cta:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: #facc15;
}

/* Mobile tweaks so text doesn't overlap */
@media (max-width: 768px) {
  .hero.hero-career {
    padding: 5rem 1.4rem 2.4rem;
    min-height: 90vh;
    align-items: flex-end;
  }

  .hero-overlay-content.hero-career-inner {
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  .hero-title-main {
    font-size: 1.7rem;
    line-height: 1.25;
    margin: 0.45rem 0 0.65rem;
    word-break: normal;
    hyphens: auto;
  }

  .hero-subline {
    font-size: 0.94rem;
  }

  .hero-trust {
    font-size: 0.78rem;
    letter-spacing: 0.09em;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .hero.hero-career {
    padding: 5.2rem 1.1rem 2.2rem;
  }
  .hero-title-main {
    font-size: 1.55rem;
  }
  .hero-subline {
    font-size: 0.9rem;
  }
}


.pricing-card .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.pricing-card .btn-row .btn-sm {
  flex: 0 0 auto;
}

.pricing-card .btn-sm + .btn-sm {
  margin-left: 0;
}

.bank-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* On small screens, make pricing buttons full-width */
@media (max-width: 640px) {
  .pricing-card .btn-row {
    flex-direction: column;
  }
  .pricing-card .btn-row .btn-sm {
    width: 100%;
    justify-content: center;
  }
}


.bank-note {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.bank-note.bank-note-visible {
  display: block;
}

.bank-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  text-decoration: underline;
  color: #fde68a;
}

.pricing-card .btn-row {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .pricing-card .btn-row {
    justify-content: stretch;
  }
  .pricing-card .btn-row .btn-sm {
    width: 100%;
    justify-content: center;
  }
}


.gateway-buttons {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.gateway-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
}

.gateway-paypal {
  background: #003087;
  color: #f9fafb;
}

.gateway-local {
  background: #f97316;
  color: #111827;
}

.gateway-btn:hover {
  opacity: 0.92;
}

@media (max-width: 640px) {
  .gateway-buttons {
    flex-direction: column;
  }
  .gateway-btn {
    width: 100%;
  }
}
