/* services-web-dev-layer.css
   Page-specific styles for /services/web-development/.
   All tokens (color, type, spacing) inherit from odoo-shared.css.
   No new colors, fonts, or shadow values introduced.
*/


/* =========================================================
   6. COST CALCULATOR
   ========================================================= */
.calc {
  padding: 100px 0;
  background: var(--bg-soft);
}
.calc__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}
.calc__head h2 { margin: 12px 0 16px; }


.calc__panel {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
@media (max-width: 1000px) {
  .calc__panel { grid-template-columns: 1fr; }
}

.calc__group {
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--bg-muted);
}
.calc__group:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.calc__group h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin: 0 0 16px;
}
.calc__pages {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.calc__pages label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}
.calc__pages input[type=range] {
  flex: 1;
  accent-color: var(--accent);
}
.calc__pages .calc__pages-value {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 20px;
  min-width: 40px;
  text-align: right;
}
.calc__pages-meta {
  font-size: 12px;
  color: var(--charcoal-soft);
  font-family: 'Work Sans', sans-serif;
}

.calc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.calc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-soft);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s;
}
.calc-row:hover {
  background: #fff8f6;
}
.calc-row--on {
  background: #fff8f6;
  border-color: rgba(230, 86, 68, 0.35);
}
.calc-row input[type=checkbox] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.calc-row__label {
  flex: 1;
  font-size: 14px;
  color: var(--charcoal);
}
.calc-row__price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 14px;
  white-space: nowrap;
}

.calc__total {
  position: sticky;
  top: 24px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 16px;
  padding: 28px 28px 32px;
  align-self: start;
}
.calc__total h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 4px;
}
.calc__total__num {
  font-family: 'Work Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
  margin: 6px 0 4px;
  color: #fff;
}
.calc__total__range {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}
.calc__total__weeks {
  font-size: 13px;
  color: var(--accent);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.calc__total__breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-height: 240px;
  overflow-y: auto;
}
.calc__total__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}
.calc__total__breakdown li.calc-base { color: rgba(255, 255, 255, 0.65); }
.calc__total__breakdown li b { color: #fff; font-weight: 700; }

#calc-gate { display: flex; flex-direction: column; gap: 10px; }
#calc-gate label {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
}
#calc-gate input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}
#calc-gate input::placeholder { color: rgba(255, 255, 255, 0.4); }
#calc-gate input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}
#calc-gate button {
  margin-top: 4px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
}
#calc-gate small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
#calc-error {
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 8px;
}
#calc-thanks .btn { margin-top: 16px; }

