/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a94e;
  --gold-dark: #b8952e;
  --gold-light: #f5c97a;
  --text: #0a0a0a;
  --text-muted: #454b56;
  --body-bg: #fff;
  --section-bg: #f5f6f8;
  --border: #e5e7eb;
  --navy: #0a1020;
  --navy-2: #101a30;
  --footer-bg: #0a1020;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--body-bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.bg-light { background: var(--section-bg); }
.highlight { color: var(--gold); }
.btn-full { width: 100%; }

/* ===== SECTION HEADERS ===== */
.section__eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.75rem;
}

.section__lead {
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 1rem;
  font-size: 1rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 2.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  justify-content: center;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn--outline {
  color: var(--gold);
  border: 2px solid var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(201, 169, 78, 0.08);
  transform: translateY(-1px);
}

.btn--outline-white {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.85);
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg { padding: 1.125rem 2.5rem; font-size: 1rem; }

/* ===== STICKY HEADER ===== */
.site-header {
  border-bottom: 1px solid var(--border);
  z-index: 100;
  background: var(--navy);
  position: sticky;
  top: 0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.site-header__inner {
  align-items: center;
  gap: 2rem;
  height: 144px;
  display: flex;
}

.site-header__logo-img {
  width: auto;
  height: 120px;
  display: block;
  filter: brightness(0) invert(1);
}

.site-header__name {
  color: #fff;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  font-weight: 800;
}

.site-nav {
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  display: flex;
}

.site-nav__link {
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  border-radius: 4px;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s;
  display: flex;
  position: relative;
}

.site-nav__link:hover { color: var(--gold-light); }
.site-nav__link--active { color: var(--gold-light); font-weight: 600; }

.site-header__actions {
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  display: flex;
}

.site-header__hamburger {
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  display: none;
}

.site-header__hamburger span {
  background: #fff;
  border-radius: 2px;
  width: 24px;
  height: 2px;
  transition: all 0.2s;
  display: block;
}

.site-header__hamburger.is-open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.site-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.site-header__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--navy);
  padding: 1.5rem;
}

