/* ============================================================
   The Pitch Point — style.css
   Enterprise corporate design system
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --primary: #262261;      /* deep indigo */
  --primary-dark: #1a1748;
  --secondary: #F9B233;    /* gold */
  --accent: #EE4036;       /* red */
  --ink: #1A1A1A;
  --muted: #5b6070;
  --line: #e6e8ef;
  --bg: #ffffff;
  --bg-alt: #F7F8FA;

  --container: 1200px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --fs-hero: clamp(2.75rem, 6vw, 5rem);
  --fs-h2: clamp(1.9rem, 3.4vw, 3rem);
  --fs-h3: 1.25rem;

  --space-section: clamp(64px, 9vw, 130px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.section { padding: var(--space-section) 0; }
.alt-bg { background: var(--bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px;
  font-weight: 600; font-size: 0.98rem;
  border-radius: 40px; /* pill buttons, TCS-style */
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--secondary); color: var(--primary-dark); }
.btn-secondary:hover { background: #ffc558; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--primary); border-color: #fff; }

.text-link { font-weight: 600; color: var(--primary); display: inline-block; margin-top: 8px; transition: color .2s var(--ease); }
.text-link:hover { color: var(--accent); }

/* ---------- Section headings ---------- */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.section-tag::before {
  content: ""; width: 28px; height: 2px; background: var(--secondary);
}
.section-title { font-size: var(--fs-h2); color: var(--primary); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 84px; }
.brand-logo { height: 38px; width: auto; transition: filter .35s var(--ease); }
/* The Pitch Point logo is a LIGHT logo:
   - on the transparent (dark) hero it shows as-is and stays visible
   - on the white scrolled bar it is darkened so it never disappears */
.site-header.scrolled .brand-logo { filter: brightness(0) saturate(100%); }

.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: 30px; }
.nav-list a {
  font-size: .92rem; font-weight: 500; letter-spacing: .01em; color: #fff; position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--secondary); transition: width .25s var(--ease);
}
.nav-list a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; padding: 11px 24px; }

/* scrolled state -> white bar, dark text */
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(20,18,54,.06);
}
.site-header.scrolled .nav-list a { color: var(--ink); }
.site-header.scrolled .nav-list a:hover { color: var(--primary); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; top: 84px; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line);
  padding: 24px; transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: .3s var(--ease); z-index: 99;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav a { display: block; padding: 12px 4px; font-weight: 500; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,16,48,.80) 0%, rgba(18,16,48,.52) 52%, rgba(18,16,48,.26) 100%),
    linear-gradient(180deg, rgba(18,16,48,.0) 55%, rgba(18,16,48,.35) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding-top: 84px; max-width: 820px; }
.hero-eyebrow { font-size: .85rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--secondary); margin-bottom: 20px; }
.hero-title { font-size: var(--fs-hero); font-weight: 800; margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.4rem); font-weight: 300; color: rgba(255,255,255,.9); max-width: 620px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-copy p { color: var(--muted); font-size: 1.08rem; }
.about-media img { border-radius: var(--radius); width: 100%; height: 100%; max-height: 520px; object-fit: cover; }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy { padding: clamp(80px,11vw,150px) 0; text-align: center; }
.philosophy-quote {
  margin: 0 auto; max-width: 980px;
  font-size: clamp(1.6rem, 3.6vw, 2.85rem); font-weight: 300; line-height: 1.35;
  color: var(--primary); letter-spacing: -0.01em;
}
.philosophy-quote .hl { color: var(--accent); font-weight: 700; }

