/* =========================
   GFA — Global Styles
   ========================= */

:root{
  --bg: #fafafa;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --muted: #666;
  --border: #e0e0e0;
  --green: #008844;

  --max: 1400px;
  --padX: clamp(18px, 5vw, 80px);
  --padY: clamp(56px, 7vw, 120px);

  --r: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

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

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

/* Typography */
h1,h2,h3{ margin: 0; letter-spacing: -0.2px; }
p{ margin: 0; }

.display-1{
  font-size: clamp(38px, 6.2vw, 88px);
  font-weight: 300;
  line-height: 1.02;
}
.display-2{
  font-size: clamp(30px, 4.6vw, 64px);
  font-weight: 300;
  line-height: 1.1;
}
.subhead{
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 70ch;
}

.kicker{
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  text-transform: uppercase;
}

/* Layout helpers */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--padX);
  padding-right: var(--padX);
}

.section{
  padding-top: var(--padY);
  padding-bottom: var(--padY);
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}

.card--shadow{ box-shadow: var(--shadow); }

.grid{ display: grid; gap: 22px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1000px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .grid-4{ grid-template-columns: 1fr; }
}

/* Header */
.site-header{
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img{
  width: 44px;
  height: auto;
  display: block;
}

.brand-title{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.nav{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a{
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.nav a:hover{
  background: rgba(0,0,0,.05);
}

.nav a.active{
  color: var(--green);
  font-weight: 600;
  background: rgba(0,136,68,.08);
}

@media (max-width: 820px){
  .header-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .nav{
    width: 100%;
    justify-content: flex-start;
  }
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.btn-primary{
  background: var(--green);
  color: #fff;
}

.btn-primary:hover{ filter: brightness(.95); }

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

.btn-outline:hover{ background: rgba(0,0,0,.04); }

/* Metrics */
.metric{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
}

.metric .label{
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #777;
}

.metric .value{
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.metric--featured{
  background: #0b0b0b;
  border-color: #0b0b0b;
}

.metric--featured .label{ color: #9a9a9a; }
.metric--featured .value{ color: #ffffff; }

/* Portfolio / List cards */
.split-card{
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 820px){
  .split-card{ grid-template-columns: 1fr; }
}

.right-rail{
  text-align: right;
}

@media (max-width: 820px){
  .right-rail{ text-align: left; }
}

.mini-label{
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
}

.green{ color: var(--green); }

hr.sep{
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Footer (optional) */
.site-footer{
  padding: 50px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: #555;
  font-size: 13px;
}

/* === Capabilities Section === */
.capabilities{
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-header{
  margin-bottom: 60px;
}

.capabilities-kicker{
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.capabilities-title{
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin: 0;
}

.capabilities-list{
  display: grid;
  gap: 1px;
  background-color: #e0e0e0;
}

.capability-row{
  background-color: #ffffff;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.capability-name{
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}

.capability-tag{
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.capability-body{
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 24px;
}

.capability-bullets{
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* === Mobile Fix === */
@media (max-width: 820px){
  .capabilities{
    padding: 70px 22px;
  }

  .capabilities-header{
    margin-bottom: 36px;
  }

  .capabilities-title{
    font-size: 26px;
    line-height: 1.2;
  }

  .capability-row{
    padding: 26px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .capability-name{
    font-size: 20px;
  }

  .capability-body{
    font-size: 16px;
  }
}
/* Universal mobile padding for sections that were using 100px 80px */
@media (max-width: 820px){
  .section-pad{
    padding: 70px 22px !important;
  }
}
/* ===== Deployment Portfolio (dark) ===== */
.deploy-portfolio {
  background: #0a0a0a;
  color: #ffffff;
  padding: 100px 80px;
}

.deploy-portfolio .wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.deploy-portfolio .kicker {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.deploy-portfolio h3 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.deploy-portfolio .sub {
  font-size: 18px;
  color: #999;
  max-width: 800px;
  line-height: 1.7;
}

.deploy-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.deploy-card {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.deploy-card .topline {
  height: 2px;
  width: 54px;
  background: #333;
  margin-bottom: 18px;
}

.deploy-card.is-primary .topline {
  background: #008844;
}

.deploy-card .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.deploy-card .desc {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.7;
  margin-bottom: 18px;
}

.deploy-card .regions {
  font-size: 12px;
  color: #6f6f6f;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== Mobile ===== */
@media (max-width: 820px) {
  .deploy-portfolio { padding: 70px 28px; }
  .deploy-portfolio h3 { font-size: 34px; }
  .deploy-portfolio .sub { font-size: 16px; }
  .deploy-grid { grid-template-columns: 1fr; gap: 16px; }
  .deploy-card { padding: 22px 18px; border-radius: 16px; }
}

/* ===== Small phones ===== */
@media (max-width: 420px) {
  .deploy-portfolio { padding: 56px 18px; }
  .deploy-portfolio h3 { font-size: 30px; }
}

/* ===== Deployment Platform (section header) ===== */
.dp-head{
  padding: 100px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.dp-head .kicker{
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}
.dp-head h2{
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.dp-head p{
  font-size: 20px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 800px;
  font-weight: 300;
}

/* ===== Capability Stack ===== */
.dp-stack{
  padding: 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.dp-stack .rail{
  display: grid;
  gap: 1px;
  background: #e0e0e0;
}

/* one capability block */
.dp-cap{
  background: #fff;
  padding: 80px;
}
.dp-cap .grid{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.dp-cap .capnum{
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.dp-cap h3{
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.dp-cap .tag{
  font-size: 15px;
  color: #008844;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.dp-cap .body p{
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 40px;
}

/* 2-column detail grid inside the right side */
.dp-cap .details{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.dp-cap .details .label{
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}
.dp-cap .details .text{
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* highlight box */
.dp-cap .callout{
  background: #fafafa;
  padding: 32px;
  border-left: 3px solid #008844;
}
.dp-cap .callout .label{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.dp-cap .callout .text{
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.dp-cap .callout strong{
  color: #0a0a0a;
}

/* ===== Mobile ===== */
@media (max-width: 900px){
  .dp-head{ padding: 70px 28px 40px; }
  .dp-head h2{ font-size: 40px; letter-spacing: -0.6px; }
  .dp-head p{ font-size: 17px; }

  .dp-stack{ padding: 30px 28px 70px; }

  .dp-cap{ padding: 34px 22px; }
  .dp-cap .grid{ grid-template-columns: 1fr; gap: 18px; }

  .dp-cap h3{ font-size: 30px; margin-bottom: 14px; }
  .dp-cap .body p{ font-size: 16px; margin-bottom: 22px; }

  .dp-cap .details{ grid-template-columns: 1fr; gap: 18px; margin-bottom: 22px; }
  .dp-cap .callout{ padding: 20px; }
}

/* ===== Small phones ===== */
@media (max-width: 420px){
  .dp-head{ padding: 56px 18px 30px; }
  .dp-stack{ padding: 20px 18px 56px; }
  .dp-cap{ padding: 28px 18px; }
}
/* ===== Coalescence Partner Section ===== */
.partner-band{
  background: #ffffff;
  padding: 100px 80px;
  border-top: 1px solid #e0e0e0;
}
.partner-band .wrap{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.partner-band .kicker{
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}
.partner-band h3{
  font-size: 40px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.partner-band p{
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 32px;
}

/* two-column deliverables */
.partner-band .cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.partner-band .label{
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.partner-band .list{
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.8;
}

/* ===== Mobile ===== */
@media (max-width: 900px){
  .partner-band{ padding: 70px 28px; }
  .partner-band .wrap{
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  .partner-band h3{
    font-size: 30px;
    margin-bottom: 14px;
  }
  .partner-band p{ font-size: 16px; margin-bottom: 22px; }
  .partner-band .cols{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* small phones */
@media (max-width: 420px){
  .partner-band{ padding: 56px 18px; }
}
/* ===== Capital Partners (Intro) ===== */
.cap-partners-intro{
  padding: 100px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.cap-partners-intro .inner{
  max-width: 900px;
}

.cap-partners-intro .kicker{
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.cap-partners-intro h2{
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.cap-partners-intro p{
  font-size: 20px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 800px;
  font-weight: 300;
}

/* Mobile */
@media (max-width: 900px){
  .cap-partners-intro{
    padding: 70px 28px 50px;
  }
  .cap-partners-intro h2{
    font-size: 36px;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
  }
  .cap-partners-intro p{
    font-size: 16px;
  }
}

@media (max-width: 420px){
  .cap-partners-intro{
    padding: 56px 18px 42px;
  }
}

/* ===== Capital Partners Grid ===== */
.cap-partners-grid{
  padding: 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.cap-partners-grid .grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.cap-card{
  background: #fff;
  padding: 60px;
  border: 1px solid #e0e0e0;
}

.cap-card .tag{
  font-size: 13px;
  color: #008844;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 500;
}

.cap-card h3{
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.cap-card .desc{
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cap-card .subhead{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.cap-card .bullets{
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cap-card .note{
  background: #fafafa;
  padding: 24px;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.cap-card .note strong{
  color: #0a0a0a;
}

/* Tablet */
@media (max-width: 980px){
  .cap-partners-grid{
    padding: 60px 28px;
  }
  .cap-partners-grid .grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cap-card{
    padding: 32px;
  }
  .cap-card h3{
    font-size: 26px;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
  }
  .cap-card .desc{
    font-size: 15px;
    margin-bottom: 22px;
  }
  .cap-card .bullets{
    margin-bottom: 22px;
  }
}

/* Small mobile */
@media (max-width: 420px){
  .cap-partners-grid{
    padding: 52px 18px;
  }
  .cap-card{
    padding: 24px;
  }
}

/* ===== Partnership Structure (Dark) ===== */
.partner-structure{
  background: #0a0a0a;
  color: #ffffff;
  padding: 100px 80px;
}
.partner-structure .wrap{
  max-width: 1400px;
  margin: 0 auto;
}
.partner-structure .intro{
  margin-bottom: 60px;
}
.partner-structure .kicker{
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}
.partner-structure h3{
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
}
.partner-structure .lead{
  font-size: 18px;
  color: #999;
  max-width: 800px;
  line-height: 1.7;
  margin: 0;
}

.partner-structure .grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
}

.ps-card{
  border-left: 2px solid #333;
  padding-left: 32px;
}
.ps-card.featured{
  border-left-color: #008844;
}

.ps-card .title{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.ps-card .desc{
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 24px;
}

.ps-card .meta{
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.ps-card .meta strong{
  color: #ccc;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .partner-structure{
    padding: 70px 28px;
  }
  .partner-structure .intro{
    margin-bottom: 36px;
  }
  .partner-structure h3{
    font-size: 30px;
    margin-bottom: 14px;
  }
  .partner-structure .lead{
    font-size: 16px;
  }
  .partner-structure .grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ps-card{
    padding-left: 18px;
  }
}

@media (max-width: 420px){
  .partner-structure{
    padding: 56px 18px;
  }
}
/* ===== CTA: Become a deployment partner ===== */
.deploy-cta{
  background: #ffffff;
  padding: 100px 80px;
  border-top: 1px solid #e0e0e0;
}

.deploy-cta .inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.deploy-cta h3{
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 32px;
  letter-spacing: -0.5px;
}

.deploy-cta p{
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 48px;
}

.deploy-cta .actions{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;            /* key for mobile */
}

.deploy-cta .btn-primary{
  background: #008844;
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 900px){
  .deploy-cta{ padding: 70px 28px; }
  .deploy-cta h3{ font-size: 32px; margin-bottom: 18px; }
  .deploy-cta p{ font-size: 16px; margin-bottom: 28px; }

  .deploy-cta .btn-primary{
    width: 100%;              /* make it feel intentional */
    max-width: 360px;
    padding: 14px 22px;
  }
}

@media (max-width: 420px){
  .deploy-cta{ padding: 56px 18px; }
}

/* ===== Contact / Deploy Capital (2-card layout) ===== */
.deploy-intro{
  padding: 120px 80px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.deploy-intro .inner{
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.deploy-intro h2{
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 32px;
  letter-spacing: -1px;
}
.deploy-intro p{
  font-size: 20px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.deploy-cards{
  padding: 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.deploy-cards .grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.deploy-card{
  background: #ffffff;
  padding: 60px;
  border: 1px solid #e0e0e0;
}
.deploy-card .kicker{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 500;
}
.deploy-card .kicker.green{ color: #008844; }
.deploy-card .kicker.gray{ color: #666; }

.deploy-card h3{
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.deploy-card .body{
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 40px;
}

.deploy-card .subhead{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.deploy-card .list{
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.deploy-card .panel{
  background: #fafafa;
  padding: 32px;
  margin-bottom: 32px;
  border-left: 3px solid #008844;
}
.deploy-card .panel-title{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.deploy-card .panel-body{
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.deploy-card .actions{
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.deploy-card .btn{
  background: #008844;
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 6px;
}

.deploy-card .fineprint{
  font-size: 13px;
  color: #999;
  text-align: center;
}
.deploy-card .fineprint a{
  color: #008844;
  text-decoration: none;
}
.deploy-card .fineprint a.gray{
  color: #666;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .deploy-intro{ padding: 80px 28px 56px; }
  .deploy-intro h2{ font-size: 36px; margin-bottom: 18px; }
  .deploy-intro p{ font-size: 16px; }

  .deploy-cards{ padding: 34px 28px 70px; }
  .deploy-cards .grid{ grid-template-columns: 1fr; gap: 22px; }

  .deploy-card{ padding: 28px; }
  .deploy-card h3{ font-size: 24px; margin-bottom: 16px; }
  .deploy-card .body{ margin-bottom: 22px; }
  .deploy-card .panel{ padding: 22px; }

  .deploy-card .btn{
    width: 100%;
    max-width: 360px;
    padding: 14px 22px;
  }
}

@media (max-width: 420px){
  .deploy-intro{ padding: 70px 18px 48px; }
  .deploy-cards{ padding: 28px 18px 60px; }
  .deploy-card{ padding: 22px; }
}

/* ===== Contact Bar (3-up -> stacked) ===== */
.contact-bar{
  padding: 90px 80px 110px;
  background: #0b0b0b;
}

.contact-bar .inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  text-align: center;
}

.contact-bar .label{
  font-size: 12px;
  color: #9a9a9a;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.contact-bar .value{
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}

.contact-bar .value a{
  color: #ffffff;
  text-decoration: none;
}

.contact-bar .desc{
  font-size: 14px;
  color: #b5b5b5;
  line-height: 1.6;
}

/* mobile */
@media (max-width: 900px){
  .contact-bar{
    padding: 60px 28px 70px;
  }
  .contact-bar .inner{
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }

  /* make each item feel intentional */
  .contact-bar .item{
    padding: 18px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
  }

  .contact-bar .value{
    font-size: 16px;
  }
  .contact-bar .desc{
    font-size: 13px;
  }
}

@media (max-width: 420px){
  .contact-bar{
    padding: 54px 18px 60px;
  }
}
/* Why deploy section */
.why-section{
  padding: 90px 80px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-title{
  font-size: 54px;
  font-weight: 300;
  text-align: center;
  margin: 0 0 12px;
}

.why-subtitle{
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
}

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

.why-card{
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 24px;
  background: #fff;
}

.why-card-title{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.why-card-text{
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Responsive */
@media (max-width: 980px){
  .why-section{ padding: 70px 40px 90px; }
  .why-title{ font-size: 44px; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .why-section{ padding: 56px 18px 70px; }
  .why-title{ font-size: 34px; line-height: 1.15; }
  .why-subtitle{ margin-bottom: 34px; }
  .why-grid{ grid-template-columns: 1fr; gap: 16px; }
  .why-card{ padding: 18px; }
  .why-card-title{ font-size: 17px; }
  .why-card-text{ font-size: 14.5px; }
}