.mobile-menu__link {
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

.mobile-menu__cta {
  text-align: center;
  margin-top: 1.25rem;
  display: block;
}

/* ===== HERO ===== */
.hero {
  background: radial-gradient(ellipse at 70% -20%, #1c2f46 0%, var(--navy) 55%);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  padding: 6rem 1.5rem 5rem;
  display: flex;
  position: relative;
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero__pill {
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  display: inline-block;
}

.hero h1 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero p {
  color: #fff;
  max-width: 640px;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero__trust {
  color: rgba(255,255,255,0.92) !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
}

.hero__scroll {
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: 1.8s infinite bounce;
  display: flex;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== PARTNERS ===== */
.partners {
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.partners__grid {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3.5rem;
  display: flex;
}

.partners__item {
  align-items: center;
  display: flex;
}

.partner-fallback {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.partner-fallback:hover { opacity: 1; }

/* ===== WHO WE HELP ===== */
.who-we-help h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  display: grid;
}

.card {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 82, 245, 0.1);
}

.card__icon {
  background: var(--gold);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  display: flex;
}

.card h3 { margin-bottom: 0.625rem; font-size: 1.125rem; font-weight: 700; }
.card p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.6; }

.card__link {
  color: var(--gold);
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.15s;
  display: inline-flex;
}

.card__link:hover { gap: 10px; }

/* ===== ROI SECTION ===== */
.roi { background: #fff; }

.roi h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
}

.roi__card {
  background: radial-gradient(ellipse at 75% -30%, #1c2f46 0%, var(--navy) 60%);
  border-radius: 12px;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 3.5rem;
  padding: 3.5rem;
  display: grid;
}

.roi__text h3 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 900;
}

.roi__text p { color: rgba(255,255,255,0.82); margin-bottom: 0.75rem; font-size: 0.9375rem; }
.roi__text .btn { margin-top: 1.25rem; }

.roi__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem 2.25rem;
}

.roi__panel-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.roi__stat {
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.875rem 0;
  display: flex;
}

.roi__stat span { color: rgba(255,255,255,0.7); font-size: 0.9375rem; }
.roi__stat strong { color: #fff; letter-spacing: -0.01em; font-size: 1.375rem; font-weight: 800; }
.roi__stat--big strong { color: var(--gold-light); font-size: 2.5rem; font-weight: 900; }

.roi__panel-note { color: rgba(255,255,255,0.5); margin-top: 1.25rem; font-size: 0.8125rem; }

/* ===== SERVICES ===== */
.services { background: #fff; }

.services h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 800px;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
}

.services__grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  display: grid;
}

.service-card {
  border: 1px solid var(--border);
  text-align: left;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 20px rgba(10,16,32,0.05);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(10,16,32,0.1);
}

.service-card__n {
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  font-weight: 800;
  display: block;
}

.service-card h3 { margin-bottom: 0.625rem; font-size: 1.25rem; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }

.service-card--wide {
  background: var(--navy);
  text-align: left;
  grid-column: 1 / -1;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  display: flex;
}

.service-card--wide h3 { color: #fff; font-size: 1.75rem; font-weight: 800; }
.service-card--wide p { color: rgba(255,255,255,0.75); max-width: 480px; font-size: 1rem; }
.service-card--wide .service-card__n { color: var(--gold-light); }
.service-card--wide .btn--gold { background: var(--gold); color: #fff; }
.service-card--wide .btn--gold:hover { background: var(--gold-dark); }
.service-card--wide .service-card__text { flex: 1; }
.service-card--wide .btn { margin-top: 1.5rem; }

/* ===== QUOTE ===== */
.quote-section {
  background: var(--navy);
  padding: 5rem 0;
}

.quote-section__inner {
  max-width: 820px;
  margin: 0 auto;
}

.quote-section__marks {
  color: var(--gold);
  margin-bottom: -1.5rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.quote-section blockquote p {
  color: #fff;
  margin-bottom: 1.75rem;
  font-size: clamp(1.125rem, 2.2vw, 1.4375rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
}

.quote-section blockquote footer {
  flex-direction: column;
  gap: 0.25rem;
  display: flex;
}

.quote-section blockquote strong {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
}

.quote-section blockquote cite {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-style: normal;
}

/* ===== TESTIMONIALS ===== */
.testimonials h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 900;
}

.testimonials__featured {
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  display: grid;
}

.testimonials__info {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.testimonials__info h3 { font-size: 1.5rem; font-weight: 800; }

.testimonials__info p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.testimonials__rating {
  color: var(--text-muted);
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
}

.testimonials__stars {
  color: var(--gold-dark);
  gap: 2px;
  font-size: 1.1rem;
  display: inline-flex;
}

.testimonials__video {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.testimonials__thumb-wrap {
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: block;
}

.testimonials__thumb-wrap img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s;
  display: block;
}

.testimonials__thumb-wrap:hover img { transform: scale(1.03); }

.testimonials__play-btn {
  background: rgba(0,0,0,0.35);
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
  display: flex;
  position: absolute;
  inset: 0;
}

.testimonials__thumb-wrap:hover .testimonials__play-btn {
  background: rgba(201,169,78,0.5);
}

.testimonials__play-btn-circle {
  background: var(--gold);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.testimonials__more-label {
  color: #888;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
}

.testimonials__more-label hr {
  border: none;
  border-top: 1px solid var(--border);
  flex: 1;
}

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

.testimonials__play-sm {
  background: var(--gold);
  pointer-events: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== CASE STUDIES ===== */
.case-studies {
  padding: 5rem 0;
}

.case-studies .section-header { margin-bottom: 3rem; }

.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  overflow: hidden;
}

.case-header {
  padding: 2rem 2.5rem 0;
}

.case-industry {
  display: inline-block;
  background: rgba(201, 169, 78, 0.1);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.case-header h3 { font-size: 1.4rem; font-weight: 800; }

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 1.5rem 2.5rem;
  border-radius: var(--radius-sm, 8px);
  overflow: hidden;
}

.gallery-slide {
  background: var(--section-bg);
  padding: 1.5rem;
}

.gallery-label {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.gallery-slide p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.case-metrics {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
}

.metric { text-align: center; }

.metric-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.metric-label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing h2 {
  text-align: center;
}

.pricing .section-header {
  text-align: center;
}

.pricing .section__lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 82, 245, 0.08);
}

.price-card--featured {
  border-color: var(--gold);
  position: relative;
  box-shadow: 0 0 40px rgba(201,169,78,0.12), inset 0 1px 0 rgba(201,169,78,0.15);
}

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-card h3 { margin-bottom: 0.5rem; font-size: 1.125rem; font-weight: 700; }

.price-range {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.price-range small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-for {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.price-card .btn { margin-top: auto; }

/* ===== PREMIER ===== */
.premier { background: #fff; }

.premier__inner {
  background: var(--section-bg);
  border-radius: 12px;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 4rem;
  padding: 3.5rem;
  display: grid;
}

.premier__image { justify-content: center; display: flex; }
.premier__badge-placeholder { opacity: 0.8; }
.premier__badge-placeholder:hover { opacity: 1; }

.premier__text h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 800;
  line-height: 1.25;
}

.premier__text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: radial-gradient(ellipse at 70% -20%, #1c2f46 0%, var(--navy) 55%);
  padding: 5.5rem 0;
}

.cta-section__inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5rem;
  display: grid;
}

.cta-section__text h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.cta-section__text p {
  color: rgba(255,255,255,0.9);
  max-width: 400px;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.cta-section__person {
  flex-direction: column;
  align-items: flex-start;
  min-width: 280px;
  display: flex;
}

.cta-section__certs {
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.cta-section__certs li {
  color: rgba(255,255,255,0.85);
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
  display: flex;
}

/* ===== CONVERSION FORM ===== */
.cta-form-section {
  padding: 5rem 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-left .section__eyebrow { margin-bottom: 0.5rem; }
.form-left h2 { margin-bottom: 1rem; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 900; }
.form-left > p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; }

.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.form-benefits li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.form-reassurance {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.form-right {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.multi-step-form h3 {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder { color: #999; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-privacy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.form-success h3 { margin-bottom: 0.5rem; font-size: 1.25rem; font-weight: 800; }
.form-success p { color: var(--text-muted); font-size: 0.9375rem; }

/* ===== FAQ ===== */
.faq {
  padding: 5rem 0 6rem;
}

.faq .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  width: 100%;
  color: var(--text);
  text-align: left;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color 0.15s;
  display: flex;
}

.faq__question:hover { color: var(--gold); }

.faq__icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-size: 1.25rem;
  font-weight: 700;
}

.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 0 1.25rem 2.25rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.9);
  padding: 4rem 0 0;
}

.site-footer__grid {
  grid-template-columns: 240px repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  display: grid;
}

.site-footer__logo {
  color: #fff;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.site-footer__brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
}

.site-footer__col h3 {
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
}

.site-footer__col h3::after {
  content: '';
  background: rgba(255,255,255,0.4);
  width: 28px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.site-footer__col ul {
  flex-direction: column;
  gap: 0.75rem;
  display: flex;
}

.site-footer__col li {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer__col a {
  color: rgba(255,255,255,0.72);
  transition: color 0.15s;
}

.site-footer__col a:hover { color: #fff; }

.site-footer__bottom {
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.15);
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  display: flex;
}

.site-footer__legal {
  align-items: center;
  gap: 0.75rem;
  display: flex;
}

.site-footer__legal a {
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.site-footer__legal a:hover { color: #fff; }

/* ===== VIDEO MODAL ===== */
.yt-modal {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.yt-modal[hidden] { display: none; }

.yt-modal__backdrop {
  cursor: pointer;
  background: rgba(0,0,0,0.85);
  position: absolute;
  inset: 0;
}

.yt-modal__box {
  z-index: 1;
  background: #000;
  border-radius: 6px;
  width: min(900px, 95vw);
  position: relative;
  overflow: hidden;
}

.yt-modal__close {
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  z-index: 2;
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  top: -2.5rem;
  right: 0;
}

.yt-modal__close:hover { opacity: 1; }

.yt-modal__iframe-wrap {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.yt-modal__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

/* ===== STICKY CALL (mobile) ===== */
.sticky-call {
  z-index: 900;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  box-shadow: 0 4px 16px rgba(201,169,78,0.4);
}

.sticky-call:active { background: var(--gold-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .roi__card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .premier__inner { text-align: center; grid-template-columns: 1fr; padding: 2.5rem; }
  .premier__image { justify-content: center; }
  .cta__inner { grid-template-columns: 1fr; }
  .cta-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-section__text h2 { text-align: center; }
  .cta-section__text p { text-align: center; max-width: 100%; }
  .cta-section__text { flex-direction: column; align-items: center; display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { text-align: center; flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .testimonials__featured { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .site-nav, .site-header__cta { display: none; }
  .site-header__hamburger { display: flex; }
  .sticky-call { display: flex; }

  .hero { min-height: 80vh; padding: 5rem 1.5rem 4rem; }
  .hero h1 { font-size: 2.25rem; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { text-align: center; flex-direction: column; }

  .case-gallery { grid-template-columns: 1fr; }
  .case-metrics { flex-direction: column; gap: 1.5rem; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .form-wrapper { grid-template-columns: 1fr; }
  .form-left { display: none; }

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

  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { text-align: center; flex-direction: column; gap: 0.75rem; }

  .cta-section__person { align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.875rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
