/* ==========================================================
   Škola fudbala Viktoria — style.css
   Premium editorial redesign
   ========================================================== */

:root {
  --navy: #131535;
  --navy-soft: #1D2049;
  --orange: #FFA416;
  --white: #FFFFFF;
  --off-white: #F6F6F4;
  --gray-text: #565873;
  --gray-text-light: rgba(255, 255, 255, 0.72);

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --container-width: 1280px;
  --gutter: 32px;

  --shadow-sm: 0 6px 18px -8px rgba(19, 21, 53, 0.18);
  --shadow-md: 0 16px 36px -12px rgba(19, 21, 53, 0.22);
  --shadow-lg: 0 30px 60px -20px rgba(19, 21, 53, 0.35);

  --ease: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}
h2 { font-size: clamp(2.2rem, 7vw, 5.5rem); }
h3 { font-size: 1.3rem; text-transform: none; letter-spacing: 0; font-weight: 700; line-height: 1.3; }
p { color: var(--gray-text); font-size: 1.05rem; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Placeholder highlight ---------- */
.ph {
  background: rgba(255, 164, 22, 0.18);
  outline: 1px dashed var(--orange);
  padding: 0 6px;
  border-radius: 3px;
  font-weight: 600;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
html.js .reveal:not(.in-view) {
  opacity: 0;
  transform: translateY(32px);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 19px 42px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--orange); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: 0 18px 34px -10px rgba(255, 164, 22, 0.55); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-secondary:hover { background: var(--orange); color: var(--navy); }

.cta-group { display: flex; flex-wrap: wrap; gap: 18px; }

.btn-header {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 24px;
  font-size: 0.82rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease), padding var(--ease), font-size var(--ease);
}
.btn-header:hover { background: var(--orange); color: var(--navy); border-color: var(--orange); }

.btn-header-primary { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.btn-header-primary:hover { background: #ffb84d; border-color: #ffb84d; color: var(--navy); }

.header-ctas { display: flex; align-items: center; gap: 12px; }
.call-icon { display: none; font-size: 1.1em; line-height: 1; }

/* ---------- Mobile menu toggle ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}
.menu-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
}
.menu-toggle.is-open { background: var(--orange); border-color: var(--orange); }
.menu-toggle.is-open .menu-toggle-bar { background: var(--navy); }
.menu-toggle.is-open .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.nav-open { overflow: hidden; }
.mobile-nav { display: none; }

.accent { color: var(--orange); }
.inline-link { color: var(--orange); font-weight: 600; border-bottom: 1px solid rgba(255, 164, 22, 0.5); }
.inline-link:hover { border-color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
  flex-wrap: wrap;
  transition: padding var(--ease);
}
.logo { display: inline-flex; align-items: center; }
.logo-crest { height: 58px; width: auto; display: block; transition: height var(--ease); }
.main-nav ul { display: flex; flex-wrap: wrap; gap: 38px; }
.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--ease), opacity var(--ease);
  opacity: 0.85;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--orange); opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  padding: 160px 0 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 21, 53, 0.75) 0%, rgba(19, 21, 53, 0.15) 45%, rgba(19, 21, 53, 0.05) 65%),
    linear-gradient(180deg, rgba(19, 21, 53, 0.2) 0%, rgba(19, 21, 53, 0.5) 45%, rgba(19, 21, 53, 0.96) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow {
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  line-height: 1.35;
  margin-bottom: 22px;
}
.eyebrow-break { display: none; }
.hero h1 {
  font-size: clamp(2.4rem, 10vw, 8.5rem);
  color: var(--white);
  margin-bottom: 26px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  z-index: 2;
  animation: scroll-cue 1.8s ease infinite;
}
.hero-scroll-cue::before,
.hero-scroll-cue::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}
.hero-scroll-cue::before {
  left: 0;
  transform: rotate(45deg);
  transform-origin: top left;
}
.hero-scroll-cue::after {
  right: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
}
@keyframes scroll-cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--navy);
  padding: 0 0 68px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:first-child { border-left: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--orange);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ---------- Kicker ---------- */
.kicker {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.light { color: var(--white); }

/* ---------- Split-bleed layout (Zašto Viktoria / Kako izgleda trening) ---------- */
.split-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  align-items: stretch;
}

.split-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: max(32px, calc((100vw - var(--container-width)) / 2 + 32px));
  padding-right: 48px;
}

.split-text-inner {
  width: 100%;
  max-width: 640px;
  padding: clamp(72px, 9vw, 130px) 0;
}

.split-media {
  position: relative;
  min-height: 480px;
}
.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-reverse .split-text {
  justify-content: flex-end;
  padding-left: 48px;
  padding-right: max(32px, calc((100vw - var(--container-width)) / 2 + 32px));
}

.split-text-inner h2 { margin-bottom: 44px; }
.split-text-inner p + .feature-list { margin-top: 32px; }

.feature-list li,
.steps-list li {
  display: flex;
  gap: 26px;
  padding: 26px 0;
  border-top: 1px solid rgba(19, 21, 53, 0.1);
}
.feature-list li:first-child,
.steps-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.feature-index,
.step-index {
  flex-shrink: 0;
  width: 56px;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--orange);
  line-height: 1.2;
}

.feature-list h3,
.steps-list h3 {
  margin-bottom: 6px;
  color: var(--navy);
}

/* ---------- Princip rada ---------- */
.principle {
  background: var(--orange);
  padding: clamp(56px, 7vw, 88px) 0;
}
.principle-heading {
  font-size: clamp(1.35rem, 6.5vw, 4.2rem);
  line-height: 1.08;
  color: var(--navy);
}
.principle-accent { color: var(--white); }
.principle-sub {
  margin-top: 20px;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- Banner feature (Šta dete dobija) ---------- */
.banner-feature {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 12, 32, 0.93) 0%, rgba(11, 12, 32, 0.97) 100%);
}

