/* =========================================
   Woody's Pools — Landing Page
   Brand: Brick Brown #2e6bd8 / Deep Brown #1f55c0
   Font: Thicccboi
   ========================================= */

@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada51_THICCCBOI-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada53_THICCCBOI-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada4f_THICCCBOI-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Thicccboi';
  src: url('https://cdn.prod.website-files.com/672a3a2b482c04e0ee0ad65e/672a3a2b482c04e0ee0ada50_THICCCBOI-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

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

:root {
  --blue:    #2e6bd8;   /* BRIGHT primary brick brown — hero, h1s, CTAs */
  --blue-dk: #1f55c0;   /* dark brown — hover, deep accents */
  --green:   #2e6bd8;   /* CTAs use Vintage sunset orange */
  --green-dk:#1f55c0;
  --green-lt:#ffffff;   /* accents on dark hero — pure white */
  --accent:  #10b981;   /* emerald — micro accents, checkmarks, ties to Nevergreen */
  --accent-dk:#059669;
  /* legacy alias — HTML still references .btn-orange / .orange classes */
  --orange:  var(--green);
  --dark:    #1f55c0;
  --gray:    #f3f4f6;   /* light grey section bg */
  --text:    #111111;   /* dark grey body text */
  --muted:   #444444;   /* mid grey muted text */
  --white:   #ffffff;
  --radius:  10px;
  --sp-lg:   40px;
  --sp-sm:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Thicccboi', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── CONTAINER ─────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 600px) {
  .container { padding: 0 10px; }   /* tight 10px page-wide gutter on mobile */
}

/* ─── UTILITY ────────────────────────────── */
.orange { color: var(--orange); }
.white  { color: var(--white) !important; }
.hidden { display: none !important; }

/* ─── BUTTONS ───────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Thicccboi', sans-serif;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .1s, box-shadow .2s;
  border: none;
}
.btn:active { transform: translateY(1px); }

.btn-orange {
  background: var(--orange);
  color: #000;
  position: relative;
  overflow: hidden;
}
.btn-orange::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: btn-shimmer 3s ease-in-out infinite;
}
.btn-orange:hover { background: var(--green-dk); box-shadow: 0 4px 18px rgba(46,107,216,.35); }
@keyframes btn-shimmer {
  0%,70% { left: -100%; }
  100%   { left: 160%; }
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-sm   { padding: 13px 20px;  font-size: .85rem; line-height: 1; }
.btn-lg   { padding: 20px 36px; font-size: 1rem;  line-height: 1; }
.btn-full { width: 100%; text-align: center; }

/* ─── NAV ────────────────────────────────── */
.announce-bar {
  width: 100%;
  background: #2e6bd8;
  color: #ffffff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 24px;
}
.announce-bar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
.announce-bar a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .announce-bar { font-size: 0.78rem; padding: 7px 12px; }
  .announce-bar .announce-extra { display: none; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--blue);
  border-bottom: 1px solid var(--blue-dk);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.3px;
}
.logo-mj        { color: var(--orange); }
.logo-unlimited { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--orange); }
.nav-industry-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-divider {
  color: #e5e7eb;
  font-size: .8rem;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
}

/* ─── SECTION BASE ───────────────────────── */
/* Full-width sections — content centered via .container */
.section {
  width: 100%;
  padding: var(--sp-lg) 0;
}
.bg-white { background: var(--white); }
.bg-light { background: var(--gray); }
.bg-blue  { background: var(--blue); }
.bg-dark  { background: var(--dark); }

/* ─── SUBTEXT COLORS ─────────────────────── */
/* White subtext on blue backgrounds */
.connections-tagline { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue); margin: 0 0 var(--sp-sm); }
.connections-sub { color: var(--muted); }
.built-by-desc { color: rgba(255,255,255,.7); }
.built-by-proof { color: var(--orange); }

/* Muted subtext on white/light backgrounds */
.gallery-sub,
.section-intro,
.tools-close,
.weeks-close,
.flight-deck-sub,
.fd-close { color: var(--muted); }

/* ─── GLOBAL SECTION CENTERING ──────────── */
.section .label,
.section .headline,
.section .section-intro,
.connections-band .label,
.connections-bottom,
.gallery-section .label,
.gallery-section .headline,
.gallery-section .gallery-sub {
  text-align: center;
}

/* ─── SHARED LABEL & HEADLINE ────────────── */
.label {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  text-align: center;
}
.label.light { color: var(--orange); }

.headline {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #000000;
  margin-bottom: var(--sp-sm);
}
.headline.white { color: var(--white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: var(--sp-sm);
  line-height: 1.7;
}

/* ─── HERO ───────────────────────────────── */
.section-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  padding: 20px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.62) 0%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}

/* ─── HERO ROBOT ─────────────────────────── */
.hero-robot {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* fade toward the right so the centered text stays readable */
  -webkit-mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.15) 100%);
  mask-image:         linear-gradient(to right, black 40%, rgba(0,0,0,0.15) 100%);
  opacity: 0.35;
}
.hero-robot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  display: block;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  margin-bottom: 28px;
}

