/* ============================================================
   CovQ — Landing Page styles
   Brand DNA (from brochure): DEEP·IMPACT·CREATES·VALUE·BUILDING
   navy / red / yellow / green / black on a navy-and-white base.
   Type: Averta (institutional) with Manrope as web fallback.
   ============================================================ */

:root {
  /* Brand */
  --navy: #183060;
  --navy-deep: #0e1f44;
  --campaign: #10224a; /* campaign hero navy (from ad) */
  --navy-700: #22417a;
  --royal: #1b2369; /* site header CTA + footer indigo */
  --royal-top: #1f2774;
  --royal-bottom: #121a5b;
  --topline: #ff3636; /* site red accent line */
  --red: #ff0030; /* IMPACT — primary CTA */
  --yellow: #d8c000; /* CREATES */
  --green: #00c81e; /* VALUE  (toned from #00d800 for UI contrast) */
  --green-bright: #00d800;
  --black: #14181f;

  /* Neutrals */
  --ink: #1b2233;
  --muted: #5c667a;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --bg-soft-2: #eef2f9;
  --line: #e4e8f1;
  --line-soft: #eef1f7;
  --white: #ffffff;

  --shadow-sm:
    0 1px 2px rgba(16, 33, 72, 0.06), 0 2px 8px rgba(16, 33, 72, 0.05);
  --shadow-md:
    0 8px 24px rgba(16, 33, 72, 0.1), 0 2px 6px rgba(16, 33, 72, 0.06);
  --shadow-lg:
    0 28px 70px rgba(14, 31, 68, 0.2), 0 8px 22px rgba(14, 31, 68, 0.1);

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;

  --font:
    "Averta", "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 152px;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--navy);
}
p {
  margin: 0;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow .dots {
  display: inline-flex;
  gap: 4px;
}
.eyebrow .dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}
.dot-navy {
  background: var(--navy);
}
.dot-red {
  background: var(--red);
}
.dot-yellow {
  background: var(--yellow);
}
.dot-green {
  background: var(--green-bright);
}
.dot-black {
  background: var(--black);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 0, 48, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 0, 48, 0.34);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(24, 48, 96, 0.22);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(24, 48, 96, 0.04);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn .arr {
  transition: transform 0.2s ease;
}
.btn:hover .arr {
  transform: translateX(3px);
}

/* ============================================================
   SITE HEADER  (red line + main menu + anchor sub-nav)  — sticky double
   ============================================================ */
.topbar-sticky {
  position: sticky;
  top: 0;
  z-index: 60;
}

@media (max-width: 720px) {
  .topbar-sticky {
    display: none;
  }
}

.redline {
  height: 6px;
  background: var(--topline);
}

/* main menu bar */
.site-head {
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.site-head.scrolled {
  box-shadow: 0 6px 22px rgba(16, 33, 72, 0.07);
}
.main-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 88px;
}
.mb-left {
  flex: 1;
  display: flex;
  align-items: center;
}
.mb-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

/* hamburger */
.burger {
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.burger:hover {
  background: var(--bg-soft);
}
.burger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.burger span:nth-child(1) {
  width: 30px;
}
.burger span:nth-child(2) {
  width: 30px;
}
.burger span:nth-child(3) {
  width: 30px;
}
.burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* centered brand + tagline */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: none;
}
.brand img {
  height: 40px;
  width: auto;
  display: block;
}
.brand-tag {
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.06;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-tag sup {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: super;
}

/* CTA pill + social (right) */
.head-cta {
  background: var(--royal);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.18s,
    transform 0.18s;
}
.head-cta:hover {
  background: #141c54;
  transform: translateY(-1px);
}
.head-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.head-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--royal);
  color: var(--royal);
  display: grid;
  place-items: center;
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.18s;
}
.head-social a:hover {
  background: var(--royal);
  color: #fff;
  transform: translateY(-2px);
}
.head-social svg {
  width: 18px;
  height: 18px;
}

/* anchor sub-nav */
.anchor-nav {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.anchor-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 52px;
}
.anchor-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.anchor-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s ease;
  border-radius: 2px;
}
.anchor-nav a:hover {
  color: var(--navy);
}
.anchor-nav a:hover::after {
  right: 0;
}

