/* ============================================================
   Consultancy 15 — Landing page styles
   Extracted from the original HTML design.
   Enqueued by includes/consultancy.php for page_consultancy.php
   Source (editable): assets/scss/consultancy.scss
   ============================================================ */

/* ─────────── Tokens ─────────── */
:root{
  --blue:        #0D1642;
  --blue-2:      #151F58;
  --blue-deep:   #080E2E;
  --orange:      #FF6724;
  --orange-tint: #FF7A33;
  --white:       #EFEFEF;
  --paper:       #F4F2EC;
  --cool:        #568FE8;
  --cool-2:      #2484ED;
  --green:       #E0E721;

  --fg-on-dark:  #EFEFEF;
  --fg-mute-on-dark: rgba(239,239,239,0.55);
  --fg-on-light: #0D1642;
  --fg-mute-on-light: rgba(13,22,66,0.6);

  --mono: 'DM Mono', ui-monospace, Menlo, monospace;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Highway Gothic Condensed', 'Highway Gothic Extra Condensed', 'Fira Sans Extra Condensed', 'Arial Narrow', Impact, sans-serif;
  --script: var(--display);
}

/* ─────────── Reset & base ─────────── */
.c15 *, .c15 *::before, .c15 *::after { box-sizing: border-box; }
.c15 { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.page-consultancy {
  margin: 0;
  font-family: var(--sans);
  background: var(--blue);
  color: var(--fg-on-dark);
  line-height: 1.5;
  overflow-x: hidden;
}
/* Anchor targets clear the sticky nav (used as a fallback when JS smooth-scroll is unavailable). */
.c15 [id] { scroll-margin-top: 90px; }
.c15 h1,.c15 h2,.c15 h3,.c15 h4,.c15 p,.c15 ul { margin: 0; padding: 0; }
.c15 ul { list-style: none; }
.c15 a { color: inherit; text-decoration: none; }
.c15 button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.c15 img, .c15 svg { display: block; max-width: 100%; }

.c15 ::selection { background: var(--orange); color: var(--white); }

/* ─────────── Utility ─────────── */
.c15 .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.c15 .mono { font-family: var(--mono); }
.c15 .display { font-family: var(--display); font-weight: 700; letter-spacing: 0; }
.c15 .script-accent { font-family: var(--display); font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0; }
.c15 em.script, .c15 h1 em, .c15 h2 em, .c15 h3 em { font-style: normal; }
.c15 .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute-on-dark);
}
.c15 .eyebrow.dark { color: var(--fg-mute-on-light); }
.c15 .eyebrow::before {
  content: "↳ ";
  margin-right: 4px;
  opacity: 0.6;
}

/* Orange highlight block — the signature brand move */
.c15 .hl {
  background: var(--orange);
  color: var(--white);
  padding: 0.02em 0.18em 0.06em;
  display: inline-block;
  position: relative;
  transform: skew(-3deg) rotate(-0.6deg);
}
.c15 .hl::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%);
  pointer-events:none;
}

/* Buttons */
.c15 .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 0;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  cursor: pointer; user-select: none;
  white-space: nowrap;
}
.c15 .btn .arrow { transition: transform .2s ease; }
.c15 .btn:hover .arrow { transform: translateX(4px); }
.c15 .btn:active { transform: translateY(1px); }

.c15 .btn-primary {
  background: var(--orange); color: var(--white);
}
.c15 .btn-primary:hover { background: var(--orange-tint); }

.c15 .btn-ghost-dark {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(239,239,239,0.35);
}
.c15 .btn-ghost-dark:hover { box-shadow: inset 0 0 0 1px var(--white); background: rgba(239,239,239,0.04); }

.c15 .btn-ghost-light {
  background: transparent; color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(13,22,66,0.25);
}
.c15 .btn-ghost-light:hover { box-shadow: inset 0 0 0 1px var(--blue); }

.c15 .btn-dark {
  background: var(--blue); color: var(--white);
}
.c15 .btn-dark:hover { background: var(--blue-2); }