@media (min-width: 901px) {
  .banner-bg { object-position: 58% 37%; }
  .banner-overlay {
    background: linear-gradient(180deg,
      rgba(11, 12, 32, 0.35) 0%,
      rgba(11, 12, 32, 0.55) 26%,
      rgba(11, 12, 32, 0.88) 48%,
      rgba(11, 12, 32, 0.97) 66%,
      rgba(11, 12, 32, 0.97) 100%);
  }
}
.banner-inner {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vw, 140px) 32px;
}
.banner-text { margin-bottom: 56px; max-width: 640px; }
.banner-text h2 { margin: 0; text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5); }
.banner-text .kicker { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); }

.gains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.gain-card {
  background: rgba(6, 7, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 38px 34px;
}
.gain-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1;
}
.gain-card h3 { color: var(--white); margin-bottom: 10px; }
.gain-card p { color: rgba(255, 255, 255, 0.82); }

/* ---------- Prijava formom ---------- */
.signup {
  background: var(--navy);
  scroll-margin-top: 96px;
}
@media (max-width: 900px) {
  .signup { scroll-margin-top: 80px; }
}
.signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.signup-text h2 { margin-bottom: 24px; }
.signup-desc { color: rgba(255, 255, 255, 0.72); font-size: 1.05rem; }