/* slide-in drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 24, 58, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s;
  z-index: 70;
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 380px;
  max-width: 88vw;
  background: #fff;
  z-index: 80;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 28px;
  box-shadow: 0 0 60px rgba(14, 24, 58, 0.25);
}
.nav-drawer.open {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-head img {
  height: 30px;
  width: auto;
}
.drawer-close {
  border: none;
  background: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s;
}
.drawer-close:hover {
  background: var(--bg-soft);
  color: var(--navy);
}
.drawer-links {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  overflow-y: auto;
}
.drawer-links a {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  transition:
    color 0.15s,
    padding-left 0.15s;
}
.drawer-links a:hover {
  color: var(--navy);
  padding-left: 6px;
}
.drawer-links a.is-current {
  color: var(--red);
}
.drawer-cta {
  margin-top: auto;
  background: var(--royal);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  border-radius: 999px;
  transition: background 0.18s;
}
.drawer-cta:hover {
  background: #141c54;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 96px;
  background: var(--campaign);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      1100px 560px at 88% -12%,
      rgba(255, 255, 255, 0.07),
      transparent 60%
    ),
    radial-gradient(
      820px 540px at -6% 116%,
      rgba(0, 216, 0, 0.1),
      transparent 60%
    );
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-eyebrow .dot-navy {
  background: #5e79b3;
}
.hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero h1 .accent {
  color: var(--yellow);
  -webkit-background-clip: initial;
  background-clip: initial;
  background: none;
}
.hero-slogan {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.hero-slogan b {
  color: #fff;
  font-weight: 800;
}
.hero-slogan .hs-sub {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}
.hero .lede {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  max-width: 560px;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
}
.hero-trust b {
  color: #fff;
  font-weight: 700;
}

/* brand strip */
.brandstrip {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 22px;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
}
.brandstrip span {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 8px 4px;
  color: #fff;
}
.bs-deep {
  background: var(--navy);
}
.bs-impact {
  background: var(--red);
}
.bs-creates {
  background: var(--yellow);
  color: #5a5000;
}
.bs-value {
  background: var(--green-bright);
  color: #0a4d12;
}
.bs-building {
  background: var(--black);
}

/* hero visual */
.hero-visual {
  position: relative;
}
.browser {
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  background: #f3f5fa;
  border-bottom: 1px solid var(--line);
}
.browser-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  background: #d3d9e6;
}
.browser-bar i:nth-child(1) {
  background: #ff5f57;
}
.browser-bar i:nth-child(2) {
  background: #febc2e;
}
.browser-bar i:nth-child(3) {
  background: #28c840;
}
.browser-bar .url {
  margin-left: 12px;
  flex: 1;
  height: 24px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 0.72rem;
  color: #8d97ad;
  font-weight: 600;
}
.browser img {
  width: 100%;
  display: block;
}

.float-card {
  position: absolute;
  left: -30px;
  bottom: -34px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 18px 20px;
  width: 230px;
}
.float-card .fc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.float-card .fc-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.float-card .fc-up {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
}
.float-card .fc-score {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}
.float-card .fc-bars {
  display: flex;
  gap: 5px;
  margin-top: 14px;
}
.float-card .fc-bars i {
  height: 30px;
  border-radius: 4px;
  flex: 1;
  display: block;
  opacity: 0.9;
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  padding: 104px 0;
}
.section.soft {
  background: var(--bg-soft);
}
.sec-head {
  max-width: 720px;
}
.sec-head.center {
  margin: 0 auto;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-top: 16px;
  letter-spacing: -0.03em;
}
.sec-head .sub {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
}