/* H1 — Largest: the name/brand anchor */
.hero-h1 {
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

/* H2 — Primary message: orange, impactful */
.hero-h2 {
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 10px;
}

/* H3 — Supporting line: white, lighter weight */
.hero-h3 {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}

/* Subtext — medium emphasis */
.hero-subtext {
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .2px;
  margin-bottom: 20px;
}

.hero-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-lg);
  max-width: 560px;
}
.hero-body p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.hero-industries {
  font-size: .88rem !important;
  font-weight: 600 !important;
  color: #2e6bd8 !important;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@keyframes urgency-blink {
  0%, 70%, 100% { color: #2e6bd8; }
  80%, 90%      { color: #ef4444; }
}
.hero-urgency, .mid-cta-urgency, .cta-urgency {
  color: #2e6bd8;
  animation: urgency-blink 2.5s ease-in-out infinite;
}
.hero-urgency {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 20px;
}

.hero-market {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .3px;
}

/* ─── PROBLEM ────────────────────────────── */
.section-market-tag {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 32px;
}

.problem-industry {
  margin-top: 48px;
}

.problem-industry-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.problem-stack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.problem-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  padding: 20px 18px;
  border-radius: var(--radius);
  border-top: 3px solid #e53e3e;
}
.x {
  color: #e53e3e;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.problem-item p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

.problem-close {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  max-width: 760px;
}

@media (max-width: 900px) {
  .problem-stack { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .problem-stack { grid-template-columns: repeat(2, 1fr); }
}

/* ─── GUIDE / WHY MJ ─────────────────────── */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.guide-copy {
  color: rgba(255,255,255,.8);
  font-size: .975rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-copy-em {
  font-weight: 700;
  color: rgba(255,255,255,.95) !important;
}

.arrow-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.arrow-list li {
  color: rgba(255,255,255,.8);
  font-size: .925rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.guide-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.guide-box-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.check-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  color: rgba(255,255,255,.85);
  font-size: .925rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ─── SEAMLESS INTEGRATION ───────────────── */
.seamless-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 32px;
}
.seamless-body p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.seamless-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.seamless-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--gray);
  padding: 14px 18px;
  border-radius: var(--radius);
}
.chk {
  color: var(--orange);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.seamless-close {
  font-size: .925rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── MID-PAGE CTA ───────────────────────── */
.mid-cta {
  width: 100%;
  background: var(--blue);
  padding: 40px 0;
}
.mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.mid-cta-urgency {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── HOW IT WORKS ───────────────────────── */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(46,107,216,.1);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.step-body { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── CAPABILITIES ───────────────────────── */
.caps-sublabel {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.cap-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.cap-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(46,107,216,.1);
}
.cap-icon { font-size: 1.6rem; margin-bottom: 12px; }
.cap-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 12px;
}
.cap-sub {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.cap-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cap-list li {
  font-size: .85rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.cap-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--orange);
  font-weight: 900;
}

/* ─── MJ AI ──────────────────────────────── */
.mjai-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 48px;
}
.mjai-intro p { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.7; }

.mjai-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}
.mjai-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.mjai-pillar-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  padding-top: 60px;
}
.mjai-pillar-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.mjai-pillar-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.mjai-pillar-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mjai-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.mjai-list li {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.mjai-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .8rem;
}

.mjai-engine {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
}
.mjai-engine-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.mjai-engine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.mjai-engine-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.mjai-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .mjai-pillars { grid-template-columns: 1fr; }
  .mjai-pillar-divider { padding-top: 0; font-size: 1.5rem; }
}

/* ─── SOCIAL MEDIA ───────────────────────── */
.social-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.social-platform-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray);
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.social-platform-tile span { font-size: 1rem; }

/* ─── SLACK ──────────────────────────────── */
.slack-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.slack-channel-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.slack-channel {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 0 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.slack-channel:last-child { border-bottom: none; }
.slack-hash {
  color: var(--orange);
  font-weight: 900;
  font-size: 1rem;
}
.slack-ch-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.slack-ch-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
.slack-caps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.slack-cap {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.slack-cap-icon { font-size: 1.3rem; margin-bottom: 10px; }
.slack-cap-title {
  font-size: .975rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.slack-cap .cap-list li { color: rgba(255,255,255,.7); }
.slack-cap .cap-list li::before { color: var(--orange); }

@media (max-width: 900px) {
  .slack-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── ECOMMERCE ──────────────────────────── */
.ecom-close {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  max-width: 760px;
}
.ecom-close-line {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.5;
}
.ecom-close-line:first-child { font-weight: 800; }

/* ─── DATA LAYER ─────────────────────────── */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.int-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1px solid #e5e7eb;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .2s;
}
.int-tile:hover { border-color: var(--blue); }
.int-icon { font-size: 1.3rem; flex-shrink: 0; }

.int-highlight {
  align-items: flex-start;
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.int-highlight strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}
.int-highlight p {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  font-weight: 400;
  line-height: 1.5;
}

.data-quotes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}
.data-quote {
  font-size: .975rem;
  font-weight: 600;
  color: var(--blue);
  font-style: italic;
}

/* ─── BENEFITS ───────────────────────────── */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}
.benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .975rem;
  color: var(--text);
}
.benefit-chk {
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── STAKES ─────────────────────────────── */
.stakes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.stake-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stake-row:last-child { border-bottom: none; padding-bottom: 0; }
.stake-dash {
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── CTA SECTION ────────────────────────── */
.cta-section { text-align: center; }
.cta-inner { max-width: 580px; margin: 0 auto; }

.cta-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-sm);
}
.cta-body p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.cta-input {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Thicccboi', sans-serif;
  font-size: .95rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s;
  color: var(--text);
}
.cta-input:focus { border-color: var(--blue); }

.cta-urgency {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
}
.cta-reassurance {
  font-size: .8rem;
  color: #e5e7eb;
  margin-top: 20px;
  font-style: italic;
}

.form-success { padding: 40px 20px; text-align: center; }
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 1.5rem; color: var(--blue); margin-bottom: 8px; }
.form-success p  { color: var(--muted); font-size: .95rem; }

/* ─── FOOTER ─────────────────────────────── */
.footer { width: 100%; background: var(--blue); padding: 48px 0; text-align: center; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
}
.footer-logo .logo-mj        { color: var(--orange); }
.footer-logo .logo-unlimited { color: rgba(255,255,255,.6); }
.footer-tag  { font-size: .875rem; color: rgba(255,255,255,.35); max-width: 500px; line-height: 1.6; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); }

