:root {
  --navy: #224153;
  --navy-dark: #000b13;
  --green-deep: #0a3c3e;
  --green-2: #004d45;
  --gold: #c89d57;
  --gold-light: #e3c894;
  --gold-deep: #9c7638;
  --cream: #f4e4c6;
  --cream-tint: #faf6ec;
  --white: #ffffff;
  --gray-bg: #f8f9fb;
  --gray-text: #5c6b74;
  --border: #e6e2d6;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 1px rgba(0, 11, 19, 0.04);
  --shadow: 0 18px 36px rgba(0, 11, 19, 0.12);
  --shadow-lg: 0 30px 70px rgba(0, 11, 19, 0.22);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max-width: 1200px;
  --font-heading: "Manrope", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  position: relative;
  font-family: var(--font-body);
  color: var(--navy-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Subtle film-grain texture for a tactile, premium finish */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
}
h3 { letter-spacing: -0.015em; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.section { padding: 140px 0; position: relative; }
.section-header { max-width: 720px; margin: 0 0 64px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .eyebrow::before { display: none; }
.section-header h2 { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 18px; }
.section-header p { color: var(--gray-text); font-size: 18px; }

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: #b9c4ca; }

.section--gray { background: var(--gray-bg); }
.section--cream { background: var(--cream-tint); }

/* Decorative glow blobs for depth on dark sections */
.section--dark::before,
.section--dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.section--dark::before {
  width: 420px;
  height: 420px;
  background: rgba(200, 157, 87, 0.16);
  top: -160px;
  right: -120px;
}
.section--dark::after {
  width: 380px;
  height: 380px;
  background: rgba(34, 65, 83, 0.5);
  bottom: -180px;
  left: -140px;
}
.section--dark .container { position: relative; z-index: 1; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--navy-dark);
  box-shadow: 0 14px 30px rgba(200, 157, 87, 0.4);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 36px rgba(200, 157, 87, 0.5); }
.btn-primary:active { transform: translateY(-1px) scale(0.99); }
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Header — floating pill nav */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--max-width);
  z-index: 100;
  background: rgba(0, 11, 19, 0.68);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0, 11, 19, 0.3);
  transition: top 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  top: 12px;
  background: rgba(0, 11, 19, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.site-header .container {
  max-width: none;
  padding: 0 10px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-header .logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  position: relative;
  color: #dfe6e9;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 12px 22px; font-size: 14px; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.site-header.open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  background-image: linear-gradient(100deg, rgba(0, 11, 19, 0.68) 0%, rgba(0, 11, 19, 0.2) 55%), url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: 100% 75%;
  color: var(--white);
  padding: 190px 0 130px;
  min-height: 680px;
  box-sizing: border-box;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 0% 100%, rgba(200, 157, 87, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 260px;
  height: auto;
  opacity: 0.08;
  transform: translateY(-50%) rotate(-6deg);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-content { max-width: 760px; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 70px);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 20px;
  color: #dbe4e8;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #c9d3d8;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-badges span:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-badges .dot { display: none; }

/* Marquee trust strip */
.marquee {
  position: relative;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-dark), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--navy-dark), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #cdd8dd;
  white-space: nowrap;
}
.marquee-track span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Bento grid (solutions) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.bento-grid .solution-card.is-wide { display: flex; align-items: center; gap: 28px; }
.bento-grid .solution-card.is-wide .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.bento-grid--3 .solution-card:nth-child(1) { grid-column: span 6; }
.bento-grid--3 .solution-card:nth-child(2) { grid-column: span 3; }
.bento-grid--3 .solution-card:nth-child(3) { grid-column: span 3; }
.bento-grid--4 .solution-card:nth-child(1) { grid-column: span 4; }
.bento-grid--4 .solution-card:nth-child(2) { grid-column: span 2; }
.bento-grid--4 .solution-card:nth-child(3) { grid-column: span 2; }
.bento-grid--4 .solution-card:nth-child(4) { grid-column: span 4; }

/* Testimonial spotlight */
.testimonial-spotlight {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 28px;
  padding: 56px;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.testimonial-spotlight::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 220px;
  font-weight: 800;
  color: rgba(200, 157, 87, 0.14);
  line-height: 1;
  pointer-events: none;
}
.testimonial-spotlight .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 22px; position: relative; }
.testimonial-spotlight p { position: relative; font-family: var(--font-heading); font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; color: var(--white); margin-bottom: 28px; max-width: 820px; }
.testimonial-spotlight .testimonial-author { position: relative; }
.testimonial-spotlight .testimonial-author strong { color: var(--white); font-size: 16px; }
.testimonial-spotlight .testimonial-author > div span { color: #b9c4ca; }

/* Icon badges (solutions / differentials) */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 22px rgba(0, 11, 19, 0.25);
  transition: transform 0.3s var(--ease);
}
.icon-badge svg { width: 24px; height: 24px; }
.solution-card:hover .icon-badge,
.diff-card:hover .icon-badge { transform: rotate(-6deg) scale(1.06); }

