/* ===================================
   MANUFACTURING DOMINATION
   Static HTML Build
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --dark: #111111;
  --dark-section: #1C1C1C;
  --orange: #E8572A;
  --orange-hover: #D04A20;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #E5E2DD;
  --card-bg: #F5F2EE;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-pad: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ===================================
   NAVIGATION
   =================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.8; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  padding: 40px;
  z-index: 999;
}

.mobile-menu.open { display: flex; flex-direction: column; gap: 24px; }

.mobile-menu a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
}

/* ===================================
   HERO
   =================================== */

.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero .hero-tagline {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-arrow::after {
  content: '→';
  font-size: 15px;
  transition: transform 0.2s;
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

.hero-image {
  max-width: 600px;
  margin: 50px auto 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #2a2a2a;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder for hero image */
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2420, #3d3530, #2a2420);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
}

/* ===================================
   STATS BAR
   =================================== */

.stats-bar {
  padding: 40px 0 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===================================
   SECTION HEADINGS
   =================================== */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--black);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================
   ENGINE / SERVICES CARDS
   =================================== */

.engine-section {
  padding: var(--section-pad) 0;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engine-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.engine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.engine-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.engine-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.engine-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 12px;
}

.engine-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================
   COMPETITOR BANNER (DARK)
   =================================== */

.competitor-banner {
  background: var(--dark-section);
  padding: 80px 0;
}

.competitor-inner {
  max-width: 700px;
}

.competitor-inner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}

.competitor-inner h2 .highlight {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  font-style: italic;
}

.competitor-inner p {
  font-size: 16px;
  color: #AAAAAA;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-on-dark {
  background: var(--orange);
  color: var(--white);
}

/* ===================================
   ICP / SOUND FAMILIAR
   =================================== */

.icp-section {
  padding: var(--section-pad) 0;
}

.icp-list {
  max-width: 800px;
  margin: 0 auto;
}

.icp-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.icp-item:first-child { border-top: 1px solid var(--border); }

.icp-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.icp-item h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 8px;
}

.icp-item .icp-quote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 15px;
}

.icp-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.icp-callout {
  margin-top: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.icp-callout p {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.7;
}

/* ===================================
   TECHNOLOGY / PROCESS (DARK)
   =================================== */

.tech-section {
  background: var(--dark-section);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.tech-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/engineering-blueprint.webp') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.tech-section .container {
  position: relative;
  z-index: 1;
}

.tech-section .section-header h2 { color: var(--white); }
.tech-section .section-header p { color: #999; }

.tech-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin-bottom: 12px;
}

.tech-tags {
  text-align: center;
  margin-bottom: 60px;
}

.tech-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin: 0 8px;
}

.tech-steps {
  max-width: 720px;
  margin: 0 auto;
}

.tech-step {
  padding: 32px 0;
  border-bottom: 1px solid #333;
}

.tech-step:first-child { border-top: 1px solid #333; }

.tech-step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.tech-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}

.tech-step p {
  font-size: 15px;
  color: #AAAAAA;
  line-height: 1.7;
}

/* ===================================
   RESULTS
   =================================== */

.results-section {
  padding: var(--section-pad) 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.result-card .result-stat {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--orange);
  font-weight: 400;
  margin-bottom: 8px;
}

.result-card .result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.result-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 12px;
}

.result-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================
   FAQ ACCORDION
   =================================== */

.faq-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  gap: 20px;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, border-color 0.3s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  border-color: var(--orange);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 640px;
}

/* ===================================
   SYSTEM READY CTA (DARK)
   =================================== */

.cta-section {
  background: var(--dark-section);
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
}

/* ===================================
   BOOKING FORM
   =================================== */

.booking-section {
  padding: var(--section-pad) 0;
}

.booking-section .section-header p {
  max-width: 500px;
}

.booking-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--orange-hover); }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.calendly-link {
  text-align: center;
  margin-top: 20px;
}