/* ─────────── Pattern background ─────────── */
.c15 .pattern-host{
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.c15 .pattern-host svg{ width: 100%; height: 100%; }
.c15 .pattern-tile text,
.c15 .pattern-tile path,
.c15 .pattern-tile rect,
.c15 .pattern-tile circle,
.c15 .pattern-tile line { fill: var(--cool); stroke: var(--cool); }

.c15[data-pattern="off"] .pattern-host { display: none; }
.c15[data-pattern="subtle"] .pattern-host { opacity: 0.07; }
.c15[data-pattern="loud"] .pattern-host { opacity: 0.22; }

/* ─────────── Nav ─────────── */
.c15 .site-nav{
  position: sticky; top: 0; z-index: 50;
  background: var(--blue);
  border-bottom: 1px solid rgba(239,239,239,0.07);
}
.c15 .nav-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 40px;
}
.c15 .brand{
  display: flex; align-items: center; gap: 12px;
}
.c15 .brand-mark{
  width: 44px; height: 44px;
  display: block;
  flex: 0 0 auto;
}
.c15 .brand-mark img{
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
}
.c15 .brand-name{
  font-family: var(--display);
  color: var(--white);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.c15 .brand-name em{
  font-family: var(--display);
  color: var(--orange);
  font-style: normal;
  font-size: 22px;
  margin-left: 2px;
}
.c15 .brand-tag{
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute-on-dark);
  margin-top: 2px;
}

.c15 .nav-links{
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-mute-on-dark);
}
.c15 .nav-links a{ position: relative; padding: 6px 2px; transition: color .2s; }
.c15 .nav-links a:hover{ color: var(--white); }
.c15 .nav-links a::after{
  content:""; position: absolute; left: 2px; right: 2px; bottom: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.c15 .nav-links a:hover::after{ transform: scaleX(1); }

.c15 .nav-cta{
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 10px 16px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .2s;
}
.c15 .nav-cta:hover{ background: var(--orange-tint); }

/* ─────────── HERO ─────────── */
.c15 .hero{
  position: relative;
  padding: 96px 0 120px;
  background: var(--blue);
  overflow: hidden;
}
.c15 .hero .container{ position: relative; z-index: 2; }

.c15 .hero-top{
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.c15 .hero-coords{
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-mute-on-dark);
  letter-spacing: 0.14em; text-transform: uppercase;
  display: grid; gap: 4px; text-align: right;
}

.c15 .hero h1{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 11.5vw, 184px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  color: var(--white);
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 28px;
}
.c15 .hero h1 .line{ display: block; }
.c15 .hero h1 .line.script-line{
  font-family: var(--display);
  font-weight: 700;
  font-size: 1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 0;
  margin-left: 0;
  letter-spacing: 0;
  line-height: 0.88;
  transform: none;
}
.c15 .hero h1 .hl{
  font-size: 0.96em;
  line-height: 1;
}

.c15 .hero-body{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-top: 20px;
}
.c15 .hero-lead{
  font-size: 19px;
  line-height: 1.5;
  color: var(--white);
  max-width: 520px;
  text-wrap: pretty;
}
.c15 .hero-lead strong{ color: var(--orange); font-weight: 600; }

.c15 .hero-meta{
  display: grid; gap: 18px;
  justify-self: end;
  align-self: end;
}
.c15 .hero-ctas{ display: flex; gap: 10px; flex-wrap: wrap; }
.c15 .hero-sub{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute-on-dark);
}

/* Roman numerals strip */
.c15 .numerals{
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(239,239,239,0.22);
  margin-top: 80px;
  padding-top: 18px;
  border-top: 1px solid rgba(239,239,239,0.12);
}