/* Problem list — editorial numbered rows, not boxed cards */
.problem-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: 56px;
}
.problem-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 32px;
  padding: 40px 4px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.35s var(--ease);
}
.problem-card:hover { padding-left: 14px; }
.problem-card .num {
  grid-row: 1 / 3;
  grid-column: 1;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 11, 19, 0.16);
  transition: -webkit-text-stroke-color 0.35s var(--ease), color 0.35s var(--ease);
}
.problem-card:hover .num { -webkit-text-stroke-color: transparent; color: var(--gold-deep); }
.problem-card h3 { grid-column: 2; font-size: 21px; margin-bottom: 10px; }
.problem-card p { grid-column: 2; color: var(--gray-text); font-size: 16px; max-width: 560px; }

.callout {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.callout strong { font-size: 20px; font-family: var(--font-heading); }
.callout .gold { color: var(--gold); }

/* Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.solution-card h3 { font-size: 20px; margin-bottom: 12px; }
.solution-card p { color: var(--gray-text); font-size: 15.5px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.service-feature {
  background: linear-gradient(160deg, var(--navy-dark), #061826);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.service-feature h3 { font-size: 22px; margin-bottom: 20px; }
.service-feature ul { display: grid; gap: 15px; margin-bottom: 28px; }
.service-feature li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #dfe6e9; }
.service-feature li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(200, 157, 87, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89d57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.service-side { display: grid; gap: 24px; }
.service-mini {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-mini:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-mini h4 { font-size: 17px; margin-bottom: 8px; }
.service-mini p { color: var(--gray-text); font-size: 14.5px; margin-bottom: 12px; }
.service-mini a { color: var(--navy); font-weight: 700; font-size: 14px; }
.service-mini a:hover { color: var(--gold-deep); }

/* Segments — flat index list, not a card grid */
.segments-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  counter-reset: segnum;
}
.segment-card {
  counter-increment: segnum;
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 26px 6px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease), background-color 0.3s var(--ease);
}
.segment-card:hover { padding-left: 18px; background: rgba(200, 157, 87, 0.06); }
.segment-card::before {
  content: counter(segnum, decimal-leading-zero);
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}
.segment-card h4 {
  flex: 0 0 auto;
  width: 240px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
}
.segment-card p { flex: 1; font-size: 15px; color: var(--gray-text); margin: 0; }

/* Process / timeline */
.process-list { position: relative; display: grid; gap: 22px; }
.process-list::before {
  content: "";
  position: absolute;
  left: 68px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-step:hover { box-shadow: var(--shadow); border-color: transparent; }
.process-step .step-index {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 11, 19, 0.22);
}
.process-step h3 { font-size: 20px; margin-bottom: 6px; }
.process-step .step-tag { color: var(--gold-deep); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.process-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 18px; }
.process-cols h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 10px; }
.process-cols ul { display: grid; gap: 8px; }
.process-cols li { font-size: 14.5px; color: var(--gray-text); padding-left: 18px; position: relative; }
.process-cols li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.step-result {
  margin-top: 18px;
  background: var(--gray-bg);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
}