/* ─── CONNECTIONS BAND ───────────────────── */
.connections-band {
  background: var(--white);
  padding: 48px 0;
  overflow: hidden;
}
.connections-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: var(--sp-sm);
  text-align: center;
}
.connections-top {
  margin-bottom: 32px;
}
.ticker-outer {
  overflow: hidden;
  width: 100%;
  margin-bottom: 32px;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 84s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  padding: 10px 28px;
  background: var(--gray);
  border-radius: 999px;
  margin-right: 16px;
  letter-spacing: .01em;
}
.ticker-dot {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  margin-right: 16px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ticker-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.ticker-track-reverse {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll-reverse 64s linear infinite;
}
.ticker-track-reverse:hover { animation-play-state: paused; }
.connections-bottom {
  text-align: center;
}
.connections-sub {
  font-size: 1rem;
  text-align: center;
}

/* ─── PROBLEM (unified) ──────────────────── */
.problem-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
}
.problem-block {
  background: var(--white);
  padding: 36px 32px;
  border-left: 4px solid transparent;
  transition: border-color .2s;
  text-align: center;
}
.problem-block:hover { border-left-color: #e53e3e; }
.pb-main {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .problem-blocks { grid-template-columns: 1fr; }
}

/* ─── SOLUTION FLOW ──────────────────────── */
.solution-flow {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  max-width: 600px;
  margin: var(--sp-sm) auto var(--sp-sm);
}
.flow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 18px 24px;
}
.flow-trigger {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  min-width: 140px;
}
.flow-arrow {
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}
.flow-result {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.solution-close {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 600px) {
  .flow-trigger { min-width: auto; }
}

/* ─── FLIGHT DECK ────────────────────────── */
.flight-deck-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
  font-weight: 600;
}
.flight-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}
.fd-tile {
  background: var(--gray);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  transition: border-color .2s, box-shadow .2s;
  text-align: center;
}
.fd-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(46,107,216,.1);
}
.fd-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.fd-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.fd-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}
.fd-close {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Flight deck on blue background ── */
#flight-deck .headline,
#flight-deck .flight-deck-sub,
#flight-deck .fd-close { color: #fff; }
#flight-deck .fd-tile {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
#flight-deck .fd-tile:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
#flight-deck .fd-label { color: #fff; }
#flight-deck .fd-desc  { color: rgba(255,255,255,0.7); }
@media (max-width: 800px) {
  .flight-deck-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .flight-deck-grid { grid-template-columns: 1fr; }
}

/* ─── AGENT FEATURES GRID ────────────────── */
.agent-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.af-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  transition: border-color .2s, box-shadow .2s;
  text-align: center;
}
.af-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(46,107,216,.08);
}
.af-card-accent {
  background: var(--blue);
  border-color: var(--blue);
}
.af-card-accent .af-title { color: var(--white); }
.af-card-accent .af-list li { color: rgba(255,255,255,.75); }
.af-card-accent .af-list li::before { color: var(--orange); }
.af-card-accent .af-note { color: rgba(255,255,255,.5); }
.af-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.af-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.3;
}
.af-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.af-list li {
  font-size: .825rem;
  color: var(--muted);
  line-height: 1.5;
  list-style: none;
}
.af-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .agent-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .agent-features-grid { grid-template-columns: 1fr; }
}

/* ─── LIGHTBOX ───────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.lb-active {
  display: flex;
}
.lb-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#lb-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.lb-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lb-tag {
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.lb-caption {
  font-size: .925rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1001;
}
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1001;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }

/* ─── GALLERY ────────────────────────────── */
.gallery-sub {
  font-size: .975rem;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #1f55c0;
  cursor: zoom-in;
}
.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.5);
  color: rgba(255,255,255,.7);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  opacity: 0;
  transition: opacity .2s;
}
.gallery-card:hover .gallery-zoom { opacity: 1; }
.gallery-card--wide {
  grid-column: span 2;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(.85) saturate(.9);
}
.gallery-card:hover img {
  transform: scale(1.04);
  filter: brightness(.75) saturate(1.1);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
}
.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}
.gallery-caption {
  font-size: .925rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-card--wide { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-card--wide { grid-column: span 1; }
}

/* ─── SECTION CENTERED UTILITY ───────────── */
.section-centered {
  text-align: center;
}
/* Full-width block children */
.section-centered .flight-deck-grid,
.section-centered .agent-features-grid,
.section-centered .transformation-cols,
.section-centered .problem-blocks,
.section-centered .gallery-grid {
  width: 100%;
}
/* Constrained children: auto margins to center them */
.section-centered .section-intro,
.section-centered .solution-flow,
.section-centered .weeks-grid,
.section-centered .stakes-list,
.section-centered .built-by-desc,
.section-centered .fd-close,
.section-centered .solution-close,
.section-centered .weeks-close,
.section-centered .tools-close,
.section-centered .infinite-close,
.section-centered .gallery-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ─── INFINITE CLOSE ────────────────────── */
.infinite-close {
  margin-top: var(--sp-lg);
  padding: var(--sp-sm) 40px;
  border-left: 4px solid var(--orange);
  max-width: 640px;
  text-align: left;
}
.infinite-statement {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.3;
}
.infinite-sub {
  font-size: .975rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── TOOLS ──────────────────────────────── */
.tools-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.tool-pill {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.tool-pill--light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
  box-shadow: none;
}
.tools-pills--light {
  margin: 24px 0;
}
.tools-close {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.7;
  text-align: center;
}

/* ─── BUILT BY ───────────────────────────── */
.built-by-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
  text-align: center;
}
.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--sp-sm);
}
.cred-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: .825rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.built-by-proof {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: .5px;
  text-align: center;
}

/* ─── LIVE IN WEEKS ──────────────────────── */
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
  max-width: 640px;
  margin: 0 auto var(--sp-sm);
}
.week-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.week-check {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.weeks-close {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.65;
  text-align: center;
}
@media (max-width: 500px) {
  .weeks-grid { grid-template-columns: 1fr; }
}

/* ─── TRANSFORMATION ─────────────────────── */
.transformation-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}
.trans-col {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
  text-align: center;
}
.trans-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trans-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.trans-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  font-size: .85rem;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .transformation-cols { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-hero { padding: 20px 0; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; align-self: center; }
  .mid-cta-inner { gap: 10px; }
  .headline { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: var(--sp-sm); }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.8rem; }
  .hero-h2 { font-size: 1.4rem; }
  .hero-h3 { font-size: 1.1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; text-align: center; }
  .caps-grid { grid-template-columns: 1fr; }
}