/* ============================================================
   ECOSYSTEM — image cards
   ============================================================ */
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 212px; gap: 16px; }
.eco-card {
  position: relative; border-radius: 14px; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.eco-card--lg { grid-column: span 2; grid-row: span 2; }
.eco-card--wide { grid-column: span 2; }
/* image layer (so we can zoom independently of the overlay) */
.eco-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
}
.eco-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,16,48,.05) 30%, rgba(18,16,48,.88));
}
.eco-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(20,18,54,.24); }
.eco-card:hover::before { transform: scale(1.06); }
.eco-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff; }
.eco-inner h3 { font-size: 1.3rem; }
.eco-card--lg .eco-inner h3 { font-size: 1.8rem; }
.eco-inner p {
  margin: 10px 0 0; font-size: .93rem; color: rgba(255,255,255,.86); max-width: 44ch;
  max-height: 0; opacity: 0; overflow: hidden; transform: translateY(6px); transition: .45s var(--ease);
}
.eco-card:hover .eco-inner p { max-height: 140px; opacity: 1; transform: none; }
.eco-arrow {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.05rem;
  transition: .35s var(--ease);
}
.eco-card:hover .eco-arrow { background: var(--secondary); border-color: var(--secondary); color: var(--primary-dark); transform: translate(3px,-3px); }

/* ============================================================
   IMPACT
   ============================================================ */
.impact { background: var(--primary); color: #fff; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.impact-block { padding: 20px 10px; }
.impact-num { display: block; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; color: var(--secondary); letter-spacing: -0.03em; line-height: 1; }
.impact-label { display: block; margin-top: 14px; font-size: 1.05rem; color: rgba(255,255,255,.85); font-weight: 400; }

/* ============================================================
   CLIENTS — logo marquee
   ============================================================ */
.clients-title { text-align: center; color: var(--muted); font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 40px; }
.logo-slider { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-track { display: flex; align-items: center; gap: 70px; width: max-content; animation: marquee 32s linear infinite; }
.logo-slider:hover .logo-track { animation-play-state: paused; }
.logo-item {
  font-size: 1.5rem; font-weight: 700; color: #98a0b3; letter-spacing: -0.01em; white-space: nowrap;
  filter: grayscale(1); opacity: .8; transition: color .3s var(--ease), opacity .3s var(--ease);
}
.logo-item:hover { color: var(--primary); opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES — image cards
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; min-height: 340px; border-radius: var(--radius); overflow: hidden;
  background-image: linear-gradient(180deg, rgba(20,18,54,.1) 30%, rgba(20,18,54,.85)), var(--img);
  background-size: cover; background-position: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(20,18,54,.24); }
.service-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; }
.service-inner h3 { font-size: 1.4rem; margin-bottom: 8px; }
.service-inner p { color: rgba(255,255,255,.82); font-size: .96rem; margin: 0; }

/* ============================================================
   SOLUTIONS — clean product cards
   ============================================================ */
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 40px 32px 34px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* growing accent bar on the left */
.solution-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--secondary); transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.solution-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(20,18,54,.12); border-color: transparent; }
.solution-card:hover::before { transform: scaleY(1); }
/* faint oversized index */
.sol-index {
  position: absolute; top: 20px; right: 26px;
  font-size: 2.7rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: #eceef4;
  transition: color .3s var(--ease);
}
.solution-card:hover .sol-index { color: #dfe3ee; }
.solution-card h3 { font-size: 1.35rem; color: var(--primary); margin-bottom: 12px; position: relative; z-index: 1; }
.solution-card p { color: var(--muted); margin: 0 0 20px; font-size: .98rem; }
.sol-link {
  display: inline-block; font-weight: 600; font-size: .9rem; color: var(--primary);
  opacity: 0; transform: translateY(4px); transition: .3s var(--ease);
}
.solution-card:hover .sol-link { opacity: 1; transform: none; color: var(--accent); }

/* ============================================================
   INDUSTRIES — hover reveal cards
   ============================================================ */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 16px; }
.industry-card {
  position: relative; border-radius: 14px; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.industry-card--feature { grid-column: span 2; }
.industry-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
}
.industry-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,16,48,.05) 35%, rgba(18,16,48,.9));
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(20,18,54,.26); }
.industry-card:hover::before { transform: scale(1.06); }
.industry-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; }
.industry-inner h3 { font-size: 1.45rem; margin-bottom: 10px; }
.industry-card--feature .industry-inner h3 { font-size: 1.9rem; }
.industry-inner p {
  color: rgba(255,255,255,.86); font-size: .96rem; margin: 0; max-width: 46ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transform: translateY(8px); transition: .45s var(--ease);
}
.industry-card:hover .industry-inner p { max-height: 130px; opacity: 1; transform: translateY(0); }
.ind-arrow {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.05rem;
  transition: .35s var(--ease);
}
.industry-card:hover .ind-arrow { background: var(--secondary); border-color: var(--secondary); color: var(--primary-dark); transform: translate(3px,-3px); }