/* Stats — big typographic band, not boxed metrics */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 8px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.stat-item:first-child { border-left: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.stat-item span { font-size: 13.5px; letter-spacing: 0.02em; color: #90a0aa; text-transform: uppercase; }

/* Ebook */
.ebook-panel {
  position: relative;
  background: linear-gradient(120deg, var(--green-deep), var(--green-2));
  color: var(--white);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ebook-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(200, 157, 87, 0.18);
  filter: blur(80px);
  top: -120px;
  right: -60px;
  pointer-events: none;
}
.ebook-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.ebook-panel h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.ebook-panel p { color: #dcece8; margin-bottom: 26px; }
.ebook-cover { display: flex; justify-content: center; position: relative; }
.ebook-cover img { max-width: 260px; filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35)); transition: transform 0.4s var(--ease); }
.ebook-cover:hover img { transform: translateY(-6px) rotate(-1deg); }
.countdown { position: relative; display: flex; gap: 12px; justify-content: flex-start; margin-top: 26px; }
.countdown .unit {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  min-width: 72px;
}
.countdown .unit strong { display: block; font-family: var(--font-heading); font-size: 26px; }
.countdown .unit span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: #cfe6e1; }

/* Testimonials — quiet grid, hairline not shadow */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 28px;
}
.testimonial-card {
  position: relative;
  background: var(--white);
  padding: 34px;
  transition: background-color 0.3s var(--ease);
}
.testimonial-card:hover { background: var(--cream-tint); }
.testimonial-card .stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--navy-dark); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author .avatar span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
}
.testimonial-author strong { display: block; font-size: 14.5px; }
.testimonial-author > div span { font-size: 13px; color: var(--gray-text); }

/* Differentials */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diff-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.diff-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.07); }
.diff-card p { color: #dfe6e9; font-size: 15px; }

/* Final CTA */
.final-cta {
  position: relative;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--navy-dark);
  text-align: center;
  padding: 90px 0;
  overflow: hidden;
}
.final-cta h2 { font-size: clamp(32px, 4.8vw, 58px); letter-spacing: -0.04em; margin-bottom: 14px; }
.final-cta .sub { font-weight: 700; font-size: 19px; margin-bottom: 20px; }
.final-cta p.body { max-width: 640px; margin: 0 auto 36px; font-size: 16.5px; color: #3c2c10; position: relative; }
.final-cta .btn-primary { background: var(--navy-dark); background-image: none; color: var(--white); box-shadow: 0 14px 30px rgba(0, 11, 19, 0.35); }
.final-cta .btn-primary:hover { background: #0d2436; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #9fb0b8; padding: 76px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-about img { height: 30px; margin-bottom: 18px; }
.footer-about p { font-size: 14.5px; line-height: 1.7; }
.footer-col h5 { color: var(--white); font-family: var(--font-heading); font-size: 14.5px; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--gold); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease);
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0); }
}