/* ─── SECTION SPLIT (image panels) ─────── */
.section-split {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.split-content { flex: 1; min-width: 0; }
.split-image   { flex: 0 0 48%; }
.split-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
.img-left .split-image { order: -1; }

@media (max-width: 900px) {
  .section-split { flex-direction: column; gap: 32px; }
  .img-left .split-image { order: 0; }
  .split-image { flex: none; width: 100%; }
}

/* ─── INDUSTRY SECTIONS ──────────────────── */
.industry-header {
  margin-bottom: 56px;
}
.industry-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.bg-light .industry-tag {
  background: var(--orange);
}
.industry-block-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.industry-block-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 16px;
}
.industry-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.industry-list li {
  font-size: .95rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.industry-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .85rem;
}
.section-split + .section-split {
  margin-top: 56px;
}

/* ─── WIDE SCREENSHOTS ───────────────────── */
.section-screenshot {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 48px 0;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}
.section-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── FEATURES GRID ──────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 48px 0 0;
}
.feature-block { }

/* ─── WHY TWO-COL ────────────────────────── */
.why-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 32px 0 0;
}
.why-copy { display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 768px) {
  .features-grid  { grid-template-columns: 1fr; gap: 36px; }
  .why-two-col    { grid-template-columns: 1fr; gap: 32px; }
  .section-screenshot { border-radius: 10px; margin: 32px 0; }
}

/* ── Chat gifs row ── */
.chat-gifs-row {
  display: flex;
  gap: 40px;
  max-width: 1340px;
  margin: 0 auto;
  width: calc(100% - 20px);
}
.chat-gifs-row img {
  width: calc(50% - 20px);
  display: block;
}
@media (max-width: 700px) {
  .hero-body { margin-bottom: 16px; }
  h1, h2, h3 { line-height: 1.2; }
  .chat-gifs-row {
    flex-direction: column;
    gap: 20px;
  }
  .chat-gifs-row img {
    width: 100%;
  }
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 56px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, #2e6bd8, #2e6bd8, #2e6bd8);
  z-index: 0;
}
.process-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2e6bd8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(46,107,216,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}
.process-step:hover .process-circle {
  transform: scale(1.12);
  background: #2e6bd8;
  border-color: #2e6bd8;
  box-shadow: 0 8px 32px rgba(46,107,216,0.35);
}
.process-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2e6bd8;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.process-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1f55c0;
  margin-bottom: 8px;
}
.process-desc {
  font-size: 0.88rem;
  color: #1f55c0;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 700px) {
  .process-steps { flex-direction: column; align-items: center; gap: 40px; }
  .process-connector { display: none; }
  .process-step { max-width: 100%; }
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── DATA INTO DECISIONS ── */
.data-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  text-align: left;
  align-items: start;
}
.data-block-title {
  font-size: 1rem;
  font-weight: 800;
  color: #2e6bd8;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.data-block-sub {
  color: rgba(0,0,0,0.6);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 auto 16px;
  max-width: 640px;
}
.data-examples {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.data-examples li {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.5;
  padding: 12px 16px;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  border-left: 3px solid #2e6bd8;
}
.data-trigger {
  color: #1f55c0;
  font-weight: 600;
}
.data-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.data-bullets li {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.7);
  padding-left: 20px;
  position: relative;
}
.data-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e6bd8;
  font-weight: 700;
}
@media (max-width: 900px) {
  .data-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--featured {
  border-color: #2e6bd8;
  box-shadow: 0 8px 40px rgba(46,107,216,0.15);
  transform: translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e6bd8;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2e6bd8;
  margin-bottom: 12px;
}
.pricing-from {
  font-size: 0.8rem;
  color: #e5e7eb;
  margin-bottom: 2px;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f55c0;
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #e5e7eb;
}
.pricing-desc {
  font-size: 0.9rem;
  color: #1f55c0;
  line-height: 1.6;
  margin: 0 0 24px;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.pricing-list li {
  font-size: 0.9rem;
  color: #1f55c0;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e6bd8;
  font-weight: 700;
}
.btn-ghost-dark {
  border: 2px solid #2e6bd8;
  color: #2e6bd8;
  background: transparent;
  border-radius: var(--radius);
}
.btn-ghost-dark:hover { background: #2e6bd8; color: #fff; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
}

/* ── SECURITY PILLAR ── */
.security-pillar {
  margin-top: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px;
}
.security-pillar-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}
.security-pillar-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.security-pillar-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}
.security-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.security-item {
  display: flex;
  gap: 14px;
  text-align: left;
}
.security-check {
  color: #2e6bd8;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-item strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.security-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 700px) {
  .security-pillar-grid { grid-template-columns: 1fr; }
  .security-pillar { padding: 28px 20px; }
}