/* ============================================================
   PROCESS — modern dark tile grid with outline numerals
   ============================================================ */
.process { background: var(--primary-dark); color: #fff; }
.process .section-title { color: #fff; }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px; overflow: hidden;
}
.process-card {
  position: relative; background: var(--primary-dark);
  padding: 42px 34px 46px; min-height: 232px; overflow: hidden;
  transition: background .4s var(--ease);
}
.process-card:hover { background: #221d52; }
.process-num {
  display: block; font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -.03em;
  margin-bottom: 24px; color: rgba(255,255,255,.12);
  -webkit-text-stroke: 1.4px rgba(249,178,51,.55); text-stroke: 1.4px rgba(249,178,51,.55);
  transition: .4s var(--ease);
}
.process-card:hover .process-num { color: rgba(249,178,51,.16); -webkit-text-stroke-color: var(--secondary); text-stroke-color: var(--secondary); }
.process-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.process-card p { color: rgba(255,255,255,.72); font-size: .95rem; margin: 0; }
/* directional accent that grows on hover */
.process-card::after {
  content: ""; position: absolute; left: 34px; bottom: 30px; height: 2px; width: 0; background: var(--secondary);
  transition: width .4s var(--ease);
}
.process-card:hover::after { width: 46px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card .why-media { border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; aspect-ratio: 4/3; }
.why-card .why-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.why-card:hover .why-media img { transform: scale(1.05); }
.why-card h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; }
.why-card p { color: var(--muted); margin: 0; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--primary-dark); color: #fff; padding: clamp(80px,11vw,140px) 0; text-align: center; }
.cta-inner h2 { font-size: var(--fs-h2); margin-bottom: 14px; }
.cta-inner p { font-size: 1.25rem; color: rgba(255,255,255,.82); margin-bottom: 36px; font-weight: 300; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #14122f; color: rgba(255,255,255,.72); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-logo { height: 34px; margin-bottom: 20px; }
.footer-brand p { font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .95rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--secondary); }
.social { display: flex; gap: 12px; margin-top: 22px; }
.social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 600;
  transition: .25s var(--ease);
}
.social a:hover { background: #fff; color: var(--primary); border-color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .85rem; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .eco-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .service-grid, .solution-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .industry-card--feature { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .eco-card--lg, .eco-card--wide { grid-column: span 1; grid-row: span 1; }
  .eco-inner p { max-height: 140px; opacity: 1; transform: none; }
  .impact-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-grid, .solution-grid, .why-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .industry-card--feature { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industry-inner p { max-height: 130px; opacity: 1; transform: none; }
}

/* ============================================================
   PITCH POINT ONE — product page
   ============================================================ */

/* offset in-page anchors so the fixed header doesn't cover them */
[id] { scroll-margin-top: 100px; }

/* active nav item */
.nav-list a.active { color: var(--secondary); }
.nav-list a.active::after { width: 100%; background: var(--secondary); }
.site-header.scrolled .nav-list a.active { color: var(--accent); }

/* ---- Subpage hero (shorter than the homepage hero) ---- */
.subpage-hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.subpage-hero .hero-media { position: absolute; inset: 0; }
.subpage-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.subpage-hero .hero-content { position: relative; z-index: 2; color: #fff; padding-top: 84px; max-width: 820px; }

/* ---- Overview ---- */
.overview-inner { max-width: 860px; }
.overview-inner p { color: var(--muted); font-size: 1.15rem; }

/* ---- Module quick-nav ---- */
.module-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.module-pill {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 24px; font-weight: 600; font-size: 1.05rem; color: var(--primary);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.module-pill .pill-ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: rgba(38,34,97,.06); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.module-pill .pill-ico svg { width: 24px; height: 24px; }
.module-pill .pill-name { font-weight: 600; }
.module-pill:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,18,54,.10); border-color: transparent; }
.module-pill:hover .pill-ico { background: var(--secondary); color: var(--primary-dark); }

/* ---- Module rows (alternating) ---- */
.module-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px);
  align-items: center; padding: clamp(48px, 7vw, 90px) 0; border-bottom: 1px solid var(--line);
}
.module-row:last-child { border-bottom: 0; }
.module-row:nth-child(even) .module-copy { order: 2; }
.module-kicker {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.module-copy h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--primary); margin-bottom: 16px; }
.module-copy > p { color: var(--muted); font-size: 1.1rem; margin-bottom: 26px; }
.module-media img {
  width: 100%; height: 100%; max-height: 440px; object-fit: cover; border-radius: 14px;
  box-shadow: 0 24px 60px rgba(20,18,54,.14);
}

