/* ============================================================
   Satellite Apps Page — Page-Specific Styles
   Depends on: _tokens.css (via common_styles.css), bootstrap.min.css,
               menu.css, common_styles.css, footer.css
   ============================================================ */

/* ── Page body offset for fixed shared header ── */
body {
  overflow-x: hidden;
}

/* ── Gradient stripes ── */
/*.g-stripe       { height: 4px; background: var(--bdb-gradient); width: 100%; }
.g-stripe-thick { height: 6px; background: var(--bdb-gradient); width: 100%; }*/

/* ── Fade-in animation ── */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background: url('../../resources/images/satellite_applications/banner_img.png') center/cover no-repeat;
  width: 100%;
  min-height: 318px;
  display: flex;
  align-items: center;
  padding: 40px 48px;
}
.hero-layout {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.hero-inner { flex: 0 0 46%; max-width: 46%; position: relative; z-index: 1; }
.hero-diagram { flex: 0 0 54%; max-width: 54%; display: flex; align-items: center; justify-content: flex-end; }
.diagram-img { width: 100%; max-width: 580px; height: auto; display: block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  margin-bottom: 50px;
}
.eyebrow span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.hero h1 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}
.hero h1 .gradient-text {
  color: #F7BA00;
  -webkit-text-fill-color: #F7BA00;
}
.hero-sub {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(255,255,255,.85);
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 46px;
  max-width: 920px;
  box-shadow: 0 4px 24px rgba(26,10,61,.06);
}
.stat-item { padding: 22px 14px; text-align: center; background: #fff; }
.stat-num {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--bdb-blue);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
}
.stat-label { font-size: 10.5px; color: var(--color-text-body); margin-top: 7px; letter-spacing: .5px; line-height: 1.4; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.sa-btn-primary {
  background: var(--bdb-blue);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .3px;
  transition: all .22s;
}
.sa-btn-primary:hover {
  background: #0330b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4,61,199,.35);
  color: #fff;
}
.sa-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.65);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s;
}
.sa-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* ══════════════════════════════════════════════
   SECTIONS — shared base