.calc__reset {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  margin-bottom: 22px;
}
.calc__reset:hover { color: #fff; border-color: rgba(255, 255, 255, 0.6); }

/* =========================================================
   7. LEAD-MAGNET TRIPLE
   ========================================================= */
.magnets {
  padding: 80px 0;
  background: var(--bg);
}
.magnets__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.magnets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .magnets__grid { grid-template-columns: 1fr; } }
.magnet-card {
  background: #fff;
  border: 1px solid var(--bg-muted);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(65, 62, 62, 0.05);
}
.magnet-card__badge {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.magnet-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.magnet-card p {
  color: var(--charcoal-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.magnet-card form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.magnet-card input[type=email] {
  padding: 11px 14px;
  border: 1px solid var(--bg-muted);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}
.magnet-card input[type=email]:focus {
  outline: none;
  border-color: var(--accent);
}
.magnet-card button {
  padding: 11px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.magnet-card button:hover { background: var(--accent-dark); }
.magnet-card__pages {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  color: var(--charcoal-soft);
  margin-top: 10px;
}

/* =========================================================
   8. AEO / AI-READABLE band
   ========================================================= */
.aeo {
  padding: 80px 0;
  background: #1c1a1a;
  color: #fff;
}
.aeo__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.aeo .eyebrow { color: var(--accent); }
.aeo h2 {
  color: #fff;
  margin: 12px 0 18px;
  font-size: clamp(26px, 3.2vw, 38px);
}
.aeo p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
  margin: 0 auto 32px;
}
.aeo__sources {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.aeo__sources b { color: #fff; }

/* =========================================================
   9. CALGARY STUDIO + MAP
   ========================================================= */
.studio {
  padding: 80px 0;
}
.studio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .studio__grid { grid-template-columns: 1fr; } }
.studio__copy h2 { margin-bottom: 16px; }
.studio__nap {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 22px 0;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.studio__nap strong { color: var(--charcoal); }
.studio__nap a { color: var(--accent); font-weight: 600; }
.studio__map {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 12px 36px rgba(65, 62, 62, 0.10);
  border: 1px solid var(--bg-muted);
}
.studio__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.studio__map .map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5, #eaeaea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  color: var(--charcoal-soft);
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

/* =========================================================
   10. INDUSTRIES strip
   ========================================================= */
.industries {
  padding: 80px 0;
  background: var(--bg-soft);
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .industries__grid { grid-template-columns: 1fr; } }
.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--bg-muted);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(65, 62, 62, 0.10);
  border-color: var(--accent);
}
.industry-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.industry-card:nth-child(1) .industry-card__icon { background: var(--card-mint); }
.industry-card:nth-child(2) .industry-card__icon { background: var(--card-yellow); }
.industry-card:nth-child(3) .industry-card__icon { background: var(--card-pink); }
.industry-card:nth-child(4) .industry-card__icon { background: var(--card-purple); }
.industry-card h4 {
  font-size: 15px;
  margin: 0 0 6px;
}
.industry-card p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--charcoal-soft);
  margin: 0;
}

/* =========================================================
   11. CASE STUDIES placeholder
   ========================================================= */
.cases {
  padding: 80px 0;
}

/* =========================================================
   12. CALENDLY EMBED in final CTA
   ========================================================= */
.book {
  padding: 100px 0;
  background: var(--charcoal);
  color: #fff;
}
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1000px) { .book__grid { grid-template-columns: 1fr; } }
.book__copy h2 { color: #fff; margin-bottom: 16px; }
.book__copy .eyebrow { color: var(--accent); }
.book__copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
}
.book__copy strong { color: #fff; }
.book__embed {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-height: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.book__embed iframe { width: 100%; height: 600px; border: 0; }
.book__embed .embed-placeholder {
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: var(--charcoal-soft);
  font-family: 'Work Sans', sans-serif;
  background: linear-gradient(135deg, #fff, var(--bg-soft));
}
.book__embed .embed-placeholder strong {
  display: block;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.book__embed .embed-placeholder small {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

/* =========================================================
   13. META "this page in numbers" closing card
   ========================================================= */
.metacard {
  padding: 60px 0 100px;
  background: var(--bg);
}
.metacard__inner {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff8f6, #f3faf2);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
}
.metacard__inner h3 {
  font-size: 20px;
  margin: 0 0 8px;
}
.metacard__inner p {
  font-size: 14px;
  color: var(--charcoal-soft);
  margin: 0 0 24px;
}
.metacard__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .metacard__row { grid-template-columns: repeat(2, 1fr); } }
.metacard__cell {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(230, 86, 68, 0.15);
}
.metacard__cell strong {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.metacard__cell small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-soft);
  font-family: 'Work Sans', sans-serif;
}

/* =========================================================
   14. Newsletter signup in footer band
   ========================================================= */
.newsletter {
  padding: 56px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--bg-muted);
}
.newsletter__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h4 {
  font-size: 18px;
  margin: 0 0 8px;
}
.newsletter p {
  color: var(--charcoal-soft);
  font-size: 14px;
  margin: 0 0 18px;
}
.newsletter form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--bg-muted);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}
.newsletter input:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter button {
  padding: 11px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter button:hover { background: var(--accent-dark); }

/* =========================================================
   Generic — section heads
   ========================================================= */

.section-head .eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}
.section-head h2 {
  margin: 8px 0 12px;
}

/* =========================================================
   FAQ (using existing .faq-item base, layout wrapper)
   ========================================================= */
.faqs {
  padding: 80px 0;
  background: var(--bg-soft);
}
.faqs__inner { max-width: 880px; margin: 0 auto; }
.faqs__inner .faq-item {
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid var(--bg-muted);
  background: #fff;
}
.faqs__inner .faq-item summary {
  padding: 18px 22px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 16px;
}
.faqs__inner .faq-item summary::-webkit-details-marker { display: none; }
.faqs__inner .faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
}
.faqs__inner .faq-item[open] summary::after { content: '–'; }
.faqs__inner .faq-item p,
.faqs__inner .faq-item ul {
  padding: 0 22px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal-soft);
}

/* =========================================================
   Related-reading band
   ========================================================= */