@media (max-width: 960px) {
  .section { padding: 96px 0; }
  .hero { background-position: 75% 75%; }
  .solutions-grid, .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stat-item:nth-child(2n+1) { border-left: none; }
  .ebook-panel { grid-template-columns: 1fr; padding: 40px 30px; }
  .ebook-panel .ebook-cover { order: -1; }
  .countdown { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-cols { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid .solution-card:nth-child(1),
  .bento-grid .solution-card:nth-child(2),
  .bento-grid .solution-card:nth-child(3),
  .bento-grid .solution-card:nth-child(4) { grid-column: span 1; }
  .testimonial-spotlight { padding: 40px; }
  .segment-card h4 { width: 180px; }
}

@media (max-width: 720px) {
  .nav-links, .header-cta .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .site-header { top: 12px; width: calc(100% - 24px); }
  .site-header .container { padding: 0 8px 0 20px; height: 62px; }
  .hero {
    min-height: 0;
    background-image: linear-gradient(180deg, rgba(0, 11, 19, 0.75), rgba(0, 11, 19, 0.75)), url("assets/hero-bg.jpg");
    background-position: 70% center;
  }
  .hero-watermark { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid .solution-card.is-wide { flex-direction: column; align-items: flex-start; }
  .testimonial-spotlight { padding: 32px 24px; border-radius: 20px; }
  .testimonial-spotlight::before { font-size: 140px; top: -20px; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(0, 11, 19, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }
  .solutions-grid, .diff-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2n+1) { border-left: none; }
  .stat-item { padding: 8px 12px; }
  .process-step { grid-template-columns: 1fr; }
  .process-list::before { display: none; }
  .callout { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .problem-card { grid-template-columns: 56px 1fr; column-gap: 18px; padding: 28px 0; }
  .problem-card .num { font-size: 34px; }
  .segment-card { flex-direction: column; align-items: flex-start; gap: 6px; padding: 20px 4px; }
  .segment-card h4 { width: auto; }
}

/* Blog listing */
.blog-hero {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 160px 0 70px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.blog-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(200, 157, 87, 0.16);
  filter: blur(100px);
  top: -180px;
  right: -100px;
}
.blog-hero .container { position: relative; max-width: 720px; }
.blog-hero .eyebrow { justify-content: center; }
.blog-hero .eyebrow::before { display: none; }
.blog-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.blog-hero p { color: #c9d3d8; font-size: 17px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card-media {
  height: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  position: relative;
  overflow: hidden;
}
.post-card-media::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(200, 157, 87, 0.18);
  filter: blur(40px);
  bottom: -60px;
  right: -40px;
}
.post-card-media svg { width: 42px; height: 42px; color: var(--gold); position: relative; }
.post-card-body { display: flex; flex-direction: column; gap: 12px; padding: 26px; flex: 1; }
.post-tag {
  align-self: flex-start;
  background: rgba(200, 157, 87, 0.12);
  color: var(--gold-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.post-card h3 { font-size: 18.5px; line-height: 1.35; }
.post-card p.excerpt { color: var(--gray-text); font-size: 14.5px; flex: 1; }
.post-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--gray-text); }
.post-card .read-more { color: var(--navy); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s ease, color 0.2s ease; }
.post-card .read-more:hover { color: var(--gold-deep); gap: 10px; }

.post-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-featured .post-card-media { height: auto; min-height: 240px; }
.post-featured .post-card-media svg { width: 64px; height: 64px; }
.post-featured .post-card-body { padding: 40px; justify-content: center; }
.post-featured h3 { font-size: 26px; }
.post-featured p.excerpt { font-size: 15.5px; }

/* Article page */
.article-header {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 160px 0 60px;
}
.article-header .container { max-width: 760px; }
.article-header .eyebrow::before { display: none; }
.article-header h1 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin: 16px 0 20px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; color: #b9c4ca; font-size: 14px; }

.article-body { max-width: 760px; margin: 0 auto; padding: 60px 24px 20px; }
.article-body h2 { font-size: 25px; margin: 42px 0 16px; }
.article-body h3 { font-size: 19px; margin: 30px 0 12px; color: var(--navy); }
.article-body p { margin-bottom: 18px; color: #33424b; font-size: 16.5px; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; display: grid; gap: 9px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 16px; color: #33424b; }
.article-body strong { color: var(--navy-dark); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: var(--gray-bg);
  border-radius: 0 12px 12px 0;
  padding: 16px 24px;
  font-style: italic;
  color: var(--navy);
  margin: 28px 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 22px;
}
.back-link:hover { color: var(--gold-light); }
.article-body .back-link { color: var(--navy); margin-top: 12px; }
.article-body .back-link:hover { color: var(--gold-deep); }

.article-cta {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 44px 0;
  box-shadow: var(--shadow);
}
.article-cta h3 { color: var(--white); font-size: 21px; margin-bottom: 10px; }
.article-cta p { color: #c9d3d8; margin-bottom: 22px; }

.related-posts { background: var(--gray-bg); padding: 70px 0; }

@media (max-width: 960px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-featured { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .post-grid { grid-template-columns: 1fr; }
  .blog-hero, .article-header { padding-top: 130px; }
  .article-body { padding-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .whatsapp-float { animation: none; }
}