/* ============================================================
   INTRO  (What is CovQ)
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 14px;
}
.intro-statement {
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  font-weight: 700;
  line-height: 1.32;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.intro-statement b {
  color: var(--green);
  font-weight: 800;
}
.intro-copy {
  margin-top: 22px;
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 500;
}
.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.intro-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.intro-pills .pill i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}
.intro-visual {
  position: relative;
}
.intro-visual .browser {
  transform: rotate(0);
}
.intro-tag {
  position: absolute;
  right: -18px;
  top: -18px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  max-width: 210px;
}
.intro-tag .t1 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.intro-tag .t2 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.3;
}

/* who it's for row */
.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 42px;
}
.audience .who {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit .chk {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(0, 200, 30, 0.12);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.benefit .chk svg {
  width: 17px;
  height: 17px;
}
.benefit h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.32;
}

/* ============================================================
   GET STARTED  (9-step process)
   ============================================================ */
.process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.process-visual {
  position: relative;
}
.process-mockup {
  width: 100%;
  height: auto;
  display: block;
}
.steps {
  position: relative;
}
.steps-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px 22px;
  position: relative;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step .num.loop::after {
  content: "↻";
  font-size: 0.85rem;
  position: absolute;
}
.step h4 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.32;
}
.step .stp {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.step.is-loop {
  background: linear-gradient(180deg, #fff, #f3fbf4);
  border-color: rgba(0, 200, 30, 0.3);
}

.process-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
.process-cta .note {
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   ENGAGEMENTS  (testimonials carousel)
   ============================================================ */
.engagements .sec-head.center {
  margin-bottom: 46px;
}
.eng-carousel {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.eng-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.eng-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.eng-slide {
  flex: 0 0 100%;
  min-width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 44px 48px 38px;
  display: flex;
  flex-direction: column;
}
.eng-quote-mark {
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 0.2;
  color: var(--red);
  font-weight: 700;
  height: 34px;
  margin-bottom: 27px;
}
.eng-quote {
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 6px 0 0;
}
.eng-quote .hl {
  color: #0a9c1e;
  font-style: normal;
}
.eng-foot {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.eng-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: var(--bg-soft);
  border: 2px solid var(--line);
}
.eng-avatar-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--red));
  border-color: rgba(24, 48, 96, 0.2);
}
.eng-id {
  flex: 1;
  min-width: 180px;
}
.eng-name {
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.eng-role {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2px;
}
.eng-logo {
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.92;
}
.eng-arrow {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s,
    color 0.18s;
}
.eng-arrow:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.eng-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.eng-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s,
    width 0.2s;
}
.eng-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 99px;
}
@media (max-width: 720px) {
  .eng-slide {
    padding: 30px 26px 26px;
  }
  .eng-arrow {
    width: 40px;
    height: 40px;
  }
  .eng-carousel {
    gap: 10px;
  }
}

/* ============================================================
   FINAL CTA + FOOTER
   ============================================================ */
.cta-band {
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  letter-spacing: -0.03em;
}
.cta-band p {
  margin-top: 16px;
  font-size: 1.12rem;
  color: var(--muted);
  font-weight: 500;
}
.cta-band .row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.footer {
  background: linear-gradient(180deg, var(--royal-top), var(--royal-bottom));
  color: rgba(255, 255, 255, 0.72);
  padding: 54px 0 38px;
}
.footer-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-top {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-logo-link {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-logo {
  height: 58px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 42px;
  max-width: 900px;
  padding: 0 70px;
}
.footer-nav a {
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--yellow);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 30px;
  font-size: 0.98rem;
}
.footer-legal span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-credit {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}
.footer-credit .fuerza {
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.footer-credit .fuerza:hover {
  opacity: 1;
}
.footer-credit .fuerza img {
  height: 20px;
  width: auto;
  display: block;
}

/* ============================================================
   FINAL-VERSION SECTIONS
   ============================================================ */

/* hero additions */
.hero-audience {
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-slogan {
  margin-top: 14px;
}
.hero-slogan b {
  display: block;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.hero-slogan .hs-sub {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.4;
}

/* video embed */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* clickable video thumbnail */
.video-thumb {
  padding: 0;
  cursor: pointer;
  display: block;
  background: var(--campaign);
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(3px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 2;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.video-thumb .play-btn svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}
.video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--red);
  border-color: var(--red);
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 55, 0.12);
  z-index: 1;
  transition: background 0.2s ease;
}
.video-thumb:hover::after {
  background: rgba(10, 20, 55, 0);
}

/* featured research */
.research-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.research-lede {
  margin-top: 22px;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.66;
  font-weight: 500;
  max-width: 560px;
}
.research-actions {
  margin-top: 30px;
}
.research-visual {
  display: flex;
  justify-content: center;
}
.research-visual img {
  width: 100%;
  max-width: 430px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(14, 31, 68, 0.18));
}

/* executive brief */
.brief-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
  margin-top: 30px;
}
.brief-para {
  margin-top: 18px;
  font-size: 1.04rem;
  color: var(--muted);
  line-height: 1.66;
  font-weight: 500;
}
.brief-kicker {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 600;
}
.brief-kicker b {
  color: var(--red);
  font-weight: 800;
}
.brief-visual {
  position: relative;
  margin-top: 6px;
}