.related {
  padding: 56px 0;
  background: var(--bg);
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .related__grid { grid-template-columns: repeat(2, 1fr); } }
.related-card {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 18px 20px;
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  color: var(--charcoal);
  transition: background .2s, transform .2s;
}
.related-card:hover { background: #fff8f6; transform: translateY(-2px); }
.related-card .url {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.related-card h5 { font-size: 14px; margin: 0; font-weight: 600; }

/* ----- Generic .flex shell ----- */
.flex {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.flex__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* =========================================================
   CAPABILITY 02 — THREE-COLUMN CAPABILITIES GRID
   3 pillar columns (Platforms / Build / Grow). Each item is
   a dropdown accordion. Desktop: 3 cols. Mobile: stacks to 1.
   ========================================================= */
.caps-grid-section {
  position: relative;
  padding: 110px 0 130px;
  background: #0a0608;          /* solid near-black, no washing radial bleed */
  color: #fbf3e3;
  overflow: hidden;
}

.caps-grid__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.caps-grid__head .eyebrow {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #ffd168;
  margin-bottom: 18px;
}
.caps-grid__h2 {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #fdf6e8;
  margin: 0 0 18px;
}
.caps-grid__h2 em {
  font-style: italic;
  color: #ffd168;
}
.caps-grid__lede {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(253, 246, 232, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* The 3-column grid */
.caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .caps-grid { grid-template-columns: 1fr; gap: 48px; max-width: 540px; }
}

/* One column = one pillar */
.pillar-col {
  --accent: #ffd168;
  --accent-soft: rgba(255, 209, 104, 0.15);
}
.pillar-col--platforms { --accent: #ef6a52; --accent-soft: rgba(239, 106, 82, 0.18); }
.pillar-col--build     { --accent: #ffd168; --accent-soft: rgba(255, 209, 104, 0.18); }
.pillar-col--grow      { --accent: #82c238; --accent-soft: rgba(130, 194, 56, 0.18); }

.pillar-col__head {
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--accent);
}
.pillar-col__eyebrow {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(253, 246, 232, 0.55);   /* dim cream — the eyebrow is supporting info */
  margin-bottom: 12px;
}
.pillar-col__title {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);               /* accent color owns the title — high contrast, on-brand */
  margin: 0 0 10px;
}
.pillar-col__sub {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(253, 246, 232, 0.85);   /* much higher opacity so the sub actually reads */
  margin: 0;
}

/* List of capability dropdowns within a column */
.pillar-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cap-item {
  border-bottom: 1px solid rgba(255, 246, 232, 0.08);
}
.cap-item:last-child { border-bottom: 0; }

.cap-item__head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: padding-left .2s;
}
.cap-item__head:hover { padding-left: 4px; }

.cap-item__num {
  flex: 0 0 auto;
  width: 26px;
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255, 246, 232, 0.4);
}

.cap-item__label {
  flex: 1 1 auto;
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.15;
  color: #fdf6e8;
  transition: color .2s;
}
.cap-item__head:hover .cap-item__label,
.cap-item.is-active .cap-item__label {
  color: var(--accent);
}

.cap-item__arrow {
  flex: 0 0 auto;
  width: 14px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 246, 232, 0.4);
  transition: transform .3s cubic-bezier(.2,.85,.3,1), color .2s;
}
.cap-item.is-active .cap-item__arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.cap-item__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.85,.3,1);
}
.cap-item.is-active .cap-item__detail { max-height: 320px; }

.cap-item__blurb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(253, 246, 232, 0.78);
  margin: 0 0 12px;
  padding: 0 0 0 40px;
}