/* ── FORM TOOLS DROPDOWN ── */
.cta-select {
  appearance: none;
  cursor: pointer;
  color: #1f55c0;
}
.cta-select option { color: #1f55c0; }

.tools-dropdown { position: relative; width: 100%; }
.tools-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  color: #1f55c0;
  font-size: inherit;
  font-family: inherit;
  border: none;
}
.tools-arrow { font-size: 0.8rem; flex-shrink: 0; }
.tools-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.tools-panel::-webkit-scrollbar { width: 6px; }
.tools-panel::-webkit-scrollbar-track { background: transparent; }
.tools-panel::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 3px; }
.tools-panel.open { display: block; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  text-align: left;
}
.tool-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #1f55c0;
  cursor: pointer;
  white-space: nowrap;
}
.tool-check input { accent-color: #2e6bd8; width: 15px; height: 15px; cursor: pointer; }
.tools-groups { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.tools-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2e6bd8;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ ACCORDION ── */
.faq-section { padding-top: 80px; padding-bottom: 80px; }
.faq-inner { max-width: 1140px; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }

.faq-panel {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 0 32px;
  border: 1px solid rgba(255,255,255,0.12);
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.faq-panel::-webkit-scrollbar { width: 6px; }
.faq-panel::-webkit-scrollbar-track { background: transparent; }
.faq-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 3px; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2e6bd8;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
details[open] .faq-q::after {
  content: '−';
}

.faq-a {
  padding: 0 4px 22px;
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul {
  margin: 8px 0 12px 0;
  padding-left: 20px;
}
.faq-a ul li { margin-bottom: 4px; }

@media (max-width: 700px) {
  .faq-q { font-size: 0.97rem; padding: 18px 4px; }
}

/* ── DATA SCREENSHOTS ── */
.data-screenshots-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}
.data-screenshot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc(33.333% - 11px);
}
@media (max-width: 700px) {
  .data-screenshots-row { flex-direction: column; }
  .data-screenshot-col { width: 100%; }
  .data-screenshot-col .data-pill { width: 100%; box-sizing: border-box; }
}

/* ── DATA PILLS ── */
.data-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  letter-spacing: 0.01em;
  text-align: center;
}

/* ─── EXIT INTENT POPUP ─────────────────── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup.hidden { display: none !important; }

.exit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(3px);
}

.exit-popup-card {
  position: relative;
  background: #1f55c0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 44px 40px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: exit-popup-in .25s ease;
}
@keyframes exit-popup-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.exit-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .15s;
}
.exit-popup-close:hover { color: rgba(255,255,255,.8); }

.exit-popup-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.exit-popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.exit-popup-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-popup-form input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: 'Thicccboi', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .15s;
}
.exit-popup-form input::placeholder { color: rgba(255,255,255,.3); }
.exit-popup-form input:focus { border-color: var(--orange); }

.exit-popup-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 4px;
}

.exit-popup-success {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  padding: 12px 0;
}

@media (max-width: 520px) {
  .exit-popup-card { padding: 36px 24px 28px; }
  .exit-popup-title { font-size: 1.25rem; }
}


/* ═══════ VINTAGE-V2 BRAND OVERRIDES (from index.html inline) ═══════ */

    /* NAV — WHITE OVERRIDE */
    .nav {
      background: var(--white);
      border-bottom: 1px solid #e5e7eb;
    }
    .nav-link { color: var(--text); }
    .nav-link:hover { color: var(--blue); }
    .pn-nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
    .pn-nav-logo img { height: 74px; width: auto; display: block; }
    .nav-cta-group { display: flex; gap: 8px; align-items: center; }
    /* Equal-height nav buttons regardless of border thickness */
    .nav-cta-group .btn {
      box-sizing: border-box;
      height: 42px;
      padding: 0 18px;
      font-size: .85rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* HERO — diagonal gradient: dark upper-left (text) → transparent lower-right (water bright) */
    .pn-hero {
      background:
        linear-gradient(115deg,
          rgba(0,0,0,.94) 0%,
          rgba(0,0,0,.78) 30%,
          rgba(0,0,0,.42) 55%,
          rgba(0,0,0,.12) 78%,
          rgba(0,0,0,0) 100%),
        url('assets/1777858712460-NP_Day_1_Web_Size-129-flipped.jpg') center bottom / cover no-repeat;
      color: var(--white);
      padding: 88px 0 100px;
      text-align: left;
      position: relative;
      overflow: hidden;
    }
    /* Subtle text shadow for extra readability on the photo */
    .pn-hero h1,
    .pn-hero-sub,
    .pn-hero-trust,
    .pn-hero .label { text-shadow: 0 2px 10px rgba(0,0,0,.35); }
    .pn-hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 40px;
      align-items: stretch;
    }
    .pn-hero-content { display: block; }
    .pn-hero-logo-card {
      background: var(--white);
      border-radius: 14px;
      padding: 14px 18px;
      max-width: 221px;
      margin: 4px 0 22px;
      box-shadow: 0 10px 28px rgba(0,0,0,.32);
    }
    .pn-hero-logo-card img { width: 100%; height: auto; display: block; }
    .pn-hero .label {
      color: var(--green-lt);
      text-align: left;
      letter-spacing: 1.6px;
      font-size: .88rem;
      line-height: 1.45;
    }
    .pn-hero h1 {
      font-size: clamp(2rem, 3.4vw, 2.7rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--white);
      margin: 14px 0 16px;
      letter-spacing: -.01em;
      max-width: 600px;
    }
    .pn-hero h1 .accent { color: var(--green-lt); }
    .pn-hero-sub {
      font-size: 1.15rem;
      line-height: 1.55;
      color: rgba(255,255,255,.96);
      max-width: 560px;
      margin: 0 0 24px;
    }
    .pn-hero-trust {
      display: flex; flex-direction: column; gap: 10px;
      font-size: 1.02rem; font-weight: 700; color: rgba(255,255,255,.96);
      margin: 0 0 28px;
    }
    .pn-hero-trust span::before { content: "✓ "; color: var(--accent); font-weight: 800; margin-right: 4px; }
    /* Bullet copy length swap: desktop shows long, mobile shows short */
    .pn-hero-trust .bullet-short { display: none; }
    .pn-hero-trust span span::before { content: none; }   /* nested span shouldn't get its own checkmark */
    @media (max-width: 600px) {
      .pn-hero-trust .bullet-long { display: none; }
      .pn-hero-trust .bullet-short { display: inline; }
    }
    .pn-hero-ctas {
      display: flex; gap: 10px; flex-wrap: wrap;
      align-items: center;
    }
    /* Hero CTA hierarchy: primary is dominant; secondary is ghost; phone is text */
    .pn-hero-ctas .btn {
      box-sizing: border-box;
      height: 60px;
      padding: 0 28px;
      font-size: 1.1rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      white-space: nowrap;
    }
    /* Primary CTA — dominant: bigger pad, blue glow, emerald lift on hover */
    .pn-hero-ctas .btn-orange,
    .pn-hero-form .btn-orange {
      height: 64px;
      padding: 0 40px;
      font-size: 1.2rem;
      box-shadow:
        0 12px 28px rgba(46,107,216,.42),
        0 4px 8px rgba(46,107,216,.18);
    }
    .pn-hero-ctas .btn-orange:hover,
    .pn-hero-form .btn-orange:hover {
      box-shadow:
        0 16px 36px rgba(16,185,129,.40),
        0 4px 10px rgba(46,107,216,.18);
      transform: translateY(-2px);
    }
    /* Schedule Service CTA — hidden on desktop (form handles it), shown only in @media block below */
    .pn-hero-ctas .pn-hero-cta-schedule { display: none; }
    /* HERO FORM — stretches to match left column; trust line pinned to bottom */
    .pn-hero-form {
      background: var(--white);
      border-radius: 16px;
      padding: 22px 24px;
      box-shadow:
        0 28px 72px rgba(0,0,0,.45),
        0 8px 20px rgba(0,0,0,.20);
      color: var(--text);
      text-align: left;
      display: flex;
      flex-direction: column;
    }
    .pn-hero-form-eyebrow {
      font-size: .72rem;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 700;
      margin-bottom: 4px;
      text-align: center;
    }
    .pn-hero-form-title {
      font-size: 1.4rem;
      color: var(--blue-dk);
      margin: 0 0 10px;
      font-weight: 800;
      line-height: 1.2;
      text-align: center;
    }
    .pn-hero-form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .pn-hero-form-grid .full { grid-column: 1 / -1; }
    .pn-hero-form input, .pn-hero-form select {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #6b7280;
      border-radius: 10px;
      font-family: inherit;
      font-size: 1rem;
      color: var(--text);
      background: var(--white);
      transition: border-color .15s, box-shadow .15s;
    }
    .pn-hero-form input:focus, .pn-hero-form select:focus {
      outline: none;
      border-color: var(--blue);
    }
    .pn-hero-form button {
      width: 100%;
      padding: 12px 18px !important;
      font-size: .95rem !important;
      margin-top: 4px;
    }
    .pn-hero-form-foot {
      margin-top: 18px;          /* matches field gap so spacing flows consistently */
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: stretch;
    }
    .pn-hero-form-trust {
      text-align: center;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--text);
      margin: 0;
      line-height: 1.3;
    }
    .pn-hero-form-trust .check {
      color: var(--accent);
      font-weight: 800;
      font-size: 1.6rem;
      margin-right: 8px;
    }
    .pn-hero-form-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 32px 24px;
      background: #ffffff;
      background-image: linear-gradient(180deg, #f0f7ff 0%, #ffffff 60%, #f0fdf4 100%);
      border: 2px solid var(--green);
      border-radius: 16px;
      box-shadow: 0 12px 32px rgba(0,40,100,.15), 0 2px 6px rgba(0,0,0,.05);
      animation: pn-success-pop .45s cubic-bezier(.25,.85,.4,1.05);
    }
    .pn-hero-form-success.is-visible { display: flex; }
    @keyframes pn-success-pop {
      0%   { opacity: 0; transform: scale(.92) translateY(8px); }
      100% { opacity: 1; transform: scale(1)   translateY(0); }
    }
    .pn-success-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--green);
      color: white;
      font-size: 2.2rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      box-shadow: 0 6px 16px rgba(34,197,94,.35);
      animation: pn-check-pop .55s cubic-bezier(.4,1.6,.5,1) .15s both;
    }
    @keyframes pn-check-pop {
      0%   { transform: scale(0)    rotate(-30deg); }
      60%  { transform: scale(1.15) rotate(8deg); }
      100% { transform: scale(1)    rotate(0); }
    }
    .pn-success-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--green-dk);
      margin-bottom: 8px;
      letter-spacing: -.01em;
    }
    .pn-success-msg {
      color: var(--text);
      font-size: .98rem;
      line-height: 1.5;
      max-width: 320px;
      margin: 0 auto 16px;
    }
    .pn-success-trust {
      font-size: .9rem;
      color: var(--muted);
      padding: 10px 16px;
      background: #ffffff;
      border-radius: 8px;
      border: 1px solid rgba(0,40,100,.10);
      box-shadow: 0 1px 2px rgba(0,0,0,.04);
    }
    .pn-success-trust strong { color: var(--blue); }
    /* Mid-mocha phone button — used in hero & nav */
    .btn-navy {
      background: #1338bd;
      color: #ffffff;
      border: 2px solid #1338bd;
      transition: background .15s, border-color .15s, transform .1s, box-shadow .15s;
    }
    .btn-navy:hover {
      background: #0c2585;
      border-color: #0c2585;
      color: #ffffff;
    }
    /* White phone icon glyph — used inside any tel: link, swaps the <span class="phone-icon">☎︎</span> emoji for color-styleable Unicode */
    .phone-icon {
      color: #ffffff;
      font-style: normal;
      margin-right: 4px;
    }
    /* Force white text on every solid-blue button */
    .btn-orange,
    .btn-orange:hover,
    .btn-orange:visited { color: var(--white); }
    /* PARTNERSHIP — Stronger Service */
    .pn-partner {
      background: var(--gray);
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
      padding: 64px 0;
    }
    .pn-partner .label, .pn-partner .headline { text-align: center; }
    .pn-partner-paras {
      max-width: 820px;
      margin: 24px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pn-partner-para {
      text-align: center;
      font-size: 1rem;
      line-height: 1.65;
      color: var(--text);
      padding: 28px 22px;
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: 14px;
    }
    .pn-partner-para strong {
      display: block;
      color: var(--blue);
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 1.05rem;
    }

    /* SERVICE CARDS */
    .pn-services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .pn-service {
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform .2s, box-shadow .2s;
    }
    .pn-service:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(46,107,216,.15); }
    .pn-service-image { aspect-ratio: 16/10; overflow: hidden; background: #e5e7eb; }
    .pn-service-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pn-service-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
    .pn-service h3 { font-size: 1.25rem; color: var(--blue); margin-bottom: 10px; font-weight: 700; }
    .pn-service ul { list-style: none; padding: 0; margin: 0; }
    .pn-service ul li {
      padding: 7px 0 7px 24px;
      position: relative;
      font-size: .95rem;
      color: var(--text);
      line-height: 1.5;
    }
    .pn-service ul li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--green);
      font-weight: 800;
    }

    /* PROOF / TRUST */
    .pn-proof {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 40px;
      align-items: center;
      margin-top: 36px;
    }
    .pn-proof-image {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 5/4;
      box-shadow: 0 16px 40px rgba(0,0,0,.12);
    }
    .pn-proof-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pn-proof-callout {
      background: linear-gradient(135deg, var(--blue), var(--blue-dk));
      color: var(--white);
      padding: 22px 24px;
      border-radius: 14px;
      margin-top: 20px;
      display: flex; align-items: center; gap: 14px;
    }
    .pn-proof-callout-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--green-lt);
      color: var(--blue-dk);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; font-weight: 800;
    }
    .pn-proof-callout-text strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
    .pn-proof-callout-text span { color: rgba(255,255,255,.8); font-size: .9rem; }
    .pn-proof-quote {
      font-size: 1.1rem;
      line-height: 1.65;
      color: var(--text);
      font-style: italic;
      font-weight: 500;
      margin: 0 0 16px;
    }
    .pn-proof-quote::before { content: "\201C"; color: var(--blue); font-size: 2.2rem; line-height: 0; vertical-align: -.4em; margin-right: 4px; font-style: normal; }
    .pn-proof-quote::after { content: "\201D"; color: var(--blue); font-size: 2.2rem; line-height: 0; vertical-align: -.4em; margin-left: 2px; font-style: normal; }
    .pn-proof-cite {
      font-size: .9rem;
      color: var(--blue);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* COVERAGE */
    .pn-coverage-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }
    .pn-coverage-pill {
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: 999px;
      padding: 10px 22px;
      font-weight: 700;
      color: var(--blue);
      font-size: .95rem;
      transition: transform .2s, border-color .2s;
    }
    .pn-coverage-pill:hover { transform: translateY(-2px); border-color: var(--blue); }
    .pn-coverage-pill .check { color: var(--green); margin-right: 6px; }
    .pn-coverage-map {
      margin: 36px auto 0;
      max-width: 640px;
      text-align: center;
    }
    .pn-coverage-map img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 14px;
      box-shadow: 0 18px 44px rgba(0,0,0,.18);
    }
    @media (max-width: 600px) {
      .pn-coverage-map { margin-top: 24px; max-width: 100%; }
    }


    /* FORM */
    .pn-form-section {
      background: var(--gray);
      padding: 80px 0;
    }
    .pn-form-wrap {
      max-width: 720px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: 20px;
      box-shadow: 0 16px 40px rgba(0,0,0,.10);
      padding: 48px;
    }
    .pn-form-section .label { text-align: center; }
    .pn-form-section .headline { text-align: center; margin-bottom: 12px; }
    .pn-form-intro {
      text-align: center;
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto 32px;
    }
    .pn-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .pn-form .full { grid-column: 1 / -1; }
    .pn-form label {
      display: block;
      font-size: .82rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .pn-form input, .pn-form select {
      width: 100%;
      padding: 18px 16px;
      border: 1.5px solid #6b7280;
      border-radius: 10px;
      font-family: inherit;
      font-size: 1rem;
      color: var(--text);
      background: var(--white);
      transition: border-color .15s, box-shadow .15s;
    }
    .pn-form input:focus, .pn-form select:focus {
      outline: none;
      border-color: var(--blue);
    }
    label.vp-consent, .pn-form label.vp-consent, .pn-hero-form label.vp-consent {
      display: flex !important; gap: 10px; align-items: flex-start;
      font-size: .88rem !important; color: #111111 !important; line-height: 1.5 !important;
      text-align: left; font-weight: 400 !important; text-transform: none !important;
      letter-spacing: 0 !important; margin: 0 0 4px;
    }
    label.vp-consent input { width: auto !important; margin: 2px 10px 0 0; accent-color: var(--blue); flex: 0 0 auto; }
    .pn-form-trust {
      text-align: center;
      color: var(--muted);
      font-size: .9rem;
      margin-top: 18px;
    }
    .pn-form-trust .check { color: var(--accent); font-weight: 800; margin-right: 4px; }
    .pn-form-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 32px;
      margin-top: 16px;
      background: #ffffff;
      background-image: linear-gradient(180deg, #f0f7ff 0%, #ffffff 55%, #f0fdf4 100%);
      border: 2px solid var(--green);
      border-radius: 18px;
      box-shadow: 0 16px 48px rgba(0,40,100,.18), 0 2px 8px rgba(0,0,0,.06);
      animation: pn-success-pop .45s cubic-bezier(.25,.85,.4,1.05);
    }
    .pn-form-success.is-visible { display: flex; }
    .pn-form-success .pn-success-icon {
      width: 80px;
      height: 80px;
      font-size: 2.8rem;
      margin-bottom: 20px;
    }
    .pn-form-success .pn-success-title {
      font-size: 1.85rem;
      font-weight: 800;
      color: var(--green-dk);
      margin-bottom: 10px;
    }
    .pn-form-success .pn-success-msg {
      font-size: 1.05rem;
      max-width: 420px;
    }
    .pn-form-success .pn-success-trust {
      font-size: .95rem;
      padding: 12px 20px;
    }

    /* FOOTER — bright blue, white text */
    .pn-footer {
      background: var(--blue);
      color: rgba(255,255,255,.9);
      padding: 48px 0 32px;
    }
    .pn-footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 32px;
      align-items: center;
      margin-bottom: 24px;
    }
    .pn-footer-logo {
      background: var(--white);
      border-radius: 12px;
      padding: 14px;
      max-width: 240px;
      justify-self: start;
    }
    .pn-footer-logo img { width: 100%; height: auto; display: block; }
    .pn-footer-info { font-size: .92rem; line-height: 1.7; text-align: center; color: var(--white); }
    .pn-footer-info a { color: var(--white); text-decoration: none; font-weight: 700; }
    .pn-footer-info a:hover { color: rgba(255,255,255,.75); }
    .pn-footer-areas { font-size: .85rem; line-height: 1.6; text-align: right; color: rgba(255,255,255,.85); }
    .pn-footer-areas strong { color: var(--white); display: block; margin-bottom: 4px; font-size: .92rem; }
    .pn-footer-bottom {
      border-top: 1px solid rgba(255,255,255,.18);
      padding-top: 18px;
      text-align: center;
      font-size: .82rem;
      color: rgba(255,255,255,.7);
    }
    .pn-footer-bottom a { color: rgba(255,255,255,.85); text-decoration: none; }
    .pn-footer-bottom a:hover { color: #fff; text-decoration: underline; }

    /* ═══════════════ RESPONSIVE — MOBILE-FIRST POLISH ═══════════════ */

    /* ≤980px — TABLET: hide center nav links (they overlap on narrow), stack grids,
       switch hero overlay to vertical gradient + center photo (so tech is visible).
       Every section uses uniform 40px top/bottom padding on mobile. */
    @media (max-width: 980px) {
      .nav-links { display: none; }
      .pn-hero {
        padding: 20px 0 40px;
        background:
          linear-gradient(180deg,
            rgba(0,0,0,.9) 0%,
            rgba(0,0,0,.55) 55%,
            rgba(0,0,0,.1) 100%),
          url('assets/1777858712460-NP_Day_1_Web_Size-129-flipped.jpg') center bottom / cover no-repeat;
      }
      .pn-hero-grid { grid-template-columns: 1fr; gap: 28px; }
      .pn-hero-form { display: none; }  /* hide on mobile — bottom form handles conversion */
      .pn-hero-ctas .pn-hero-cta-schedule { display: inline-flex; }  /* show Schedule Service CTA on mobile only */
      /* Reorder on mobile: CTAs come BEFORE the logo card */
      .pn-hero-content { display: flex; flex-direction: column; }
      .pn-hero-logo-card { order: 1; margin: 22px 0 0; }
      .pn-partner { padding: 40px 0; }
      .pn-partner-paras { grid-template-columns: 1fr; gap: 16px; }
      .section { padding: 40px 0; }
      .pn-services { grid-template-columns: 1fr; gap: 12px; }
      .pn-proof { grid-template-columns: 1fr; gap: 28px; }
      .pn-form-section { padding: 40px 0; }
      .pn-form-wrap { padding: 32px 24px; }
      .pn-form { grid-template-columns: 1fr; }
      .pn-footer { padding: 40px 0; }
      .pn-footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
      .pn-footer-logo { justify-self: center; }
      .pn-footer-areas { text-align: center; }
    }

    /* Mobile form ergonomics: 16px font (no iOS zoom) + ≥44px tap targets */
    @media (max-width: 980px) {
      .pn-hero-form input,
      .pn-hero-form select,
      .pn-form input,
      .pn-form select {
        font-size: 16px;
        padding: 14px 14px;
        min-height: 48px;
      }
      .pn-hero-form button,
      .pn-form button { min-height: 48px; }
    }

    /* ≤768px — LARGE PHONE: scale hero copy + form + spacing */
    @media (max-width: 768px) {
      .pn-hero-content { max-width: 100%; }
      .pn-hero-logo-card { max-width: 190px; margin: 22px 0 0; padding: 8px 12px; }
      .pn-hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
        max-width: 100%;
        margin: 10px 0 14px;
      }
      .pn-hero-sub {
        font-size: 1.18rem;
        max-width: 100%;
        margin-bottom: 22px;
      }
      .pn-hero-trust {
        font-size: .98rem;
        gap: 8px;
        margin-bottom: 22px;
      }
      .pn-hero-trust span { line-height: 1.4; }
      .pn-hero-form { padding: 22px 20px; border-radius: 14px; }
      .pn-hero-form-title { font-size: 1.1rem; }
      .pn-hero-form-trust { font-size: 1.05rem; padding-top: 18px; }
      .pn-hero-form-trust .check { font-size: 1.18rem; }
    }

    /* ≤600px — PHONE: stack CTAs full-width, tighter form, tighter announce bar */
    @media (max-width: 600px) {
      .pn-hero h1 { font-size: 1.65rem; line-height: 1.2; margin: 8px 0 12px; }
      .pn-hero-sub { font-size: 1.1rem; margin-bottom: 20px; }
      .pn-hero-trust { font-size: .94rem; gap: 7px; margin-bottom: 20px; }
      .pn-hero-form { padding: 20px 18px; }
      .pn-hero-form-title { font-size: 1.05rem; }
      .pn-hero-form-trust { font-size: 1rem; }

      /* CTAs stack full-width with bigger text on mobile */
      .pn-hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
      .pn-hero-ctas .btn {
        width: 100%;
        height: 64px;
        padding: 0 16px;
        font-size: 1.2rem;
        white-space: nowrap;
      }
      .pn-hero-ctas .btn-orange {
        height: 64px;
        padding: 0 18px;
        font-size: 1.3rem;
      }

      /* Nav on mobile: just logo + phone — drop Schedule Service to keep things uncluttered */
      .pn-nav-logo img { height: 48px; }
      .nav-cta-group { gap: 6px; }
      .nav-cta-group .btn { height: 38px; padding: 0 18px; font-size: .78rem; }
      .nav-cta-group .btn-orange { display: none; }
      .nav-inner { padding-top: 10px; padding-bottom: 10px; }   /* horizontal comes from container (10px on mobile) */

      /* Bottom long-form */
      .pn-form-wrap { padding: 28px 20px; border-radius: 16px; }

      /* Card / inner-element spacing (sections themselves are uniform 40px from ≤980 rule) */
      .pn-partner-para { padding: 22px 18px; }
      .pn-service-body { padding: 20px 20px 24px; }
    }

    /* ≤380px — TINY PHONE (iPhone SE): trim logo only; rest inherits from ≤600 */
    @media (max-width: 380px) {
      .pn-hero h1 { font-size: 1.5rem; }
      .pn-hero-logo-card { max-width: 130px; padding: 6px 10px; }
      .pn-nav-logo img { height: 42px; }
      .nav-cta-group .btn { padding: 0 14px; font-size: .74rem; height: 36px; }
    }
  