/* corporate IQ capability pills (equal weight) */
.cap-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cap-card {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cap-card .dot {
  flex: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.cap-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}
.iq-quote {
  margin: 14px 0 0;
  border-left: 4px solid var(--red);
  padding: 4px 0 4px 26px;
  max-width: 920px;
}
.iq-quote p {
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  font-weight: 700;
  line-height: 1.42;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}
.iq-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}
.iq-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}
.iq-subhead {
  margin-top: 26px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.iq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.iq-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.iq-bullet {
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  margin-top: 7px;
  display: block;
}
.iq-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.iq-item p {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
  font-size: 0.98rem;
}
.iq-visual {
  display: flex;
  justify-content: center;
}
.iq-visual img {
  border-radius: 18px;
  width: 100%;
  max-width: 460px;
  height: auto;
  box-shadow: var(--shadow-lg);
}

/* built for — green-check cards (single list, equal weight) */
.built-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  align-items: center;
  margin-top: 48px;
}
.bf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.bf-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.bf-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bf-chk {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 200, 30, 0.12);
  display: grid;
  place-items: center;
}
.bf-chk svg {
  width: 18px;
  height: 18px;
}
.bf-t {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.built-visual {
  display: flex;
  justify-content: center;
}
.built-visual img {
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  height: auto;
  box-shadow: var(--shadow-md);
}

/* getting started */
.started-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.started-actions {
  margin-top: 30px;
}
.started-visual {
  display: flex;
  justify-content: center;
}
.started-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* dark section variant */
.section.dark {
  background: var(--campaign);
}

/* HBR quote separator band */
.quote-band {
  background: var(--campaign);
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      900px 460px at 88% -20%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    radial-gradient(
      720px 460px at -6% 120%,
      rgba(0, 216, 0, 0.09),
      transparent 60%
    );
}
.quote-band .wrap {
  position: relative;
  z-index: 1;
}
.quote-band .qb {
  max-width: 940px;
  margin: 0 auto;
  border: 0;
  padding: 0;
  text-align: center;
}
.quote-band .qb-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.1;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 27px;
  height: 34px;
}
.quote-band .qb p {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.quote-band .qb cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
}

/* exec brief highlight box (sits under the screenshot, matching its width) */
.brief-shot {
  position: relative;
}
.brief-highlight {
  margin-top: 46px;
  background: var(--campaign);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.brief-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    680px 320px at 92% -30%,
    rgba(0, 216, 0, 0.12),
    transparent 60%
  );
}
.brief-highlight p {
  position: relative;
  z-index: 1;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.brief-highlight b {
  color: var(--yellow);
  font-weight: 800;
}

/* corporate IQ lead title */
.iq-title {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.32;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}
.iq-title b {
  color: var(--green);
  font-weight: 800;
}

/* single testimonial */
.single-testimonial {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 46px 52px 38px;
  display: flex;
  flex-direction: column;
}

/* testimonial on dark background — no white box, white text */
.section.dark .single-testimonial {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 920px;
  text-align: center;
  align-items: center;
}
.section.dark .eng-quote-mark {
  color: var(--red);
}
.section.dark .eng-quote {
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.44;
}
.section.dark .eng-quote .hl {
  color: var(--green-bright);
}
.section.dark .eng-foot {
  border-top-color: rgba(255, 255, 255, 0.18);
  justify-content: center;
}
.section.dark .eng-id {
  flex: none;
  min-width: 0;
  text-align: left;
}
.section.dark .eng-name {
  color: #fff;
}
.section.dark .eng-role {
  color: rgba(255, 255, 255, 0.72);
}
.section.dark .eng-avatar {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   MOTION
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .process-top,
  .research-grid,
  .brief-grid,
  .iq-grid,
  .built-grid,
  .started-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .head-cta {
    display: none;
  }
  .float-card {
    left: auto;
    right: 8px;
    bottom: -26px;
    width: 200px;
  }
  .research-visual img,
  .iq-visual img,
  .built-visual img,
  .started-visual img {
    max-width: 420px;
  }
  .single-testimonial {
    padding: 36px 30px 30px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .footer-logo-link {
    position: static;
    transform: none;
  }
  .footer-nav {
    padding: 0;
  }
  .footer-credit {
    position: static;
    margin-top: 4px;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }
  .section {
    padding: 72px 0;
  }
  .benefits-grid,
  .steps-rail,
  .bf-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 48px 0 70px;
  }
  .main-inner {
    height: 70px;
    gap: 12px;
  }
  .brand img {
    height: 32px;
  }
  .brand-tag {
    font-size: 0.9rem;
  }
  .head-social {
    gap: 8px;
  }
  .head-social a {
    width: 36px;
    height: 36px;
  }
  .anchor-inner {
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .anchor-inner::-webkit-scrollbar {
    display: none;
  }
  .footer-nav {
    padding: 0;
    gap: 12px 24px;
  }
  .footer-nav a {
    font-size: 0.96rem;
  }
}
