body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f6f8fb;
  color: #1f2937;
}

.container {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 0;
}

.narrow { max-width: 520px; }

.site-header {
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav nav a, .brand {
  color: #fff;
  text-decoration: none;
  margin-left: 16px;
}

.brand { font-weight: 700; margin-left: 0; }

.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 72px 0;
}

.hero-grid, .grid-2, .three-col, .stats-grid, .meta-grid {
  display: grid;
  gap: 18px;
}

.hero-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.three-col, .stats-grid { grid-template-columns: repeat(3, 1fr); }
.meta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); font-size: 14px; color: #475569; }

.hero-card, .card, .stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-card { color: #111827; }
.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: 34px; margin-bottom: 6px; }
.stat-card span { color: #64748b; }

.section { padding: 32px 0; }
.alt-bg { background: #eef2f7; }
.section-heading { margin-bottom: 18px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 10px;
}

.lead { font-size: 18px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary { background: #475569; }

input, select, textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  margin: 8px 0 14px;
  font-size: 15px;
}

textarea { min-height: 110px; }

.video-container, .booking-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

.video-container iframe, .booking-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
}

.step span, .pill {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.question {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.question label { display: block; margin: 8px 0; }
.row-between {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.pad-lg { padding: 28px; }

@media (max-width: 860px) {
  .hero-grid, .grid-2, .three-col, .stats-grid, .steps, .meta-grid { grid-template-columns: 1fr; }
  .nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 0;
    gap: 8px;
  }
  .brand-name { display: none; }
  .nav-logo { height: 40px; }
  .main-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a {
    margin-left: 0 !important;
    font-size: 13px;
    white-space: nowrap;
    padding: 4px 6px;
  }
  .container { padding: 16px 0; }
}

.hidden { display: none !important; }
.muted { color: #64748b; }
.wrap-gap { gap: 12px; flex-wrap: wrap; }
.inline-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.header-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.text-link { color: #2563eb; text-decoration: none; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.detail-grid p, .detail-block p { margin: 6px 0 0; }
.detail-block { margin-top: 18px; padding-top: 12px; border-top: 1px solid #e2e8f0; }
.sensitive { background: #fff7ed; padding: 14px; border-radius: 10px; }
.candidate-page textarea { min-height: 160px; }

:root {
  --brand-black: #0d0d0d;
  --brand-gold: #c89b2c;
  --brand-gold-light: #e6c45a;
  --brand-gray: #777777;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-logo { height: 36px; width: auto; }
.hero-logo { max-width: 220px; width: 100%; height: auto; }
.hero-logo-wrap { margin-bottom: 16px; }
.logo-container { margin-bottom: 8px; }

.gold { color: var(--brand-gold) !important; }
.branded-hero { background: linear-gradient(135deg, #0d0d0d, #1e293b); }

.center-actions { justify-content: center; }
.cta-center { text-align: center; }

.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
}

.video-placeholder {
  background: #1a1a2e;
  border: 2px dashed var(--brand-gold);
  border-radius: 12px;
  max-width: 780px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder-inner {
  text-align: center;
  color: #ccc;
  padding: 32px;
}
.video-placeholder-inner .play-icon {
  font-size: 56px;
  color: var(--brand-gold);
  margin-bottom: 16px;
  opacity: 0.7;
}
.video-placeholder-inner p { margin: 6px 0; font-size: 1.1rem; }

.booking-placeholder {
  border: 2px dashed var(--brand-gold);
  border-radius: 12px;
  padding: 60px 32px;
  text-align: center;
  background: #f8f9fb;
  color: #555;
  margin: 24px 0;
}
.booking-placeholder .calendar-icon {
  font-size: 52px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.booking-placeholder h3 { margin-bottom: 8px; color: #222; }
.booking-placeholder p { margin: 6px 0; }

/* ── Full-width logo banner ── */
.logo-banner {
  background: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 40px;
  border-bottom: 3px solid var(--brand-gold);
  box-sizing: border-box;
}
.logo-banner-icon {
  height: 160px;
  width: auto;
  flex-shrink: 0;
}
.logo-banner-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.logo-banner-name {
  font-size: 3rem;
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-banner-tagline {
  font-size: 1.1rem;
  color: var(--brand-gold);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* ── Hero CTA below banner ── */
.hero-cta {
  background: linear-gradient(135deg, #0d0d0d, #1e293b);
  padding: 48px 0 60px;
  border-top: 1px solid rgba(200,155,44,0.2);
}
.hero-cta-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.hero-cta h1 { color: #fff; font-size: 2.2rem; margin-bottom: 16px; }
.hero-cta .lead { color: #cbd5e1; }
@media (max-width: 768px) {
  .hero-cta-inner { grid-template-columns: 1fr; }
  .logo-banner { padding: 20px 16px; gap: 16px; }
  .logo-banner-icon { height: 100px; }
  .logo-banner-name { font-size: 1.8rem; }
  .logo-banner-tagline { font-size: 0.9rem; }
}

/* Testimonials */
.testimonials-section { background: #fff; }
.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-card {
  flex: 1;
  background: #f8fafc;
  border-left: 4px solid #c89b2c;
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1f2937;
  font-style: italic;
  margin: 0 0 20px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name { font-weight: 700; color: #0f172a; }
.testimonial-title { font-size: 0.9rem; color: #64748b; }
.testimonial-nav {
  background: none;
  border: 2px solid #c89b2c;
  color: #c89b2c;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.testimonial-nav:hover { background: #c89b2c; color: #fff; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.testimonial-dot.active { background: #c89b2c; }
@media (max-width: 600px) {
  .testimonial-carousel { gap: 10px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-nav { width: 36px; height: 36px; font-size: 1rem; }
}

/* Dashboard testimonials */
.inline-actions { display: flex; gap: 8px; }