.cap-item__cta {
  display: inline-block;
  margin: 0 0 18px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  transition: color .15s;
}
.cap-item__cta:hover { color: #fdf6e8; }

/* (Wheel CSS removed — replaced by the tech-stack tower above.) */

/* =========================================================
   FLEX G — REVIEWS WALL · dark marquee
   ========================================================= */
.flex-reviews {
  background: #1c1a1a;
  color: #fff;
  padding: 100px 0 80px;
  overflow: hidden;
}
.flex-reviews .eyebrow { color: var(--accent); }
.flex-reviews__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.flex-reviews__head h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}
.flex-reviews__head h2 em {
  color: #ffd168;
  font-family: 'Caveat', cursive;
}
.flex-reviews__head p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
  margin-top: 12px;
}

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.reviews-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 90s linear infinite;
}
.reviews-marquee:hover .reviews-marquee__track { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.rev-rating {
  display: inline-block;
  margin-left: 6px;
  background: rgba(255, 209, 104, 0.18);
  color: #c98700;
  padding: 2px 7px;
  border-radius: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.rev-card {
  flex: 0 0 360px;
  background: #fff;
  color: var(--charcoal);
  padding: 22px 24px;
  border-radius: 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--accent);
}
.rev-card--mint   { border-top-color: var(--green); }
.rev-card--yellow { border-top-color: #ffd168; }
.rev-card--pink   { border-top-color: #fdb18c; }
.rev-card--purple { border-top-color: #714B67; }
.rev-stars {
  color: #ffd168;
  font-size: 14px;
  letter-spacing: 2px;
}
.rev-card blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal);
  font-style: italic;
}
.rev-card figcaption {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: auto;
}
.rev-card figcaption small {
  display: block;
  font-weight: 400;
  color: var(--charcoal-soft);
  font-size: 11px;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flex-reviews__count {
  text-align: center;
  margin-top: 28px;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.flex-reviews__count strong { color: #ffd168; }

/* =========================================================
   LEAD CAPTURE — centered single-column section
   + dark-on-dark popup modal with gold accents.
   ========================================================= */
.lead-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 209, 104, 0.10), transparent 65%),
    #0a0608;
  padding: 120px 24px;
  color: #fbf3e3;
  text-align: center;
}
.lead-section__inner {
  max-width: 680px;
  margin: 0 auto;
}
.lead-section .eyebrow {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffd168;
  margin-bottom: 24px;
}
.lead-section__h2 {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #fdf6e8;
  margin: 0 0 22px;
}
.lead-section__h2 em { font-style: italic; color: #ffd168; }
.lead-section__lede {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(253, 246, 232, 0.78);
  margin: 0 auto 32px;
  max-width: 560px;
}
.lead-section__files {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lead-section__files li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 7px;
  background: rgba(255, 209, 104, 0.06);
  border: 1px solid rgba(255, 209, 104, 0.18);
  border-radius: 999px;
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 12.5px;
  color: rgba(253, 246, 232, 0.88);
  letter-spacing: 0.3px;
}
.lead-section__file-ext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 20px;
  padding: 0 7px;
  background: linear-gradient(180deg, #ffd168 0%, #d4a64a 100%);
  color: #1c1208;
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.6px;
  border-radius: 4px;
}
.lead-section__cta {
  display: inline-block;
  padding: 18px 38px;
  background: linear-gradient(180deg, #ffd168 0%, #d4a64a 100%);
  border: 0;
  border-radius: 8px;
  color: #1c1208;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(255, 209, 104, 0.28);
  transition: transform .15s, box-shadow .15s;
}
.lead-section__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 209, 104, 0.42);
}
.lead-section__trust {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: rgba(253, 246, 232, 0.45);
  margin: 22px 0 0;
}
@media (max-width: 600px) {
  .lead-section { padding: 88px 20px; }
  .lead-section__h2 { font-size: clamp(34px, 8vw, 44px); }
  .lead-section__lede { font-size: 16px; }
}

/* ---------- POPUP MODAL — dark on dark, gold accents ---------- */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 2, 6, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lead-modal.is-open { display: flex; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.lead-modal__panel {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 209, 104, 0.12), transparent 60%),
    #0a0608;
  border: 1px solid rgba(255, 209, 104, 0.20);
  border-radius: 14px;
  padding: 44px 36px 36px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 209, 104, 0.12);
  animation: leadModalIn .25s cubic-bezier(.2, .85, .3, 1);
}
@keyframes leadModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 246, 232, 0.06);
  border: 1px solid rgba(255, 246, 232, 0.10);
  color: rgba(253, 246, 232, 0.7);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.lead-modal__close:hover {
  background: rgba(255, 209, 104, 0.12);
  border-color: rgba(255, 209, 104, 0.35);
  color: #ffd168;
}
.lead-modal__head { text-align: center; margin-bottom: 26px; }
.lead-modal__eyebrow {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffd168;
  margin-bottom: 16px;
}
.lead-modal__head h2 {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fdf6e8;
  margin: 0;
}
.lead-modal__head h2 em {
  font-style: italic;
  color: #ffd168;
}
.lead-modal__form { display: flex; flex-direction: column; gap: 14px; }
.lead-modal__form label { display: flex; flex-direction: column; gap: 6px; }
.lead-modal__form label > span {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(253, 246, 232, 0.55);
}
.lead-modal__form input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 246, 232, 0.04);
  border: 1px solid rgba(255, 246, 232, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fdf6e8;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.lead-modal__form input::placeholder { color: rgba(253, 246, 232, 0.32); }
.lead-modal__form input:focus {
  outline: none;
  border-color: rgba(255, 209, 104, 0.55);
  background: rgba(255, 209, 104, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 209, 104, 0.12);
}
.lead-modal__submit {
  margin-top: 10px;
  padding: 16px 24px;
  background: linear-gradient(180deg, #ffd168 0%, #d4a64a 100%);
  border: 0;
  border-radius: 8px;
  color: #1c1208;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 8px 22px rgba(255, 209, 104, 0.28);
}
.lead-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 209, 104, 0.42);
}
.lead-modal__fineprint {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  text-align: center;
  color: rgba(253, 246, 232, 0.42);
  margin: 4px 0 0;
}

/* Success state — replaces the form once submitted */
.lead-modal__success { display: none; text-align: center; padding: 8px 0 4px; }
.lead-modal.is-success .lead-modal__form { display: none; }
.lead-modal.is-success .lead-modal__success { display: block; }
.lead-modal__success-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd168 0%, #d4a64a 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1208;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(255, 209, 104, 0.30);
}
.lead-modal__success strong {
  display: block;
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: #fdf6e8;
  margin-bottom: 6px;
}
.lead-modal__success p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(253, 246, 232, 0.65);
  margin: 0;
}

@media (max-width: 540px) {
  .lead-modal { padding: 16px; }
  .lead-modal__panel { padding: 38px 26px 30px; }
  .lead-modal__head h2 { font-size: 26px; }
}
