/* ================================================================
   ECON Tech — Industry Pages Shared Styles
   Used by: Automotive, Food & Beverage, Metals, Mining, Water
   ================================================================ */

/* ── Challenges section ── */
#challenges {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.challenges-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.challenges-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.challenges-text h2 span { color: var(--red); }

.challenges-text p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── AI Solutions section (dark bg) ── */
#ai-solutions {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

#ai-solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(223,8,8,0.08) 0%, transparent 55%);
}

#ai-solutions .section-header h2 { color: var(--white); }
#ai-solutions .section-header .section-sub { color: rgba(255,255,255,0.50); }

/* ── Results section ── */
#results {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.results-intro {
  max-width: 700px;
  margin: 0 0 60px;
}

.results-intro h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-top: 12px;
  line-height: 1.15;
}

.results-intro h2 span { color: var(--red); }

.results-intro p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 16px;
}

/* ── Metals: Process Tabs section ── */
#process-tabs-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.process-tabs-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-tabs-header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.process-tabs-header h2 span { color: var(--red); }

.process-tabs-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Success story image panels (mining & others) ── */
.ss-img-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ss-img-grinding {
  background: linear-gradient(160deg, #0d0e16 0%, #1C1D29 100%);
}

.ss-img-flotation {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 50%, #00d4ff 100%);
}

.ss-img-digital {
  background: linear-gradient(135deg, #1c1d29 0%, #3a2a1f 50%, #df0808 100%);
}

.ss-img-insight {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  padding: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .challenges-grid-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  #ai-solutions { padding: 64px 0; }
}

/* ── Page-specific styles extracted from reference designs ── */

a { color: inherit; text-decoration: none; }

#page-hero {
      background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%);
      min-height: 72vh; display: flex; align-items: center;
      padding: 120px 0 80px; position: relative; overflow: hidden;
    }

#page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 40%, rgba(100,180,220,0.12) 0%, transparent 55%);
    }

#page-hero::after {
      content: ''; position: absolute; left: -120px; top: -120px;
      width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(100,180,220,0.06) 0%, transparent 70%);
    }

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-family: var(--font-head); font-size: 11px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45);
      margin-bottom: 28px;
    }

.hero-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }

.hero-breadcrumb a:hover { color: var(--red); }

.hero-breadcrumb span { color: var(--red); }

.hero-eyebrow {
      font-family: var(--font-head); font-size: 11px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
      margin-bottom: 20px;
    }

#page-hero h1 {
      font-family: var(--font-head); font-size: clamp(36px, 5vw, 64px);
      font-weight: 900; color: var(--white); line-height: 1.08;
      letter-spacing: -0.02em; margin-bottom: 24px;
    }

#page-hero .hero-sub {
      font-size: 18px; color: rgba(255,255,255,0.65); max-width: 620px;
      line-height: 1.7; margin-bottom: 40px;
    }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-kpis {
      display: flex; gap: 0; flex-wrap: nowrap; margin-top: 44px;
      padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
    }

.hero-kpi { flex: 1; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.08); }

.hero-kpi:first-child { padding-left: 0; }

.hero-kpi:last-child { border-right: none; }

.hero-kpi strong {
      display: block; font-family: var(--font-head);
      font-size: 42px; font-weight: 800; color: var(--red); line-height: 1;
    }

.hero-kpi p { font-size: 14px; color: rgba(255,255,255,0.42); font-weight: 500; margin-top: 6px; }

.challenge-list { display: flex; flex-direction: column; gap: 16px; }

.challenge-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; background: var(--gray-100); border-radius: var(--radius-md);
      border-left: 3px solid var(--red);
    }

.challenge-icon {
      width: 40px; height: 40px; background: rgba(223,8,8,0.08);
      border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

.challenge-icon svg { width: 20px; height: 20px; }

.challenge-item h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }

.challenge-item p { font-size: 13px; color: var(--gray-mid); line-height: 1.55; margin-bottom: 0; }

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

.section-header h2 {
      font-family: var(--font-head); font-size: clamp(26px, 3vw, 42px);
      font-weight: 800; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 16px;
    }

.section-header h2 span { color: var(--red); }

.section-intro { text-align: center; margin-bottom: 48px; }

.process-sol-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }

