:root {
  /* BRAND COLORS: change these variables if Gazki updates the visual identity. */
  --bg: #08111f;
  --bg-2: #0d1a2b;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f6f8fb;
  --muted: #b7c1ce;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d7a85a;
  --accent-2: #f4d28a;
  --dark-text: #0b1220;
  --white: #ffffff;
  --success: #9ad2bd;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 168, 90, 0.22), transparent 28rem),
    radial-gradient(circle at 85% 14%, rgba(73, 120, 166, 0.18), transparent 32rem),
    linear-gradient(135deg, #07101d 0%, #08111f 42%, #101827 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 78%);
  z-index: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 790px;
}

.center-text {
  text-align: center;
}

.section {
  position: relative;
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), var(--container));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  z-index: 20;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 17, 31, 0.92);
  border-color: rgba(215, 168, 90, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 212px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.2));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}


.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.lang-btn {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--white);
}

.lang-btn.is-active {
  color: var(--dark-text);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 24px rgba(215, 168, 90, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding-top: 158px;
  min-height: 900px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 17, 31, 0.1), rgba(8, 17, 31, 0.92)),
    radial-gradient(circle at 73% 39%, rgba(215, 168, 90, 0.18), transparent 19rem);
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(215, 168, 90, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(215, 168, 90, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.86fr);
  gap: 52px;
  align-items: center;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-photo-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-photo-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.photo-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 17, 31, 0.03), rgba(8, 17, 31, 0.78)),
    radial-gradient(circle at 70% 18%, rgba(244, 210, 138, 0.26), transparent 16rem);
}