.signup-form {
  background: var(--white);
  padding: 44px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.form-row input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid #E0E1EA;
  border-radius: 10px;
  color: var(--navy);
  transition: border-color var(--ease);
}
.form-row input:focus { outline: none; border-color: var(--orange); }
.signup-form .btn {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-top: 6px;
}
.signup-form .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.form-status.visible { display: block; }
.form-status.success { color: #1c7c4c; }
.form-status.error { color: #c0392b; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 170px 0 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.page-hero-bg-kontakt { object-position: 70% 0%; }
.page-hero-bg-faq { object-position: 50% 13%; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 32, 0.55) 0%, rgba(11, 12, 32, 0.62) 55%, rgba(11, 12, 32, 0.82) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.page-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.page-hero-stats {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- Quote block ---------- */
.quote-block {
  background: var(--navy);
  padding: clamp(80px, 11vw, 150px) 0;
}
.quote-text {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem);
  line-height: 1.25;
  color: var(--white);
  max-width: 1100px;
}

/* ---------- Kako radimo ---------- */
.how-we-work-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.how-we-work-text p { margin-bottom: 0; }

/* ---------- Kontakt podaci ---------- */
.contact-info {
  background: var(--off-white);
  padding: clamp(64px, 9vw, 120px) 0;
}
.contact-info h2 { margin-bottom: 40px; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.contact-info-item {
  padding-top: 20px;
  border-top: 3px solid var(--orange);
}
.contact-info-item h3 {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--gray-text);
  margin-bottom: 10px;
}
.contact-info-value {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-transform: uppercase;
  transition: color var(--ease);
}
a.contact-info-value:hover { color: var(--orange); }
.contact-info-value-email {
  font-size: 1.25rem;
  text-transform: none;
  word-break: break-word;
}
p.contact-info-value {
  font-size: 1.3rem;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
}
.contact-info-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* ---------- Kako izgleda prvi kontakt ---------- */
.contact-steps {
  background: var(--navy);
  padding: clamp(64px, 9vw, 120px) 0;
}
.contact-steps h2 { color: var(--white); margin-bottom: 48px; }
.contact-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-steps-grid li {
  padding-top: 24px;
  border-top: 3px solid var(--orange);
}
.contact-steps-grid .feature-index {
  display: block;
  width: auto;
  margin-bottom: 14px;
}
.contact-steps-grid h3 { color: var(--white); margin-bottom: 8px; }
.contact-steps-grid p { color: rgba(255, 255, 255, 0.72); }

/* ---------- Gde treniramo ---------- */
.locations-section {
  background: var(--navy);
  padding: clamp(64px, 9vw, 120px) 0;
}
.locations-section h2 { margin-bottom: 20px; }
.locations-intro {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 44px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.location-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px;
}
.location-card h3 { color: var(--white); margin-bottom: 8px; }
.location-card p { color: rgba(255, 255, 255, 0.72); }
.location-card .location-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.location-map {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Lokacije (svetla varijanta — kontakt.html) ---------- */
.locations-light {
  background: var(--off-white);
}
.locations-light h2 { margin-bottom: 48px; }
.locations-light .location-card {
  background: var(--white);
  border: 1px solid rgba(19, 21, 53, 0.08);
  box-shadow: var(--shadow-sm);
}
.locations-light .location-card h3 { color: var(--navy); }
.locations-light .location-card p { color: var(--gray-text); }
.locations-light .location-card .location-note {
  border-top-color: rgba(19, 21, 53, 0.1);
}
.locations-light .location-map {
  background: rgba(19, 21, 53, 0.04);
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--off-white);
  padding: clamp(64px, 9vw, 120px) 0;
}
.faq-section h2 { margin-bottom: 48px; }
.faq-list {
  max-width: 880px;
}
.faq-item {
  border-bottom: 1px solid rgba(19, 21, 53, 0.12);
}
.faq-item:first-child { border-top: 1px solid rgba(19, 21, 53, 0.12); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question-text {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--navy);
  line-height: 1.3;
}
.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform var(--ease);
  border-radius: 999px;
}
.faq-icon::before { width: 16px; height: 3px; }
.faq-icon::after { width: 3px; height: 16px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 0 4px 26px;
  max-width: 720px;
}

/* ---------- Citat osnivača ---------- */
.founder-quote {
  background: var(--off-white);
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 0;
}
.founder-quote-text {
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto;
}
.founder-quote-sig {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---------- Final CTA (interior pages) ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb84d 100%);
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
}
.final-cta h2 { color: var(--navy); margin-bottom: 32px; }
.final-cta .cta-group { justify-content: center; }
.final-cta .btn-primary { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }
.final-cta .btn-primary:hover { background: var(--navy-soft); box-shadow: var(--shadow-lg); }
.final-cta .btn-secondary { border-color: var(--navy); color: var(--navy); }
.final-cta .btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a { margin-bottom: 8px; font-size: 0.95rem; }
.footer-col a { transition: color var(--ease); }
.footer-col a:hover { color: var(--orange); }
.logo-crest-footer { height: 76px; margin-bottom: 14px; }
.footer-nav li { margin-bottom: 8px; }
.footer-bottom { padding: 24px 32px; text-align: center; font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }

  .header-inner { padding-top: 16px; padding-bottom: 16px; }
  .logo-crest { height: 40px; }
  .btn-header { padding: 10px 18px; font-size: 0.76rem; }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    flex-direction: column;
    background: var(--navy);
    padding: 130px 32px 48px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity var(--ease), transform var(--ease);
  }
  .mobile-nav.is-visible { display: flex; }
  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .mobile-nav li { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .mobile-nav li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .mobile-nav a {
    display: block;
    padding: 18px 4px;
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    transition: color var(--ease);
  }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--orange); }
  .mobile-nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
  }

  .site-header.scrolled .header-inner { padding-top: 10px; padding-bottom: 10px; }
  .site-header.scrolled .logo-crest { height: 30px; }
  .site-header.scrolled .btn-header { padding: 7px 14px; font-size: 0.68rem; }

  .split-bleed { grid-template-columns: 1fr; }
  .split-text,
  .split-reverse .split-text {
    justify-content: flex-start;
    padding-left: 32px;
    padding-right: 32px;
  }
  .split-text-inner {
    max-width: 100%;
    padding: 56px 0;
  }
  .split-media { min-height: 340px; }
  .split-reverse .split-media img { object-position: 68% 22%; }

  .signup-inner { grid-template-columns: 1fr; gap: 48px; }

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

  .contact-steps-grid { grid-template-columns: 1fr; gap: 32px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stat-item:nth-child(3) { border-left: none; }

  .page-hero { min-height: 78vh; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

@media (max-width: 640px) {
  :root { --gutter: 22px; }

  .hero { min-height: 80vh; padding: 110px 0 60px; background: var(--navy); }
  .hero-bg {
    object-fit: cover;
    object-position: 80% 30%;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 12, 32, 0.05) 0%, rgba(11, 12, 32, 0.15) 38%, rgba(11, 12, 32, 0.55) 55%, rgba(11, 12, 32, 0.88) 75%, rgba(11, 12, 32, 0.96) 100%);
  }
  .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-bottom: 18px;
    background: rgba(11, 12, 32, 0.55);
    padding: 8px 16px;
    border-radius: 999px;
  }
  .eyebrow-break { display: inline; }

  .hero h1 { margin-bottom: 18px; }
  .hero-sub { margin-bottom: 18px; line-height: 1.5; }

  .cta-group { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-group .btn {
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    font-size: 0.82rem;
  }
  .cta-group .btn-secondary { border-width: 1.5px; font-weight: 600; }

  .signup-form { padding: 30px; }
  .banner-inner { padding-left: 22px; padding-right: 22px; }

  .page-hero { min-height: auto; padding: 130px 0 56px; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; margin-top: 32px; padding-top: 24px; }
}

@media (max-width: 400px) {
  .call-text { display: none; }
  .call-icon { display: inline; }
  .btn-header-call { padding-left: 14px; padding-right: 14px; }
}