.process-sol-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md); padding: 24px;
      transition: background 0.25s, border-color 0.25s;
    }

.process-sol-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(223,8,8,0.25); }

.process-sol-badge {
      font-family: var(--font-head); font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--red);
      margin-bottom: 8px; display: block;
    }

.process-sol-card h4 {
      font-family: var(--font-head); font-size: 16px; font-weight: 800;
      color: var(--white); margin-bottom: 8px;
    }

.process-sol-card p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.6; margin: 0; }

.results-feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 48px;
    }

.result-feat {
      display: flex; flex-direction: column; gap: 0;
    }

.result-feat-check {
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(223,8,8,0.08);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; flex-shrink: 0;
    }

.result-feat-check svg { width: 15px; height: 15px; }

.result-feat h4 {
      font-family: var(--font-head); font-size: 16px; font-weight: 800;
      color: var(--dark); margin-bottom: 10px; line-height: 1.3;
    }

.result-feat p {
      font-size: 14px; color: #5A5D6E; line-height: 1.7; margin: 0;
    }

#success-stories {
      padding: 64px 0; background: var(--gray-100); overflow: hidden;
    }

.ss-header { text-align: center; margin-bottom: 36px; }

.ss-header h2 {
      font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 800; color: var(--dark); letter-spacing: -0.02em;
      margin: 12px 0 0; line-height: 1.2;
    }

.ss-header h2 span { color: var(--red); }

.ss-slider { position: relative; overflow: hidden; }

.ss-track {
      display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
    }

.ss-slide {
      min-width: 100%; display: grid;
      grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch;
      min-height: 320px;
    }

.ss-content {
      padding: 28px 48px 28px 0;
      display: flex; flex-direction: column; justify-content: center; gap: 12px;
      background: none;
    }

.ss-tag {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--red); background: rgba(223,8,8,0.10);
      padding: 5px 12px; border-radius: 4px; width: fit-content;
    }

.ss-content h3 {
      font-family: var(--font-head); font-size: clamp(17px, 1.8vw, 24px);
      font-weight: 800; color: var(--dark); line-height: 1.25;
      letter-spacing: -0.02em; margin: 0;
    }

.ss-content p {
      font-size: 13.5px; color: #5A5D6E; line-height: 1.65; margin: 0;
    }

.ss-metrics {
      display: flex; gap: 24px; margin-top: 4px;
    }

.ss-metric span {
      display: block; font-family: var(--font-head); font-size: 26px;
      font-weight: 900; color: var(--red); letter-spacing: -0.03em; line-height: 1;
    }

.ss-metric span em { color: var(--red); font-style: normal; }

.ss-metric p {
      font-size: 12px; color: #9497A8; margin: 6px 0 0;
      text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
    }

.ss-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 700; color: var(--white);
      background: var(--red); padding: 10px 22px; border-radius: 6px;
      text-decoration: none; width: fit-content; margin-top: 8px;
      transition: background 0.2s, transform 0.2s;
    }

.ss-cta:hover { background: #b80606; transform: translateY(-1px); }

.ss-image {
      position: relative; min-height: 0; height: 100%; overflow: hidden; border-radius: 12px;
    }

.ss-img-predictive { background: #1a2d4d; border-bottom: 4px solid #0084ff; }

.ss-img-quality { background: #2d1a1a; border-bottom: 4px solid #ff8c00; }

.ss-img-traceability { background: #1a2d2d; border-bottom: 4px solid #DF0808; }

.ss-img-predictive::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(0,132,255,0.30) 0%, transparent 70%);
    }

.ss-img-quality::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(255,140,0,0.30) 0%, transparent 70%);
    }

.ss-img-traceability::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(223,8,8,0.30) 0%, transparent 70%);
    }

.ss-img-tag {
      position: absolute; top: 22px; left: 22px; z-index: 4;
      background: rgba(255,255,255,0.10); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.18); border-radius: 4px;
      padding: 5px 12px; font-size: 10px; font-weight: 700;
      color: rgba(255,255,255,0.80); letter-spacing: 0.12em; text-transform: uppercase;
    }

.ss-nav {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; margin-top: 44px;
    }

.ss-arrow {
      width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(28,29,41,0.18);
      background: none; color: rgba(28,29,41,0.5); font-size: 20px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }

.ss-arrow:hover { border-color: var(--red); color: var(--white); background: rgba(223,8,8,0.15); }

.ss-dots { display: flex; gap: 8px; }

.ss-dot {
      width: 8px; height: 8px; border-radius: 50%; background: rgba(28,29,41,0.18);
      border: none; cursor: pointer; padding: 0; transition: all 0.3s;
    }

.ss-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

#cta {
      background: var(--dark);
      padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    }

#cta::before {
      content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
      width: 800px; height: 400px;
      background: radial-gradient(ellipse, rgba(223,8,8,0.10) 0%, transparent 65%);
    }

.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

#cta h2 {
      font-family: var(--font-head); font-size: clamp(28px, 4vw, 52px);
      font-weight: 800; color: var(--white); letter-spacing: -0.02em;
      margin-bottom: 20px; line-height: 1.15;
    }

#cta h2 span { color: var(--red); }

#cta .cta-inner p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-trust-row { display: flex; gap: 32px; justify-content: center; flex-wrap: nowrap; align-items: center; margin-top: 52px; }

.cta-trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: rgba(255,255,255,0.45);
    }

.cta-trust-item::before { content: '✓'; color: var(--red); font-weight: 700; }

footer { background: #1C1D29; padding: 60px 0 0; }

.footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.40); line-height: 1.7; margin-top: 16px; max-width: 280px; }

.footer-col h5 { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 16px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.25);
    }

.footer-bottom a { color: rgba(255,255,255,0.25); transition: color 0.2s; }

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

#pillar-solutions {
      padding: 96px 0; background: var(--gray-100);
    }

.pillar-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    }

.pillar-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 36px; border: 1px solid var(--gray-200);
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      position: relative; overflow: hidden;
    }

.pillar-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--red); transform: scaleX(0);
      transform-origin: left; transition: transform 0.35s ease;
    }

.pillar-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); transform: translateY(-4px); border-color: transparent; }

.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
      width: 52px; height: 52px; background: rgba(223,8,8,0.07);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }

.pillar-icon svg { width: 26px; height: 26px; }

.pillar-tag {
      display: inline-block; font-family: var(--font-head); font-size: 10px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--red);
      margin-bottom: 10px;
    }

.pillar-card h3 {
      font-family: var(--font-head); font-size: 20px; font-weight: 800;
      color: var(--dark); margin-bottom: 10px;
    }

.pillar-card > p { font-size: 14px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 20px; }

.pillar-solutions-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.pillar-solutions-list li {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 13px; color: var(--gray-500); line-height: 1.5;
    }

.pillar-solutions-list li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.pillar-link {
      display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
      font-family: var(--font-head); font-size: 13px; font-weight: 700;
      color: var(--red); transition: gap 0.2s;
    }

.pillar-link:hover { gap: 10px; }

.process-flow {
      display: flex; align-items: center; justify-content: center;
      gap: 0; margin-bottom: 48px; position: relative; z-index: 1;
    }

.process-tab {
      display: flex; flex-direction: row; align-items: center; gap: 14px;
      padding: 18px 22px; background: none; border: none;
      border-bottom: 2px solid rgba(255,255,255,0.08);
      cursor: pointer; transition: all 0.25s; flex: 1;
      position: relative;
    }

.process-tab-icon {
      width: 42px; height: 48px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      opacity: 0.30; transition: opacity 0.25s;
    }

.process-tab-icon svg { width: 100%; height: 100%; }

.process-tab:hover .process-tab-icon { opacity: 1; }

.process-tab-text {
      display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
    }

.process-tab::after {
      content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
      height: 2px; background: var(--red);
      transform: scaleX(0); transform-origin: center;
      transition: transform 0.25s ease;
    }

.process-tab:hover::after { transform: scaleX(1); }

.process-tab-num {
      font-family: var(--font-head); font-size: 10px; font-weight: 800;
      letter-spacing: 0.12em; color: rgba(255,255,255,0.20);
      transition: color 0.25s;
    }

.process-tab-name {
      font-family: var(--font-head); font-size: 14px; font-weight: 700;
      color: rgba(255,255,255,0.35); transition: color 0.25s; white-space: nowrap;
    }