.photo-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.55);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.host-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(8, 17, 31, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.host-card img,
.advisor-card img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(244, 210, 138, 0.68);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.host-card span,
.host-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.host-card strong {
  display: block;
  margin: 3px 0;
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.brand-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.brand-proof span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
  font-weight: 750;
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.5vw, 6.45rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-subtitle,
.section-lead,
.process-card p,
.calendar-text {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.45vw, 1.24rem);
  line-height: 1.72;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--dark-text);
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 44px rgba(215, 168, 90, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 58px rgba(215, 168, 90, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.fit-card,
.premium-frame,
.split-card,
.final-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.fit-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.fit-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.07;
}

.card-topline {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.check-list,
.number-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 17px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(154, 210, 189, 0.16);
  border: 1px solid rgba(154, 210, 189, 0.46);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.video-section,
.call-section,
.no-pitch-section {
  background: rgba(255, 255, 255, 0.02);
}

.video-frame {
  position: relative;
  width: min(100%, 980px);
  margin: 44px auto 0;
  padding: 14px;
  border-radius: var(--radius-xl);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(215, 168, 90, 0.42), transparent 38%, rgba(255, 255, 255, 0.16));
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 24px;
  background: #050a12;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.section-copy {
  max-width: 600px;
}

.advisor-card {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.advisor-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.advisor-card .mini-label {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.calendly-placeholder {
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(215, 168, 90, 0.24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(215, 168, 90, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.calendly-placeholder.compact {
  width: min(100%, 780px);
  min-height: 430px;
  margin: 38px auto 0;
}

.calendar-card {
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-text);
}

.calendar-header {
  display: flex;
  gap: 9px;
  padding: 18px;
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
  background: #f6f7f8;
}

.calendar-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d7dde6;
}

.calendar-header span:first-child {
  background: var(--accent);
}

.calendar-body {
  display: flex;
  min-height: calc(100% - 49px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 34px;
  text-align: center;
}

.calendar-title {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.calendar-text {
  max-width: 480px;
  color: rgba(11, 18, 32, 0.68);
  font-size: 1rem;
}

.calendar-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.calendar-slots span {
  padding: 11px 16px;
  border-radius: 999px;
  color: #775017;
  background: rgba(215, 168, 90, 0.16);
  border: 1px solid rgba(215, 168, 90, 0.28);
  font-weight: 850;
}

.process-card {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.number-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.number-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.number-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 168, 90, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.number-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--dark-text);
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  font-size: 0.82rem;
  font-weight: 900;
}

.authority-section {
  padding-top: 110px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.stat-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 168, 90, 0.34);
  background: rgba(255, 255, 255, 0.085);
}

.stat-card strong {
  color: var(--accent-2);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.stat-card span {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 750;
}

.split-card {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-xl);
}

.pitch-lines {
  display: grid;
  gap: 16px;
}

.pitch-lines p {
  margin: 0;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 750;
}

.scarcity-section h2 {
  color: var(--accent-2);
}

.final-card {
  padding: 56px 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(215, 168, 90, 0.18), transparent 24rem),
    rgba(255, 255, 255, 0.055);
}

.site-footer {
  padding: 38px 0 54px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-logo {
  width: 250px;
}

.footer-note {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  border-color: rgba(215, 168, 90, 0.34);
  background: rgba(215, 168, 90, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: stretch;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .two-column,
  .split-card {
    grid-template-columns: 1fr;
  }

  .reverse-on-mobile .process-card {
    order: 2;
  }

  .section-copy {
    max-width: none;
  }

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

@media (max-width: 760px) {
  .container,
  .site-header {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    top: 12px;
    border-radius: 28px;
  }

  .brand-logo {
    width: 164px;
  }

  .header-actions {
    margin-left: auto;
  }

  .lang-switch {
    padding: 3px;
  }

  .lang-btn {
    min-width: 34px;
    height: 31px;
    font-size: 0.72rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 17, 31, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.045);
  }

  .hero {
    padding-top: 122px;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .hero-photo-card,
  .hero-photo-card > img {
    min-height: 340px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .brand-proof span {
    width: 100%;
  }

  .fit-card,
  .process-card,
  .split-card,
  .final-card {
    padding: 26px;
    border-radius: 26px;
  }

  .advisor-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendly-placeholder {
    min-height: 440px;
    padding: 12px;
  }

  .calendar-body {
    padding: 24px 18px;
  }

  .number-list li {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 150px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .container,
  .site-header {
    width: min(calc(100% - 22px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand-logo {
    width: 138px;
  }

  .lang-btn {
    min-width: 30px;
    height: 29px;
  }

  .host-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .host-card img,
  .advisor-card img {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .fit-card,
  .process-card,
  .split-card,
  .final-card {
    padding: 22px;
  }

  .video-frame {
    padding: 8px;
    border-radius: 22px;
  }

  .video-frame iframe {
    border-radius: 16px;
  }

  .calendar-slots span {
    width: 100%;
  }
}

/* =========================================================
   CLIENT EDITS v6 — keep the page closer to the original brief
   ========================================================= */

.narrow {
  margin-inline: auto;
}

/* Single-language version: EN only, no language switcher. */
.lang-switch,
.lang-btn {
  display: none !important;
}

.header-actions {
  margin-left: auto;
}

/* The biggest headline should feel premium, but less heavy/readable. */
h1 {
  font-weight: 640;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h2 {
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -0.032em;
}

h3 {
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-subtitle,
.section-lead,
.check-list li,
.pitch-lines p,
.footer-note {
  line-height: 1.75;
  letter-spacing: 0.004em;
}

/* Start follows the brief: Headline -> Subheadline -> This is for you if -> Video. */
.hero {
  min-height: auto;
  padding-bottom: 96px;
}

.hero-fit-card {
  max-width: 760px;
  margin-top: 34px;
}

.hero-fit-card .mini-label {
  margin-bottom: 0;
}

.hero-fit-card .check-list {
  margin-top: 22px;
}

.hero-side-simple .hero-photo-card {
  min-height: 520px;
}

.hero-side-simple .hero-photo-card > img {
  min-height: 520px;
}

/* Booking is now simpler and closer to the provided document. */
.booking-simple {
  display: grid;
  gap: 30px;
}

.booking-simple .calendly-placeholder {
  width: min(100%, 940px);
  margin: 0 auto;
}

.booking-note {
  max-width: 920px;
  margin: 0 auto;
}

.call-simple {
  max-width: 920px;
}

.call-simple h2 {
  text-align: center;
}

/* Previous QA fix: only the number bubble receives bubble styling, not the text. */
.number-list li {
  grid-template-columns: 52px 1fr;
  align-items: center;
}

.number-list li > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--dark-text);
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
}

.number-list li > span:last-child {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--text);
  background: transparent;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.005em;
  font-weight: 600;
  text-align: left;
}

.final-card .booking-note {
  margin-top: 28px;
}

/* Earlier burger breakpoint prevents the header from crowding on tablet widths. */
@media (max-width: 860px) {
  .container,
  .site-header {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    top: 12px;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 28px;
  }

  .brand-logo {
    width: 164px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 17, 31, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.045);
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.35rem, 11.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-side-simple .hero-photo-card,
  .hero-side-simple .hero-photo-card > img {
    min-height: 340px;
  }

  .number-list li {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 440px) {
  .brand-logo {
    width: 132px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-fit-card {
    margin-top: 26px;
  }
}


/* Header polish: desktop header should hug content and not stretch awkwardly. */
@media (min-width: 861px) {
  .site-header {
    width: auto;
    max-width: calc(100% - 40px);
    justify-content: flex-start;
    gap: 26px;
    padding: 12px 22px 12px 18px;
  }

  .brand-logo {
    width: 198px;
  }

  .main-nav {
    margin-left: 6px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .header-actions {
    display: none;
  }
}


/* Strict clean placeholder: no extra visible Calendly copy before real embed arrives. */
.calendar-skeleton {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.08), rgba(8, 17, 31, 0.14), rgba(8, 17, 31, 0.08));
}

.calendar-skeleton-title {
  width: min(72%, 420px);
  height: 42px;
  margin-bottom: 18px;
}

.calendar-skeleton-line {
  width: min(64%, 360px);
  height: 16px;
  margin-bottom: 12px;
}

.calendar-skeleton-line.short {
  width: min(46%, 260px);
}

.calendar-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 12px;
  width: min(100%, 500px);
  margin-top: 30px;
}

.calendar-skeleton-grid span {
  display: block;
  height: 46px;
  border-radius: 999px;
  background: rgba(215, 168, 90, 0.16);
  border: 1px solid rgba(215, 168, 90, 0.22);
}

@media (max-width: 520px) {
  .calendar-skeleton-grid {
    grid-template-columns: 1fr;
  }
}


/* Small client edits: 3 authority cards after removing the Countries card. */
@media (min-width: 981px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Booking note: keep it on one line only on wide screens, wrap safely elsewhere. */
.booking-note {
  max-width: 1200px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

@media (min-width: 1200px) {
  .booking-note {
    white-space: nowrap;
  }
}

@media (max-width: 1199px) {
  .booking-note {
    white-space: normal;
  }
}


/* V11: remove hero image and bring the VSL closer to the first screen. */
.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 940px;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

.hero-side,
.hero-side-simple {
  display: none !important;
}

.hero {
  min-height: auto;
  padding-top: 150px;
  padding-bottom: 64px;
}

.hero-fit-card {
  max-width: 940px;
}

.video-section {
  padding-top: 64px;
}

@media (min-width: 980px) {
  .hero .hero-subtitle {
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 128px;
    padding-bottom: 52px;
  }

  .video-section {
    padding-top: 52px;
  }
}

@media (max-width: 440px) {
  .hero {
    padding-top: 138px;
  }
}


/* Real Calendly embed */
.calendly-embed-wrap {
  width: min(100%, 940px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 90, 0.24);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 720px;
}

@media (max-width: 760px) {
  .calendly-embed-wrap {
    border-radius: 24px;
  }

  .calendly-inline-widget {
    height: 760px;
  }
}