/* Flying pig accent */
.c15 .pig{
  position: absolute;
  right: 5%;
  top: 26%;
  width: 180px;
  z-index: 1;
  opacity: 0.95;
  transform: rotate(-8deg);
  animation: pigFloat 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pigFloat{
  0%,100% { transform: rotate(-8deg) translateY(0px); }
  50%     { transform: rotate(-6deg) translateY(-14px); }
}
.c15[data-pig="false"] .pig{ display: none; }

/* ─────────── Marquee ─────────── */
.c15 .marquee{
  background: var(--white);
  color: var(--blue);
  padding: 22px 0;
  overflow: hidden;
}
.c15 .marquee-track{
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  animation: marqueeScroll linear infinite;
  animation-duration: calc(var(--marquee-speed,35) * 1s);
}
.c15 .marquee span{
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 42px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.c15 .marquee .accent{ color: var(--orange); }
.c15 .marquee .dot{
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────── Rolodex ─────────── */
.c15 .rolodex{
  position: relative;
  padding: 56px 0 64px;
  background: var(--blue);
  overflow: hidden;
}
.c15 .rolodex .container{ position: relative; z-index: 2; }
.c15 .rolodex-head{
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}
.c15 .rolodex-head h2{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.c15 .rolodex-head h2 .script{
  color: var(--orange);
  display: inline;
  text-transform: uppercase;
}
.c15 .rolodex-counter{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute-on-dark);
  text-align: right;
}
.c15 .rolodex-counter .num{
  color: var(--orange);
  font-size: 14px;
}

.c15 .rolo-stage{
  position: relative;
  height: 220px;
  display: flex; align-items: center;
  border-top: 1px solid rgba(239,239,239,0.12);
  border-bottom: 1px solid rgba(239,239,239,0.12);
}
.c15 .rolo-slide{
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  padding: 0 16px;
}
.c15 .rolo-slide.active{ opacity: 1; transform: translateY(0); }
.c15 .rolo-slide.exit{ opacity: 0; transform: translateY(-20px); }

.c15 .rolo-problem{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  text-align: right;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.c15 .rolo-answer{
  font-family: var(--display);
  font-weight: 700;
  color: var(--orange);
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0;
}
.c15 .rolo-divider{
  width: 1px; height: 56px;
  background: rgba(239,239,239,0.25);
}

.c15 .rolo-controls{
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
}
.c15 .rolo-dots{ display: flex; gap: 6px; flex-wrap: wrap; }
.c15 .rolo-dot{
  width: 10px; height: 10px;
  background: rgba(239,239,239,0.18);
  transition: background .2s, width .2s;
  cursor: pointer;
}
.c15 .rolo-dot.active{ background: var(--orange); width: 28px; }
.c15 .rolo-arrows{ display: flex; gap: 8px; }
.c15 .rolo-arrow{
  width: 44px; height: 44px;
  border: 1px solid rgba(239,239,239,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s, border-color .2s;
}
.c15 .rolo-arrow:hover{
  background: var(--orange); border-color: var(--orange);
}

.c15 .rolodex-cta{ text-align: center; margin-top: 24px; }

/* Original rolodex rotator (compact) */
.c15 .rolo-stage{
  position: relative;
  height: 140px;
  display: flex; align-items: center;
  border-top: 1px solid rgba(239,239,239,0.18);
  border-bottom: 1px solid rgba(239,239,239,0.18);
}
.c15 .rolo-slide{
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  padding: 0 16px;
}
.c15 .rolo-slide.active{ opacity: 1; transform: translateY(0); }
.c15 .rolo-slide.exit{ opacity: 0; transform: translateY(-14px); }
.c15 .rolo-problem{
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 0.98;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--white);
  text-align: right;
  text-wrap: balance;
}
.c15 .rolo-answer{
  font-family: var(--display); font-weight: 700;
  color: var(--orange);
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 0.98;
  text-transform: uppercase; letter-spacing: 0;
  text-align: left;
}
.c15 .rolo-divider{
  width: 1px; height: 40px;
  background: rgba(239,239,239,0.25);
}
.c15 .rolo-controls{
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px;
}
.c15 .rolo-dots{ display: flex; gap: 6px; flex-wrap: wrap; }
.c15 .rolo-dot{
  width: 8px; height: 8px;
  background: rgba(239,239,239,0.18);
  transition: background .2s, width .2s;
  cursor: pointer;
}
.c15 .rolo-dot.active{ background: var(--orange); width: 22px; }
.c15 .rolo-arrows{ display: flex; gap: 6px; }
.c15 .rolo-arrow{
  width: 36px; height: 36px;
  border: 1px solid rgba(239,239,239,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.c15 .rolo-arrow:hover{ background: var(--orange); border-color: var(--orange); }

@media (max-width: 640px){
  .c15 .rolo-stage{ height: 180px; }
  .c15 .rolo-slide{ grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .c15 .rolo-problem, .c15 .rolo-answer{ text-align: center; }
  .c15 .rolo-divider{ display: none; }
}

/* ─────────── Section: Ways ─────────── */
.c15 .section-paper{
  background: var(--paper);
  color: var(--fg-on-light);
  padding: 120px 0;
  position: relative;
}
.c15 .section-light{
  background: var(--white);
  color: var(--fg-on-light);
  padding: 120px 0;
  position: relative;
}
.c15 .section-dark{
  background: var(--blue);
  color: var(--fg-on-dark);
  padding: 120px 0;
  position: relative;
}

.c15 .section-head{
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.c15 .section-head h2{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.c15 .section-head .lead{
  font-size: 18px; line-height: 1.5;
  max-width: 460px; justify-self: end;
}

.c15 .ways-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(13,22,66,0.12);
  border: 1px solid rgba(13,22,66,0.12);
}
.c15 .way{
  background: var(--paper);
  padding: 40px 36px 36px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 460px;
  transition: background .25s ease, color .25s ease;
}
.c15 .way:hover{ background: var(--blue); color: var(--fg-on-dark); }
.c15 .way:hover .way-num,
.c15 .way:hover .way-meta,
.c15 .way:hover .way-tag{ color: var(--fg-mute-on-dark); }
.c15 .way:hover .way-link{ color: var(--orange); }
.c15 .way:hover .way-link::after{ background: var(--orange); }
.c15 .way:hover .way-divider{ background: rgba(239,239,239,0.15); }
.c15 .way:hover .way-pennant{ background: var(--orange); color: var(--white); }

.c15 .way-top{ display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.c15 .way-num{
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; color: var(--fg-mute-on-light);
  transition: color .25s;
}
.c15 .way-pennant{
  display: inline-flex; align-items: center; padding: 5px 12px 5px 14px;
  background: var(--blue); color: var(--white);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  position: relative;
  transition: background .25s, color .25s;
}
.c15 .way-pennant::after{
  content:"";
  position: absolute; left: 100%; top: 0; bottom: 0;
  border-left: 10px solid currentColor;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  color: var(--blue);
  transition: color .25s;
}
.c15 .way:hover .way-pennant::after{ color: var(--orange); }

.c15 .way h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.c15 .way h3 em{
  font-style: normal;
  color: var(--orange);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.c15 .way-divider{
  height: 1px; background: rgba(13,22,66,0.12);
  margin: auto 0 22px;
  transition: background .25s;
}
.c15 .way p{
  font-size: 15px; line-height: 1.6;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.c15 .way-meta{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-mute-on-light);
  margin-top: auto;
  transition: color .25s;
}
.c15 .way-link{
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  position: relative;
}
.c15 .way-link::after{
  content:""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.c15 .way:hover .way-link::after{ transform: scaleX(1); }
.c15 .way-link .arrow{ transition: transform .25s; }
.c15 .way:hover .way-link .arrow{ transform: translateX(4px); }

/* ─────────── Proof / Clients ─────────── */
.c15 .proof{
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(13,22,66,0.08);
  border-bottom: 1px solid rgba(13,22,66,0.08);
}
.c15 .proof-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px;
  gap: 24px; flex-wrap: wrap;
}
.c15 .proof-head h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--blue);
}
.c15 .proof-head h3 em{
  font-style: normal;
  color: var(--orange);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.c15 .proof-count{
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-mute-on-light);
}
.c15 .proof-count strong{ color: var(--orange); font-weight: 500; font-size: 14px; }

.c15 .proof-logos{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  border: 1px solid rgba(13,22,66,0.12);
}
.c15 .proof-logo{
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid rgba(13,22,66,0.12);
  border-bottom: 1px solid rgba(13,22,66,0.12);
  position: relative;
  padding: 28px 24px;
  transition: background .2s;
}
.c15 .proof-logo:nth-child(4n){ border-right: 0; }
.c15 .proof-logo img{
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter .25s ease, opacity .25s ease;
}
.c15 .proof-logo:hover img{ filter: grayscale(0); opacity: 1; }
.c15 .proof-logo:last-child{ border-right: 0; border-bottom: 0; }
.c15 .proof-logo:hover{ background: var(--paper); }
.c15 .proof-logo-label{
  position: absolute;
  top: 10px; left: 12px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(13,22,66,0.32);
}
.c15 .proof-logo-name{
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  color: var(--blue);
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.c15 .proof-logo-sub{
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--fg-mute-on-light);
  margin-top: 8px;
  text-transform: uppercase;
}
.c15 .proof-logo-big{
  font-family:var(--display);font-weight:700;font-size:42px;
  color:var(--orange);text-transform:uppercase;line-height:1;
}

/* ─────────── Team ─────────── */
.c15 .team-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}
.c15 .team-copy h2{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  text-wrap: balance;
  margin-bottom: 28px;
}
.c15 .team-copy h2 em.script{
  font-style: normal;
  color: var(--orange);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.c15 .team-copy p{
  font-size: 17px; line-height: 1.6;
  margin-bottom: 18px;
  color: var(--fg-on-dark);
  text-wrap: pretty;
}
.c15 .team-copy p:last-child{ margin-bottom: 0; }
.c15 .team-copy p .underline{
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
}

.c15 .stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(239,239,239,0.12);
  border: 1px solid rgba(239,239,239,0.12);
}
.c15 .stat{
  background: var(--blue);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  min-height: 180px;
}
.c15 .stat-num{
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.95;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.c15 .stat-num.small{ font-size: 32px; color: var(--white); }
.c15 .stat-label{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-mute-on-dark);
  margin-top: auto;
  line-height: 1.5;
}

/* ─────────── Pricing ─────────── */
.c15 .pricing-table{
  border: 1px solid rgba(13,22,66,0.15);
}
.c15 .pricing-row{
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(13,22,66,0.12);
  transition: background .2s;
}
.c15 .pricing-row:last-child{ border-bottom: 0; }
.c15 .pricing-row:hover{ background: var(--paper); }
.c15 .pricing-row.head{
  background: var(--blue); color: var(--white);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.c15 .pricing-row.head:hover{ background: var(--blue); }
.c15 .price-name{
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.c15 .price-name em{
  font-style: normal; color: var(--orange);
  text-transform: uppercase;
}
.c15 .price-desc{ font-size: 15px; line-height: 1.5; color: rgba(13,22,66,0.78); }
.c15 .price-amount{
  text-align: right;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.005em;
}
.c15 .price-amount em{
  font-family: var(--mono); font-style: normal;
  font-size: 11px; color: var(--fg-mute-on-light);
  letter-spacing: 0.14em; text-transform: uppercase;
  display: block; margin-top: 6px;
}

/* ─────────── Final CTA ─────────── */
.c15 .final-cta{
  position: relative;
  background: var(--blue);
  padding: 140px 0 80px;
  overflow: hidden;
}
.c15 .final-cta .container{ position: relative; z-index: 2; }
.c15 .final-cta-inner{ text-align: left; }
.c15 .final-cta h2{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(72px, 12vw, 220px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.c15 .final-cta h2 em{
  font-style: normal;
  color: var(--orange);
  text-transform: uppercase;
}
.c15 .final-cta p{
  font-size: 19px; line-height: 1.5;
  color: var(--fg-mute-on-dark);
  max-width: 540px;
  margin-bottom: 36px;
}
.c15 .cta-form{
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
  background: rgba(239,239,239,0.06);
  border: 1px solid rgba(239,239,239,0.16);
  padding: 8px;
  max-width: 640px;
}
.c15 .cta-form input{
  flex: 1; min-width: 220px;
  background: transparent; border: 0;
  color: var(--white);
  font: 500 16px var(--sans);
  padding: 14px 18px;
  outline: none;
}
.c15 .cta-form input::placeholder{ color: rgba(239,239,239,0.45); }
.c15 .cta-form input:focus{ background: rgba(239,239,239,0.04); }
.c15 .cta-note{
  margin-top: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-mute-on-dark);
}
.c15 .cta-note .dot{ color: var(--orange); margin: 0 8px; }

/* ─────────── Gravity Forms (Final CTA) ─────────── */
/* Visual styling only — GF keeps control of field layout so multi-column
   forms still work. Scoped + !important to override GF's own theme CSS. */
.c15 .cta-gform{ max-width: 640px; }
.c15 .cta-gform .gform_wrapper{ margin: 0; }
.c15 .cta-gform .gform_heading{ display: none; }

/* Labels */
.c15 .cta-gform .gfield_label,
.c15 .cta-gform legend.gfield_label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute-on-dark);
  font-weight: 500;
  margin: 0 0 8px;
}
.c15 .cta-gform .gfield_required{ color: var(--orange); }
.c15 .cta-gform .gfield_description,
.c15 .cta-gform .gform_required_legend{
  color: var(--fg-mute-on-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Inputs / textareas / selects */
.c15 .cta-gform input[type=text],
.c15 .cta-gform input[type=email],
.c15 .cta-gform input[type=tel],
.c15 .cta-gform input[type=url],
.c15 .cta-gform input[type=number],
.c15 .cta-gform input[type=password],
.c15 .cta-gform textarea,
.c15 .cta-gform select{
  width: 100% !important;
  max-width: 100% !important;
  background: rgba(239,239,239,0.06) !important;
  border: 1px solid rgba(239,239,239,0.16) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font: 500 16px var(--sans) !important;
  padding: 14px 18px !important;
  outline: none !important;
  box-shadow: none !important;
}
.c15 .cta-gform textarea{ min-height: 120px; resize: vertical; }
.c15 .cta-gform input::placeholder,
.c15 .cta-gform textarea::placeholder{ color: rgba(239,239,239,0.45); }
.c15 .cta-gform input:focus,
.c15 .cta-gform textarea:focus,
.c15 .cta-gform select:focus{
  background: rgba(239,239,239,0.10) !important;
  border-color: rgba(239,239,239,0.45) !important;
}

/* Submit button — match .btn .btn-primary */
.c15 .cta-gform .gform_footer,
.c15 .cta-gform .gform_page_footer{ margin: 18px 0 0; padding: 0; }
.c15 .cta-gform .gform_button,
.c15 .cta-gform input[type=submit]{
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: auto !important;
  padding: 16px 22px !important;
  font-family: var(--mono) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: transform .15s ease, background .2s;
}
.c15 .cta-gform .gform_button:hover,
.c15 .cta-gform input[type=submit]:hover{ background: var(--orange-tint) !important; }
.c15 .cta-gform .gform_button:active,
.c15 .cta-gform input[type=submit]:active{ transform: translateY(1px); }

/* Validation + confirmation */
.c15 .cta-gform .gfield_error input,
.c15 .cta-gform .gfield_error textarea,
.c15 .cta-gform .gfield_error select{ border-color: var(--orange) !important; }
.c15 .cta-gform .gfield_validation_message,
.c15 .cta-gform .validation_message,
.c15 .cta-gform .gform_validation_errors{
  color: var(--orange) !important;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.c15 .cta-gform .gform_validation_errors h2{ color: var(--orange) !important; }
.c15 .cta-gform .gform_confirmation_message{
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 16px 0;
}

/* Footer logo lockup */
.c15 .footer-lockup{
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding: 24px 0 48px;
  border-bottom: 1px solid rgba(239,239,239,0.1);
  margin-bottom: 56px;
}
.c15 .footer-lockup img{
  display: block;
  height: 450px; width: auto;
  flex: 0 0 auto;
}
.c15 .footer-lockup .lockup-rh{
  display: flex; flex-direction: column; gap: 10px;
  text-align: right; max-width: 480px;
}
.c15 .footer-lockup .lockup-rh .display{
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.c15 .footer-lockup .lockup-rh .display em{
  font-style: normal; color: var(--orange);
}
.c15 .footer-lockup .lockup-rh .mono{
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute-on-dark);
}
@media (max-width: 768px){
  .c15 .footer-lockup{ flex-direction: column; align-items: flex-start; }
  .c15 .footer-lockup .lockup-rh{ text-align: left; }
  .c15 .footer-lockup img{ height: 280px; }
}

/* ─────────── Footer ─────────── */
.c15 .site-footer{
  background: var(--blue-deep);
  color: var(--fg-on-dark);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.c15 .footer-marquee{
  border-top: 1px solid rgba(239,239,239,0.1);
  border-bottom: 1px solid rgba(239,239,239,0.1);
  padding: 22px 0;
  overflow: hidden;
  margin-bottom: 56px;
}
.c15 .footer-marquee .marquee-track span{
  color: var(--white);
}
.c15 .footer-marquee .marquee-track .accent{ color: var(--orange); }

.c15 .footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.c15 .footer-col h4{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-mute-on-dark);
  margin-bottom: 18px;
}
.c15 .footer-col h4::before{ content:"↳ "; opacity: .6; }
.c15 .footer-col ul{ display: grid; gap: 10px; }
.c15 .footer-col a{
  font-size: 15px; color: var(--white);
  transition: color .2s;
}
.c15 .footer-col a:hover{ color: var(--orange); }
.c15 .footer-col p{
  font-size: 15px; color: var(--white); line-height: 1.5;
  margin-bottom: 14px;
}
.c15 .footer-news input{
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(239,239,239,0.3);
  padding: 12px 0;
  color: var(--white);
  font-family: var(--mono); font-size: 13px;
  outline: none;
}
.c15 .footer-news input::placeholder{ color: rgba(239,239,239,0.4); }
.c15 .footer-news .subscribe{
  margin-top: 10px;
  background: var(--orange); color: var(--white);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 14px;
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
}
.c15 .footer-news .subscribe:hover{ background: var(--orange-tint); }

.c15 .footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(239,239,239,0.08);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-mute-on-dark);
}
.c15 .footer-bottom a{ color: inherit; }
.c15 .footer-bottom a:hover{ color: var(--white); }
.c15 .footer-bottom .right{ display: flex; gap: 20px; }

/* ─────────── Color emphasis variants ─────────── */
.c15[data-color="orange"] .hero h1 .hl{ font-size: 0.96em; }
.c15[data-color="orange"] .marquee .accent{ color: var(--orange); }

.c15[data-color="restrained"] .hl{
  background: transparent;
  color: var(--orange);
  transform: none;
  padding: 0;
}
.c15[data-color="restrained"] .hl::after{ display: none; }
.c15[data-color="restrained"] .hero h1 .line.script-line{ color: var(--white); }
.c15[data-color="restrained"] .rolo-answer{ color: var(--white); }
.c15[data-color="restrained"] .marquee{ border-color: var(--blue); }
.c15[data-color="restrained"] .marquee .accent{ color: var(--blue); }
.c15[data-color="restrained"] .final-cta h2 em{ color: var(--white); }

/* ─────────── Hero variants ─────────── */
.c15[data-hero="caps-only"] .hero h1 .line.script-line{ display: none; }
.c15[data-hero="caps-only"] .hero h1 .line.caps-extra{ display: block; }
.c15[data-hero="caps-script"] .hero h1 .line.caps-extra{ display: none; }
.c15[data-hero="caps-script"] .hero h1 .line.script-line{ display: block; }

/* ─────────── Responsive ─────────── */
@media (max-width: 1024px){
  .c15 .hero h1{ font-size: clamp(56px, 12vw, 120px); }
  .c15 .section-head{ grid-template-columns: 1fr; }
  .c15 .section-head .lead{ justify-self: start; }
  .c15 .team-grid{ grid-template-columns: 1fr; gap: 40px; }
  .c15 .ways-grid{ grid-template-columns: 1fr; }
  .c15 .way{ min-height: auto; }
  .c15 .proof-logos{ grid-template-columns: 1fr 1fr; }
  .c15 .proof-logo:nth-child(2){ border-right: 0; }
  .c15 .proof-logo:nth-child(-n+2){ border-bottom: 1px solid rgba(13,22,66,0.12); }
  .c15 .pricing-row{ grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .c15 .pricing-row .price-amount{ text-align: left; }
  .c15 .footer-grid{ grid-template-columns: 1fr 1fr; }
  .c15 .pig{ display:none; }
}
@media (max-width: 640px){
  .c15 .container{ padding: 0 24px; }
  .c15 .nav-inner{ grid-template-columns: auto auto; gap: 12px; padding: 14px 24px; }
  .c15 .nav-links{ display: none; }
  .c15 .hero{ padding: 56px 0 80px; }
  .c15 .hero-body{ grid-template-columns: 1fr; gap: 32px; }
  .c15 .hero-meta{ justify-self: start; }
  .c15 .numerals{ font-size: 9px; letter-spacing: 0.2em; margin-top: 48px; }
  .c15 .marquee span{ font-size: 28px; }
  .c15 .rolodex{ padding: 64px 0; }
  .c15 .rolodex-head{ grid-template-columns: 1fr; }
  .c15 .rolodex-counter{ text-align: left; }
  .c15 .rolo-stage{ height: 240px; }
  .c15 .rolo-slide{ grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .c15 .rolo-problem, .c15 .rolo-answer{ text-align: center; }
  .c15 .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
}