.process-tab-sub {
      font-size: 11px; color: rgba(255,255,255,0.20);
      transition: color 0.25s; white-space: nowrap;
    }

.process-tab:hover .process-tab-num { color: var(--red); }

.process-tab:hover .process-tab-name { color: var(--white); }

.process-tab:hover .process-tab-sub { color: rgba(255,255,255,0.45); }

.process-arrow {
      color: rgba(255,255,255,0.15); font-size: 18px;
      flex-shrink: 0; margin-bottom: 2px; line-height: 1;
    }

.process-panels { position: relative; z-index: 1; min-height: 300px; }

.process-panel { display: none; }

.process-panel.active {
      display: block;
      animation: fadeSlide 0.3s ease;
    }

.process-panel-header { margin-bottom: 32px; }

.process-panel-tag {
      display: inline-block; font-family: var(--font-head); font-size: 10px;
      font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--red); background: rgba(223,8,8,0.1); padding: 4px 12px;
      border-radius: 3px; margin-bottom: 12px;
    }

.process-panel-header h3 {
      font-family: var(--font-head); font-size: 26px; font-weight: 800;
      color: var(--white); margin-bottom: 10px;
    }

.process-panel-header p {
      font-size: 15px; color: rgba(255,255,255,0.52); max-width: 680px; line-height: 1.7;
    }

.ai-footer-link {
      display: inline-flex; align-items: center; gap: 6px; margin-top: 48px;
      font-family: var(--font-head); font-size: 14px; font-weight: 700;
      color: var(--white); border-bottom: 2px solid var(--red); padding-bottom: 4px;
      transition: color 0.2s;
    }

.ai-footer-link:hover { color: var(--red); }

.ss-img-eaf { background: #13141F; border-bottom: 4px solid #F97316; }

.ss-img-lf  { background: #13141F; border-bottom: 4px solid #F9B516; }

.ss-img-mes { background: #13141F; border-bottom: 4px solid var(--red); }

.ss-img-ccm { background: #13141F; border-bottom: 4px solid #60A5FA; }

.ss-img-eaf::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(249,115,22,0.30) 0%, transparent 70%);
    }

.ss-img-lf::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(249,181,22,0.28) 0%, transparent 70%);
    }

.ss-img-mes::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(223,8,8,0.22) 0%, transparent 70%);
    }

.ss-img-ccm::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(96,165,250,0.20) 0%, transparent 70%);
    }

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

.section-intro h2 { color: var(--white); margin-top: 12px; }

.ss-img-batch { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%); border-bottom: 4px solid #10C9A0; }

.ss-img-energy { background: linear-gradient(135deg, #2D5F3F 0%, #3D7A4F 50%, #4A9F5C 100%); border-bottom: 4px solid #F9B516; }

.ss-img-batch::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(16,201,160,0.30) 0%, transparent 70%);
    }

.ss-img-energy::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(249,181,22,0.28) 0%, transparent 70%);
    }

.section-intro h2 span { color: var(--red); }

.cta-inner h2 {
      font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px);
      font-weight: 900; color: var(--white); margin: 16px 0 24px;
      letter-spacing: -0.02em; line-height: 1.15;
    }

.cta-inner h2 span { color: var(--red); }

.cta-inner p {
      font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 40px; line-height: 1.7;
    }

.footer-brand {
      display: flex; flex-direction: column; gap: 12px;
    }

.footer-col a {
      font-size: 13px; color: rgba(255,255,255,0.50);
      transition: color 0.2s;
    }

.footer-col a:hover { color: var(--red); }

.ss-img-1 { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%); border-bottom: 4px solid #34d399; }

.ss-img-2 { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%); border-bottom: 4px solid #06b6d4; }

.ss-img-3 { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%); border-bottom: 4px solid var(--red); }

.ss-img-1::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(52,211,153,0.25) 0%, transparent 70%);
    }

.ss-img-2::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(6,182,212,0.22) 0%, transparent 70%);
    }

.ss-img-3::before {
      content: ''; position: absolute; right: 0; bottom: 0;
      width: 55%; height: 55%;
      background: radial-gradient(ellipse at 80% 90%, rgba(223,8,8,0.22) 0%, transparent 70%);
    }