.calendly-link a {
  font-size: 14px;
  color: var(--orange);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-center {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 700;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-meta a { color: var(--text-muted); }
.footer-meta a:hover { color: var(--orange); }

/* ===================================
   INSIGHTS / BLOG PAGE
   =================================== */

.page-header {
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--black);
  font-weight: 400;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: var(--section-pad);
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.insight-card-img {
  aspect-ratio: 16/10;
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}

.insight-card-img .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
}

.insight-card-body {
  padding: 28px 24px;
}

.insight-card-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.insight-card-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
}

.insight-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-top: 16px;
  transition: gap 0.2s;
}

.insight-card-link:hover { gap: 10px; }

/* Featured insight card */
.insight-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.insight-featured .insight-card-img {
  aspect-ratio: auto;
  min-height: 320px;
  border-radius: 12px 0 0 12px;
}

.insight-featured .insight-card-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-featured .insight-card-body h3 {
  font-size: 28px;
}

/* Insights filter */
.insights-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  :root { --section-pad: 80px; }

  .engine-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-featured { grid-template-columns: 1fr; }
  .insight-featured .insight-card-img { border-radius: 12px 12px 0 0; min-height: 200px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .hero .hero-tagline { font-size: 36px; }
  .hero { padding: 110px 0 60px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-meta { align-items: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .competitor-inner h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero .hero-tagline { font-size: 30px; }
}

/* ===================================
   19px MINIMUM FONT SIZE OVERRIDES
   All copy, headings, subheadings,
   FAQ text, card text
   =================================== */

.hero-sub {
  font-size: 19px;
}

.section-header p {
  font-size: 19px;
}

.engine-card h3 {
  font-size: 24px;
}

.engine-card p {
  font-size: 19px;
}

.competitor-inner p {
  font-size: 19px;
}

.competitor-inner h2 {
  font-size: clamp(30px, 3.5vw, 42px);
}

.icp-item .icp-quote {
  font-size: 19px;
}

.icp-item p {
  font-size: 19px;
}

.icp-item h3 {
  font-size: 26px;
}

.icp-callout p {
  font-size: 19px;
}

.tech-step h3 {
  font-size: 24px;
}

.tech-step p {
  font-size: 19px;
}

.result-card h3 {
  font-size: 22px;
}

.result-card p {
  font-size: 19px;
}

.faq-question {
  font-size: 19px;
}

.faq-answer-inner {
  font-size: 19px;
}

.insight-card-body h3 {
  font-size: 22px;
}

.insight-card-body p {
  font-size: 19px;
}

.insight-featured .insight-card-body h3 {
  font-size: 30px;
}

.insight-featured .insight-card-body p {
  font-size: 19px;
}

.form-note {
  font-size: 19px;
}

.calendly-link a {
  font-size: 19px;
}

.booking-section .section-header p {
  font-size: 19px;
}

.cta-section h2 {
  font-size: clamp(40px, 5vw, 60px);
}

/* ===================================
   HERO IMAGE STYLES
   =================================== */

.hero-image {
  max-width: 640px;
  margin: 50px auto 0;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1614;
  position: relative;
  aspect-ratio: 16/9;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image svg {
  width: 100%;
  height: 100%;
}

/* ===================================
   TECH SECTION IMAGES
   =================================== */

.tech-step {
  padding: 32px 0;
  border-bottom: 1px solid #333;
}

.tech-step-content {
  min-width: 0;
}

.tech-step-image {
  display: none;
}

.tech-step-image img {
  display: none;
}

@media (max-width: 768px) {

/* ===================================
   RESULT CARD IMAGE STRIP
   =================================== */

.result-card-image {
  height: 8px;
  border-radius: 12px 12px 0 0;
  margin: -40px -32px 32px -32px;
  width: calc(100% + 64px);
}

/* ===================================
   CTA BACKGROUND IMAGE
   =================================== */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.cta-bg svg {
  width: 100%;
  height: 100%;
}