/* feature checklist */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list li { position: relative; padding-left: 38px; color: var(--ink); font-size: 1rem; }
.feature-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(38,34,97,.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700;
}

/* ---- Value band ---- */
.value-band { background: var(--bg-alt); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 38px 32px; }
.value-item h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.value-item h3::after { content: ""; display: block; width: 34px; height: 3px; background: var(--secondary); margin-top: 14px; }
.value-item p { color: var(--muted); margin: 0; }

/* ---- Homepage section CTA (link to this page) ---- */
.section-cta { text-align: center; margin-top: 48px; }

@media (max-width: 760px) {
  .module-nav { grid-template-columns: 1fr; }
  .module-row { grid-template-columns: 1fr; padding: 44px 0; }
  .module-row:nth-child(even) .module-copy { order: 0; }
  .value-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PITCH POINT ONE — page enhancements
   ============================================================ */

/* Hero stat strip */
.hero-stats {
  display: flex; gap: 44px; margin-top: 42px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 2.1rem; font-weight: 800; color: var(--secondary); line-height: 1; letter-spacing: -.02em; }
.hero-stats span { margin-top: 7px; font-size: .85rem; color: rgba(255,255,255,.8); letter-spacing: .02em; }

/* Centered section head variant */
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-tag { justify-content: center; }

/* Connected-core diagram */
.core-diagram { max-width: 860px; margin: 8px auto 0; }
.core-diagram svg { width: 100%; height: auto; display: block; overflow: visible; }
.core-diagram .spoke {
  stroke: #d7dae6; stroke-width: 2;
  stroke-dasharray: 380; stroke-dashoffset: 380;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.core-diagram.visible .spoke { stroke-dashoffset: 0; }
.core-node .n-bg { fill: #fff; stroke: #e6e8ef; stroke-width: 1.5; transition: stroke .3s var(--ease), filter .3s var(--ease); }
.core-node:hover .n-bg { stroke: var(--secondary); filter: drop-shadow(0 8px 18px rgba(20,18,54,.12)); }
.core-node .n-ico { fill: none; stroke: var(--primary); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.core-node text { fill: var(--primary); font-weight: 600; font-size: 14px; font-family: inherit; }
.core-link { stroke: #e3e6f0; stroke-width: 1.5; stroke-dasharray: 2 8; }
.orbit-dot { fill: var(--secondary); opacity: .5; }
.core-badge .b-bg { fill: #fff; stroke: #e6e8ef; stroke-width: 1.5; transition: stroke .3s var(--ease); }
.core-badge:hover .b-bg { stroke: var(--secondary); }
.core-badge .b-ico { fill: none; stroke: var(--secondary); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.core-badge text { fill: var(--muted); font-size: 11.5px; font-weight: 600; letter-spacing: .04em; font-family: inherit; }
.core-center circle.core-ring { fill: none; stroke: var(--secondary); stroke-opacity: .4; }
.core-center circle.core-disc { fill: var(--primary); }
.core-center text { fill: #fff; font-family: inherit; }

/* Module quick-nav arrow */
.module-pill::after {
  content: "\2192"; margin-left: auto; color: var(--accent);
  opacity: 0; transform: translateX(-6px); transition: .3s var(--ease); font-weight: 700;
}
.module-pill:hover::after { opacity: 1; transform: none; }

/* Module rows: accent underline + floating number badge */
.module-copy h3 { position: relative; padding-bottom: 18px; }
.module-copy h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 46px; height: 3px; background: var(--secondary); }
.module-badge {
  position: absolute; top: -18px; left: -18px; z-index: 2;
  width: 62px; height: 62px; border-radius: 50%; background: var(--secondary); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 12px 28px rgba(20,18,54,.22);
}
.module-media img { transition: transform .5s var(--ease); }
.module-row:hover .module-media img { transform: scale(1.02); }

/* Value cards: number + hover lift */
.value-item { position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value-item:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(20,18,54,.10); }
.value-num {
  position: absolute; top: 18px; right: 24px;
  font-size: 2.4rem; font-weight: 800; color: #eceef4; line-height: 1;
}

@media (max-width: 760px) {
  .hero-stats { gap: 30px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 22px 34px; }
}

/* ---- Centered hero + overview (better balance) ---- */
.subpage-hero .hero-content { text-align: center; margin: 0 auto; }
.subpage-hero .hero-sub { margin-left: auto; margin-right: auto; }
.subpage-hero .hero-actions { justify-content: center; }
.subpage-hero .hero-stats { justify-content: center; }
.overview-inner { text-align: center; margin-left: auto; margin-right: auto; }
.overview-inner .section-tag { justify-content: center; }
.overview-inner p { margin-left: auto; margin-right: auto; }

/* ---- Core section graphics ---- */
.core { position: relative; overflow: hidden; }
.core .container { position: relative; z-index: 1; }
/* faded dot grid to fill the space */
.core::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(38,34,97,.07) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 68% 72% at 50% 46%, #000 36%, transparent 74%);
  mask-image: radial-gradient(ellipse 68% 72% at 50% 46%, #000 36%, transparent 74%);
}
.core-diagram { max-width: 1000px; }
.pill-name { line-height: 1.25; }
.title-note { display: block; font-size: .62em; font-weight: 600; color: var(--muted); margin-top: 6px; letter-spacing: .01em; }
.core-guide { fill: none; stroke: #e9ebf2; }
.core-notes { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.core-notes span {
  background: #fff; border: 1px solid var(--line); border-radius: 40px;
  padding: 12px 24px; font-size: .93rem; color: var(--muted);
  box-shadow: 0 6px 18px rgba(20,18,54,.04);
}
.core-notes b { color: var(--primary); font-weight: 700; }

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* ============================================================
   PITCH POINT ONE — product showcase redesign
   ============================================================ */

/* ---- Product hero ---- */
.phero { position: relative; overflow: hidden; background: var(--primary-dark); color: #fff; padding: 150px 0 90px; }
.phero-bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1000px 500px at 78% 8%, rgba(249,178,51,.16), transparent 60%),
    radial-gradient(900px 600px at 12% 100%, rgba(238,64,54,.14), transparent 60%),
    linear-gradient(160deg, #201b4d 0%, #14122f 60%);
}
.phero-bg::after { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px; -webkit-mask-image: linear-gradient(#000, transparent 85%); mask-image: linear-gradient(#000, transparent 85%);
}
.phero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.phero-copy .hero-eyebrow { color: var(--secondary); }
.phero-copy h1 { font-size: clamp(2.4rem, 4.4vw, 3.9rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; margin-bottom: 20px; }
.phero-copy h1 span { color: var(--secondary); }
.phero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300; color: rgba(255,255,255,.86); max-width: 560px; margin-bottom: 34px; }
.phero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.phero-stats { display: flex; gap: 40px; margin-top: 38px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.phero-stats li { display: flex; flex-direction: column; }
.phero-stats strong { font-size: 1.9rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.phero-stats span { margin-top: 6px; font-size: .82rem; color: rgba(255,255,255,.78); }

/* ---- Hero image ---- */
.phero-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 40px 90px rgba(0,0,0,.45); }

/* ---- App window mockup (hero) ---- */
.phero-visual { perspective: 1600px; }
.app-window {
  border-radius: 16px; overflow: hidden; background: #fff; color: var(--ink);
  box-shadow: 0 40px 90px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.12);
  transform: rotateY(-9deg) rotateX(3deg); transform-origin: center;
}
.aw-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: #f4f5f9; border-bottom: 1px solid var(--line); }
.aw-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d7dae6; }
.aw-bar i:nth-child(1){ background:#EE4036; } .aw-bar i:nth-child(2){ background:#F9B233; } .aw-bar i:nth-child(3){ background:#2ecc71; }
.aw-bar span { margin-left: 10px; font-size: .72rem; color: var(--muted); }
.aw-body { display: grid; grid-template-columns: 132px 1fr; min-height: 320px; }
.aw-side { background: #fbfbfd; border-right: 1px solid var(--line); padding: 14px 10px; }
.aw-logo { display: block; font-size: .72rem; font-weight: 800; color: var(--primary); letter-spacing: -.01em; padding: 4px 8px 12px; }
.aw-nav { display: flex; align-items: center; gap: 8px; padding: 8px 9px; border-radius: 8px; font-size: .74rem; color: var(--muted); }
.aw-nav b { width: 8px; height: 8px; border-radius: 3px; background: #d7dae6; }
.aw-nav.active { background: rgba(38,34,97,.08); color: var(--primary); font-weight: 600; }
.aw-nav.active b { background: var(--secondary); }
.aw-main { padding: 16px; }
.aw-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.aw-stat { border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.aw-stat b { display: block; font-size: 1.05rem; color: var(--primary); }
.aw-stat span { font-size: .62rem; color: var(--muted); }
.aw-chart { display: flex; align-items: flex-end; gap: 8px; height: 96px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; }
.aw-chart i { flex: 1; background: linear-gradient(180deg, var(--primary), #4a439a); border-radius: 4px 4px 0 0; }
.aw-chart i:nth-child(3){ background: linear-gradient(180deg, var(--secondary), #f0a51e); }

/* ---- Module row mockups (replace stock photos) ---- */
.module-mock { position: relative; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(20,18,54,.13); }
.module-row:hover .module-mock { transform: translateY(-4px); transition: transform .4s var(--ease); }
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: #fbfbfd; border-bottom: 1px solid var(--line); }
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: #dfe2ec; }
.mock-bar i:nth-child(1){ background:#EE4036; } .mock-bar i:nth-child(2){ background:#F9B233; } .mock-bar i:nth-child(3){ background:#2ecc71; }
.mock-bar .mock-title { margin-left: 8px; font-size: .74rem; color: var(--muted); font-weight: 600; }
.mock-body { padding: 18px; }

/* avatars + chips shared */
.av { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; color: #fff; flex: none; }
.av-1{ background:#262261; } .av-2{ background:#EE4036; } .av-3{ background:#2f80ed; } .av-4{ background:#8a90a6; }
.tag { font-size: .62rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; background: rgba(38,34,97,.08); color: var(--primary); }
.tag-2{ background: rgba(47,128,237,.12); color:#2f80ed; } .tag-3{ background: rgba(46,204,113,.14); color:#22a35a; } .tag-muted{ background:#eef0f5; color:var(--muted); }

/* leads */
.mk-lead { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.mk-lead:last-child { border-bottom: 0; }
.mk-l-txt { display: flex; flex-direction: column; margin-right: auto; }
.mk-l-txt b { font-size: .86rem; color: var(--ink); } .mk-l-txt span { font-size: .72rem; color: var(--muted); }
.mk-score { font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.mk-score.hot{ background: rgba(238,64,54,.12); color:#EE4036; } .mk-score.warm{ background: rgba(249,178,51,.16); color:#c98600; } .mk-score.cold{ background:#eef0f5; color:var(--muted); }

/* workspace members */
.mk-members { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mk-member { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.mk-member b { font-size: .78rem; margin-right: auto; }

/* deals kanban */
.mk-kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mk-col-h { display: block; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 8px; }
.mk-deal { background: #fbfbfd; border: 1px solid var(--line); border-radius: 8px; padding: 9px; margin-bottom: 8px; }
.mk-deal b { display: block; font-size: .78rem; color: var(--ink); } .mk-deal span { font-size: .72rem; color: var(--muted); }
.mk-deal--won { border-color: rgba(46,204,113,.5); background: rgba(46,204,113,.08); }
.mk-deal--won span { color: #22a35a; font-weight: 700; }

/* drip flow */
.mk-flow { display: flex; flex-direction: column; align-items: center; gap: 0; }
.mk-step { width: 100%; max-width: 240px; text-align: center; font-size: .8rem; font-weight: 600; padding: 11px; border-radius: 10px; border: 1px solid var(--line); background: #fbfbfd; position: relative; padding-left: 34px; }
.mk-step::before { content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; }
.mk-wa::before{ background:#25D366; } .mk-sms::before{ background:#2f80ed; } .mk-email::before{ background:var(--primary); } .mk-wait{ color: var(--muted); font-weight: 500; } .mk-wait::before{ background:#c9cdda; }
.mk-conn { width: 2px; height: 16px; background: var(--line); }

/* email marketing */
.mk-email { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.mk-email-head { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.mk-email-head b { font-size: .78rem; display: block; } .mk-email-head span { font-size: .72rem; color: var(--muted); }
.mk-email-hero { height: 60px; background: linear-gradient(120deg, var(--primary), #4a439a); }
.mk-email .mk-line { height: 8px; border-radius: 4px; background: #eef0f5; margin: 10px 12px; }
.mk-line.w80{ width: 80%; } .mk-line.w60{ width: 60%; }
.mk-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.mk-metrics div { border: 1px solid var(--line); border-radius: 10px; padding: 8px; text-align: center; }
.mk-metrics b { display: block; color: var(--primary); font-size: 1rem; } .mk-metrics span { font-size: .62rem; color: var(--muted); }

/* conversations */
.mk-chat { display: grid; grid-template-columns: 66px 1fr; gap: 12px; }
.mk-chat-list { display: flex; flex-direction: column; gap: 10px; }
.mk-conv { position: relative; }
.mk-conv .av { opacity: .55; } .mk-conv.active .av { opacity: 1; }
.ch-dot { position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; }
.ch-wa{ background:#25D366; } .ch-ig{ background:#E1306C; } .ch-em{ background:var(--secondary); }
.mk-thread { display: flex; flex-direction: column; gap: 8px; }
.bub { font-size: .76rem; padding: 8px 12px; border-radius: 12px; max-width: 82%; }
.bub.in { background: #eef0f5; color: var(--ink); border-bottom-left-radius: 3px; align-self: flex-start; }
.bub.out { background: var(--primary); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }

/* appointments calendar */
.mk-cal { border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
.mk-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.mk-cal-grid span { aspect-ratio: 1; border-radius: 6px; background: #f4f5f9; display: flex; align-items: center; justify-content: center; font-size: .64rem; color: var(--muted); }
.mk-cal-grid span.hd { background: transparent; font-weight: 700; color: var(--ink); }
.mk-cal-grid span.booked { background: var(--primary); color: #fff; font-weight: 700; }
.mk-cal-grid span.dot { position: relative; }
.mk-cal-grid span.dot::after { content: ""; position: absolute; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--secondary); }
.mk-slot { display: flex; align-items: center; gap: 8px; margin-top: 12px; border: 1px solid var(--line); border-left: 3px solid var(--secondary); border-radius: 8px; padding: 10px 12px; font-size: .76rem; color: var(--muted); }
.mk-slot b { color: var(--ink); }

/* invoice */
.mk-invoice { }
.mk-inv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mk-inv-head b { font-size: 1.05rem; color: var(--primary); }
.mk-paid { font-size: .64rem; font-weight: 800; letter-spacing: .08em; color: #22a35a; border: 1.5px solid #22a35a; border-radius: 6px; padding: 3px 8px; transform: rotate(-3deg); }
.mk-inv-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.mk-inv-row b { color: var(--ink); }
.mk-inv-total { display: flex; justify-content: space-between; padding-top: 12px; font-size: .95rem; }
.mk-inv-total b { color: var(--primary); }

@media (max-width: 900px) {
  .phero { padding: 120px 0 70px; }
  .phero-inner { grid-template-columns: 1fr; }
  .phero-visual { max-width: 520px; }
  .app-window { transform: none; }
}
@media (max-width: 480px) {
  .phero-stats { flex-wrap: wrap; gap: 20px 30px; }
  .mk-members { grid-template-columns: 1fr; }
}