══════════════════════════════════════════════ */
section { padding: 48px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--bdb-blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2.section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.16;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--color-text-body);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ══════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════ */
.problem-section { background: #fff; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.problem-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
}
.p-icon-img { width: 48px; height: 48px; object-fit: contain; margin-bottom: 20px; display: block; }
.p-stat { font-size: clamp(15px, 1.5vw, 18px); font-weight: 700; color: var(--bdb-dark); margin-bottom: 8px; line-height: 1.25; }
.p-pain { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.p-body { font-size: 13.5px; color: var(--color-text-body); line-height: 1.65; }
.root-cause { background: var(--bdb-blue); border-radius: 10px; padding: 22px 36px; text-align: center; display: flex; align-items: center; justify-content: center; }
.root-cause p { color: rgba(255,255,255,.92); font-size: 15px; line-height: 1.6; font-style: normal; margin-bottom: 0; }
.root-cause strong { color: #F7BA00; font-weight: 700; }

/* ══════════════════════════════════════════════
   SOLUTION / ARCHITECTURE SECTION
══════════════════════════════════════════════ */
.solution-section { background: #F6F6F6; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 48px; }
.mode-card {
  background: #FFF;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.mode-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.mode-icon { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; }
.mode-icon.salmon { background: #F08080; }
.mode-icon.blue   { background: #8C8CCC; }
.mode-icon-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.mode-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--bdb-blue); text-transform: uppercase; }
.mode-card h3 { font-size: 20px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 18px; }
.mode-row { margin-bottom: 12px; }
.mrl { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.mrl.replaces { color: #e85040; }
.mrl.delivers  { color: #27ae60; }
.mrv { font-size: 13.5px; color: var(--color-text-body); line-height: 1.55; }
.mexamples { font-size: 12px; color: var(--color-text-body); margin-top: 6px; font-style: italic; }
.mode-tag {
  display: inline-block;
  margin-top: 16px;
  background: transparent;
  border: 1.5px solid var(--bdb-blue);
  color: var(--bdb-blue);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 20px;
}

/* Architecture flow */
.arch-flow {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.arch-title { font-size: 16px; font-weight: 700; color: var(--bdb-blue); margin-bottom: 22px; text-align: center; }
.arch-sources { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px; }
.arch-pill { background: #fff; border: 1.5px solid #ccc; border-radius: 20px; padding: 5px 14px; font-size: 12px; color: var(--color-text-primary); }
.arch-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; margin-bottom: 22px; }
.arch-box { background: #fff; border: 1.5px solid #ccc; border-radius: 8px; padding: 12px 18px; text-align: center; min-width: 130px; }
.arch-box.ksl { background: #fff; border-color: #ccc; }
.arch-box-l { font-size: 12px; font-weight: 700; color: var(--color-text-primary); }
.arch-box-s { font-size: 10px; color: var(--color-text-body); margin-top: 4px; }
.arch-arr { color: #999; font-size: 18px; padding: 0 10px; }
.arch-outs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.arch-out { background: var(--bdb-blue); border: none; border-radius: 6px; padding: 10px 18px; font-size: 12px; font-weight: 700; color: #fff; }
.arch-out.dim { background: #fff; border: 1.5px solid var(--bdb-blue); color: var(--bdb-blue); }

/* ══════════════════════════════════════════════
   WHAT IS SECTION
══════════════════════════════════════════════ */
.whatis-section { background: #fff; }
.pullquote {
  background: var(--bdb-blue);
  border-radius: 10px;
  padding: 28px 40px;
  margin-bottom: 48px;
  text-align: center;
}
.pullquote p { font-size: clamp(15px, 1.5vw, 18px); font-style: italic; color: rgba(255,255,255,.95); line-height: 1.65; margin-bottom: 0; }
.whatis-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.w-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  transition: all .22s;
}
.w-card:hover { box-shadow: 0 8px 32px rgba(26,10,61,.08); transform: translateY(-3px); }
.w-tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--bdb-blue); text-transform: uppercase; margin-bottom: 14px; }
.w-card h4 { font-size: 15px; font-weight: 700; color: var(--bdb-dark); margin-bottom: 10px; line-height: 1.3; }
.w-card p { font-size: 13.5px; color: var(--color-text-body); line-height: 1.62; margin-bottom: 0; }

/* ══════════════════════════════════════════════
   APPS SECTION
══════════════════════════════════════════════ */
.apps-section { background: var(--color-bg-section-alt); }
.apps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.app-card {
  background: #fff;
  border-radius: 10px;
  padding: 26px 20px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  padding-bottom: 0px;
}
.app-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(4,61,199,.12); }
.app-card.misc { background: #fff; }
.app-icon-wrap { width: 48px; height: 48px; margin-bottom: 16px; }
.app-icon-img { width: 48px; height: 48px; object-fit: contain; display: block; }
.app-name { font-size: 15px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 6px; }
.app-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.app-tag {
  font-size: 9.5px; font-weight: 600;
  padding: 3px 7px; border-radius: 10px;
  background: rgba(4,61,199,.08);
  color: var(--bdb-blue);
  border: 1px solid rgba(4,61,199,.16);
}
.app-desc { font-size: 12.5px; color: var(--color-text-body); line-height: 1.6; }

/* ══════════════════════════════════════════════
   SEMANTIC SECTION
══════════════════════════════════════════════ */
.semantic-section { background: #fff;}
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px; }
.pillar-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  transition: all .22s;
}
.pillar-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.14); transform: translateY(-3px); }
.pillar-num { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--bdb-blue); margin-bottom: 14px; display: block; }
.pillar-name { font-size: 15px; font-weight: 700; color: var(--bdb-dark); margin-bottom: 10px; }
.pillar-body { font-size: 13.5px; color: var(--color-text-body); line-height: 1.65; margin-bottom: 0; }

.sdk-block { background: var(--bdb-blue); border-radius: 12px; padding: 32px 36px; margin-bottom: 36px; }
.sdk-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.sdk-hooks { display: flex; flex-wrap: wrap; gap: 10px; }
.sdk-hook {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 8px;
  padding: 7px 16px;
}
.sdk-domain-label { font-size: 15px; font-weight: 600; color: var(--color-text-primary); margin-bottom: 14px; }
.domains-row { display: flex; flex-wrap: wrap; gap: 10px; }
.domain-pill {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--bdb-blue);
  color: var(--bdb-blue);
  background: #fff;
}

/* ══════════════════════════════════════════════
   AI TOOLS SECTION
══════════════════════════════════════════════ */
.ai-tools-section { background: var(--color-bg-section-alt); }
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tool-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  transition: all .22s;
}
.tool-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.14); transform: translateY(-3px); }
.tool-icon-img { width: 44px; height: 44px; object-fit: contain; display: block; margin-bottom: 18px; border-radius: 10px; }
.tool-name { font-size: 18px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 6px; }
.tool-name.claude { color: #e85040; }
.tool-sub { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--bdb-blue); margin-bottom: 20px; font-style: normal; }
.tool-row { margin-bottom: 15px; }
.trl { font-size: 9px; font-weight: 700; letter-spacing: 2px; color: var(--color-text-body); text-transform: uppercase; margin-bottom: 5px; }
.trb { font-size: 13.5px; color: var(--color-text-body); line-height: 1.6; }
.tool-eg {
  background: rgba(4,61,199,.05);
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--color-text-body);
  line-height: 1.55;
}
.human-loop { background: var(--bdb-blue); border-radius: 10px; padding: 20px 28px; text-align: center; margin-top: 32px; }
.human-loop p { color: rgba(255,255,255,.92); font-size: 14px; line-height: 1.65; margin-bottom: 0; }
.human-loop strong { color: #F7BA00; }

/* ══════════════════════════════════════════════
   ROI SECTION
══════════════════════════════════════════════ */
.roi-section { background: #fff; }
.roi-section .section-sub { margin-bottom: 32px; }
.roi-table-wrap { overflow-x: auto; margin-bottom: 40px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,.10); }
.roi-table { width: 100%; border-collapse: collapse; }
.roi-table th { padding: 14px 18px; text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.roi-table th:first-child  { background: #000; color: #fff; width: 30%; }
.roi-table th:nth-child(2) { background: #F6C6C1; color: #F85353; }
.roi-table th:nth-child(3) { background: #dbe4ff; color: #0B3BC2; }
.roi-table th:nth-child(4) { background: #D6F9D6; color: #44BF44; }
.roi-table td { padding: 14px 18px; font-size: 13.5px; border-bottom: 1px solid rgba(0,0,0,.06); vertical-align: middle; line-height: 1.5; background: #fff; }
.roi-table td:first-child  { background: #fff; font-weight: 600; color: var(--bdb-dark); border-right: 1px solid rgba(0,0,0,.06);background-color: #fcfaff; }
.roi-table td:nth-child(2) { color: #F85353; font-weight: 600;background-color: #fffaf9;}
.roi-table td:nth-child(3) { color: #0B3BC2; font-weight: 600;background-color: #f8faff; }
.roi-table td:nth-child(4) { color: #44BF44; font-weight: 600;background-color: #F8FFF8; }
.roi-table tr:last-child td { border-bottom: none; }
.roi-table tbody tr:hover td { background: #fafafa; }

.worked-example { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.we-card { border-radius: 12px; padding: 32px 28px; box-shadow: 0 4px 32px rgba(0,0,0,.10); }
.we-brief { background: var(--bdb-blue); grid-column: 1/-1; }
.we-brief h4 { color: var(--bdb-gold); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.we-brief p  { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.75; margin-bottom: 0; }
.we-trad { background: #FFFAF9; }
.we-trad h4 { color: #F85353; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.we-trad p  { font-size: 13.5px; color: #444; line-height: 1.75; margin-bottom: 0; }
.we-bdb  { background: #F8FFF8; }
.we-bdb h4  { color: #44BF44; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.we-bdb p   { font-size: 13.5px; color: #444; line-height: 1.75; margin-bottom: 0; }
.we-total   { display: block; margin-top: 20px; font-size: 13px; font-weight: 700; letter-spacing: .5px; }

/* ══════════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════════ */
.why-section { background: #F6F6F6; }
.wins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.win-card {
  background: #fff;
  border-radius: 12px;
  padding: 34px 28px;
  text-align: left;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  transition: all .22s;
}
.win-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.14); transform: translateY(-3px); }
.win-stat { font-size: 40px; font-weight: 700; color: var(--bdb-blue); line-height: 1; margin-bottom: 10px; display: block; }
.win-title { font-size: 17px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 12px; }
.win-body  { font-size: 13.5px; color: var(--color-text-body); line-height: 1.65; margin-bottom: 0; }

.tier2 { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; justify-content: center; }
.tier2-pill {
  background: #fff;
  border: 1.5px solid var(--bdb-blue);
  border-radius: 20px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bdb-blue);
}
.structural { background: var(--bdb-blue); border-radius: 12px; padding: 32px 48px; text-align: center; }
.structural p { font-size: clamp(14px, 1.5vw, 16px); font-style: italic; color: rgba(255,255,255,.90); line-height: 1.75; margin-bottom: 0; }
.structural strong { color: var(--bdb-gold); font-style: normal; }

/* ══════════════════════════════════════════════
   HOW IT WORKS SECTION
══════════════════════════════════════════════ */
.how-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step-connector { display: none; }
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  transition: all .22s;
}
.step-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.14); transform: translateY(-3px); }
.step-num { font-size: 40px; font-weight: 700; color: rgba(4,61,199,.12); position: absolute; top: 10px; right: 18px; line-height: 1; }
.step-badge { display: inline-block; background: var(--bdb-blue); color: #fff; font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 20px; margin-bottom: 14px; }
.step-weeks { font-size: 10px; font-weight: 700; color: #F7BA00; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.step-title { font-size: 18px; font-weight: 700; color: var(--color-text-primary); margin-bottom: 12px; line-height: 1.3; }
.step-body { font-size: 13.5px; color: var(--color-text-body); line-height: 1.65; margin-bottom: 0; }

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section { background: url(/resources1/images/background/whatwedo.png) 0 0/cover #003f68; padding: 0; }
.cta-content { padding: 60px 24px 60px 0; text-align: left; }
.cta-tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.cta-section h2 { font-size: clamp(18px, 2.2vw, 28px); font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.cta-sub { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 24px; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-primary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.btn-cta-primary:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
.btn-cta-secondary {
  background: var(--bdb-blue);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.btn-cta-secondary:hover { background: #0330b0; color: #fff; }
.btn-gold {
  background: var(--bdb-gold);
  color: var(--bdb-dark);
  border: none;
  padding: 15px 34px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.btn-gold:hover { background: var(--bdb-orange); transform: translateY(-2px); color: var(--bdb-dark); }
.btn-og {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 15px 34px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.btn-og:hover { border-color: #fff; background: rgba(255,255,255,.06); color: #fff; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .apps-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid, .whatis-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  section { padding: 64px 24px; }
  .hero { padding: 100px 24px 60px; }
  .stat-bar { grid-template-columns: repeat(3, 1fr); }
  .problem-grid,
  .mode-grid,
  .whatis-grid,
  .wins-grid,
  .pillars-grid,
  .apps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { margin: 0; }
  .step-connector { display: none; }
  .worked-example { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 80px 16px 48px; }
  section { padding: 48px 16px; }
}
