/* ============================================
   COLTRI PAGE — drop this file into /assets/css/
   It loads automatically via the auto-loader.
   Hardcoded colors throughout to avoid theme variable
   resolution issues (same approach as Bullard / Circul-Air CSS).
   Namespace: .co-* (Coltri) to avoid collision
   with .bd-* (Bullard) and .ca-* (Circul-Air).
   ============================================ */


/* ============ HERO ============ */
.co-hero{
  position:relative;
  background:#0d0d0d;
  color:#f5f1ea;
  min-height:75vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-bottom:1px solid #2a2a2a;
}
.co-hero-img{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(.9) brightness(.7);
  z-index:0;
}
.co-hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg,
    rgba(13,13,13,0) 0%,
    rgba(13,13,13,.55) 60%,
    rgba(13,13,13,.92) 100%
  );
  z-index:1;
}
.co-hero-inner{
  position:relative;
  z-index:2;
  max-width:1280px;
  width:100%;
  margin:0 auto;
  padding:120px 32px 64px;
}
.co-tag{
  display:inline-block;
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#f5f1ea;
  background:#c2241f;
  padding:8px 14px;
  margin-bottom:32px;
}
.co-hero-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(96px, 16vw, 240px);
  line-height:.84;
  letter-spacing:-.02em;
  color:#f5f1ea;
  margin:0 0 16px;
}
.co-hero-lead{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(28px, 3.5vw, 48px);
  line-height:1.05;
  letter-spacing:.005em;
  color:#f5f1ea;
  max-width:36ch;
  margin:0 0 48px;
}
.co-hero-lead em{font-style:normal; color:#c2241f}
.co-hero-foot{
  display:flex;
  flex-wrap:wrap;
  gap:48px;
  border-top:1px solid rgba(245,241,234,.2);
  padding-top:24px;
}
.co-hero-stat{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.co-hero-stat-num{
  font-family:'Bebas Neue', sans-serif;
  font-size:48px;
  line-height:1;
  color:#c2241f;
  letter-spacing:.02em;
}
.co-hero-stat-label{
  font-family:'JetBrains Mono', monospace;
  font-size:10.5px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#cfc8bc;
}


/* ============ EYEBROWS (shared across sections) ============ */
.co-pitch .eyebrow,
.co-feature .eyebrow,
.co-hyper .eyebrow,
.co-pillars .eyebrow,
.co-stock .eyebrow,
.co-process .eyebrow,
.co-cta .eyebrow,
.ct-faq .eyebrow{
  display:inline-block;
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.eyebrow--red{color:#c2241f}
.eyebrow--ink{color:#0d0d0d}
.co-feature--alt .eyebrow--ink,
.co-pillars .eyebrow--ink,
.co-hyper .eyebrow--ink{color:#f5f1ea}


/* ============ §01 — PITCH (cream bg) ============ */
.co-pitch{
  background:#f5f1ea;
  color:#0d0d0d;
  padding:120px 0;
  border-bottom:1px solid #d8d2c5;
}
.co-pitch-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:start;
}
.co-pitch-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(44px, 6vw, 88px);
  line-height:.92;
  letter-spacing:-.01em;
  color:#0d0d0d;
  margin:0 0 32px;
}
.co-pitch-h2 em{font-style:normal; color:#c2241f}
.co-pitch-body p{
  font-size:17px;
  line-height:1.7;
  color:#2a2a2a;
  margin:0 0 18px;
  max-width:64ch;
}
.co-pitch-body p:last-child{margin-bottom:0}
.co-pitch-body strong{color:#0d0d0d}
.co-pitch-body em{color:#c2241f; font-style:italic}
.co-pitch-img-wrap{
  position:sticky;
  top:32px;
}
.co-pitch-img{
  aspect-ratio:4/5;
  background-size:cover;
  background-position:center;
  background-color:#ebe6d9;
  border:1px solid #d8d2c5;
  filter:saturate(.95);
}
.co-pitch-img-caption{
  display:block;
  margin-top:14px;
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  line-height:1.5;
  letter-spacing:.04em;
  color:#5a5a5a;
}


/* ============ §02 / §03 — FEATURE BLOCKS (Silent / Ergo) ============ */
.co-feature{
  background:#0d0d0d;
  color:#f5f1ea;
  padding:120px 0;
  border-bottom:1px solid #2a2a2a;
}
.co-feature--alt{
  background:#f5f1ea;
  color:#0d0d0d;
  border-bottom:1px solid #d8d2c5;
}
.co-feature-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
}
.co-feature-head{
  max-width:70ch;
  margin-bottom:64px;
}
.co-feature-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(48px, 7vw, 104px);
  line-height:.92;
  letter-spacing:-.01em;
  color:#f5f1ea;
  margin:0 0 24px;
}
.co-feature--alt .co-feature-h2{color:#0d0d0d}
.co-feature-h2 em{font-style:normal; color:#c2241f}
.co-feature-intro{
  font-size:17px;
  line-height:1.7;
  color:#cfc8bc;
  max-width:70ch;
  margin:0;
}
.co-feature--alt .co-feature-intro{color:#2a2a2a}

/* hero product image inside a feature block */
.co-feature-hero{
  margin:0 0 48px;
  border:1px solid #2a2a2a;
  background:#161616;
}
.co-feature--alt .co-feature-hero{
  border-color:#d8d2c5;
  background:#fff;
}
.co-feature-hero-img{
  width:100%;
  aspect-ratio:16/10;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-color:transparent;
}

/* spec list — used in feature blocks AND in hyperfilter */
.co-feature-spec{
  margin:0 0 64px;
}
.co-spec-list{
  list-style:none;
  padding:0;
  margin:0;
  border-top:1px solid #2a2a2a;
}
.co-feature--alt .co-spec-list,
.co-hyper .co-spec-list{
  border-top-color:#d8d2c5;
}
.co-spec-list li{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:24px;
  padding:16px 0;
  border-bottom:1px solid #2a2a2a;
  font-size:15px;
  line-height:1.5;
  color:#cfc8bc;
}
.co-feature--alt .co-spec-list li,
.co-hyper .co-spec-list li{
  border-bottom-color:#d8d2c5;
  color:#2a2a2a;
}
.co-spec-list li strong{
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#c2241f;
  font-weight:500;
  align-self:center;
}
.co-spec-list li span{color:inherit}

/* dimensions block — two figures side by side */
.co-dims{
  margin:0 0 64px;
  padding:48px 0 0;
  border-top:1px solid #2a2a2a;
}
.co-feature--alt .co-dims{border-top-color:#d8d2c5}
.co-dims-head{
  margin-bottom:32px;
  max-width:60ch;
}
.co-dims-h3{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(28px, 3.5vw, 44px);
  line-height:1;
  letter-spacing:.01em;
  color:#f5f1ea;
  margin:0 0 8px;
}
.co-feature--alt .co-dims-h3{color:#0d0d0d}
.co-dims-head p{
  font-size:14.5px;
  line-height:1.6;
  color:#cfc8bc;
  margin:0;
}
.co-feature--alt .co-dims-head p{color:#2a2a2a}
.co-dims-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
.co-dim-fig{
  margin:0;
  background:#fff;
  border:1px solid #2a2a2a;
}
.co-feature--alt .co-dim-fig{
  border-color:#d8d2c5;
}
.co-dim-fig-img{
  width:100%;
  aspect-ratio:1/1;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-color:#fff;
}
.co-dim-fig figcaption{
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.04em;
  color:#5a5a5a;
  padding:14px 18px;
  border-top:1px solid #d8d2c5;
  background:#f5f1ea;
}

/* details block — Ergo control panel + frame */
.co-details{
  margin:0 0 0;
  padding:48px 0 0;
  border-top:1px solid #2a2a2a;
}
.co-feature--alt .co-details{border-top-color:#d8d2c5}
.co-details-head{margin-bottom:32px;}
.co-details-h3{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(28px, 3.5vw, 44px);
  line-height:1;
  letter-spacing:.01em;
  color:#f5f1ea;
  margin:0;
}
.co-feature--alt .co-details-h3{color:#0d0d0d}
.co-details-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
.co-detail{
  background:#161616;
  border:1px solid #2a2a2a;
  display:flex;
  flex-direction:column;
}
.co-feature--alt .co-detail{
  background:#fff;
  border-color:#d8d2c5;
}
.co-detail-img{
  width:100%;
  aspect-ratio:4/3;
  background-size:cover;
  background-position:center;
  background-color:#1a1a1a;
  border-bottom:1px solid #2a2a2a;
}
.co-feature--alt .co-detail-img{
  background-color:#ebe6d9;
  border-bottom-color:#d8d2c5;
}
.co-detail-body{padding:24px 24px 28px;}
.co-detail-num{
  display:block;
  font-family:'JetBrains Mono', monospace;
  font-size:10.5px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#c2241f;
  margin-bottom:8px;
}
.co-detail-name{
  font-family:'Bebas Neue', sans-serif;
  font-size:30px;
  line-height:1;
  letter-spacing:.01em;
  color:#f5f1ea;
  margin:0 0 12px;
}
.co-feature--alt .co-detail-name{color:#0d0d0d}
.co-detail-body p{
  font-size:14.5px;
  line-height:1.6;
  color:#cfc8bc;
  margin:0;
}
.co-feature--alt .co-detail-body p{color:#2a2a2a}

/* feature footer — tips about siblings (Force Four, Open, etc.) */
.co-feature-foot{
  margin-top:48px;
  padding-top:32px;
  border-top:1px solid #2a2a2a;
}
.co-feature--alt .co-feature-foot{border-top-color:#d8d2c5}
.co-feature-foot p{
  font-size:14.5px;
  line-height:1.7;
  color:#cfc8bc;
  max-width:80ch;
  margin:0;
  font-style:italic;
}
.co-feature--alt .co-feature-foot p{color:#2a2a2a}
.co-feature-foot strong{
  color:#f5f1ea;
  font-style:normal;
}
.co-feature--alt .co-feature-foot strong{color:#0d0d0d}
.co-feature-foot a{
  color:inherit;
  text-decoration:underline;
  text-decoration-color:#c2241f;
  text-underline-offset:3px;
  font-style:normal;
}


/* ============ §04 — HYPERFILTER ============ */
.co-hyper{
  background:#0d0d0d;
  color:#f5f1ea;
  padding:120px 0;
  border-bottom:1px solid #2a2a2a;
}
.co-hyper-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:80px;
  align-items:center;
}
.co-hyper-img-wrap{
  background:#161616;
  border:1px solid #2a2a2a;
  padding:32px;
}
.co-hyper-img{
  width:100%;
  aspect-ratio:3/4;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}
.co-hyper-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(40px, 5.5vw, 80px);
  line-height:.94;
  letter-spacing:-.01em;
  color:#f5f1ea;
  margin:0 0 24px;
}
.co-hyper-h2 em{font-style:normal; color:#c2241f}
.co-hyper-copy p{
  font-size:16px;
  line-height:1.7;
  color:#cfc8bc;
  margin:0 0 24px;
  max-width:64ch;
}
.co-hyper-copy strong{color:#f5f1ea}
.co-hyper-foot{
  padding:20px 24px;
  background:#161616;
  border-left:3px solid #c2241f;
  font-size:15px;
}


/* ============ §05 — PILLARS (why us) ============ */
.co-pillars{
  background:#f5f1ea;
  color:#0d0d0d;
  padding:120px 0;
  border-bottom:1px solid #d8d2c5;
}
.co-pillars-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
}
.co-pillars-head{
  max-width:60ch;
  margin-bottom:64px;
}
.co-pillars-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(40px, 5.5vw, 80px);
  line-height:.94;
  letter-spacing:-.01em;
  color:#0d0d0d;
  margin:0;
}
.co-pillars-h2 em{font-style:normal; color:#c2241f}
.co-pillars-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.co-pillar{
  border-top:2px solid #c2241f;
  padding-top:24px;
}
.co-pillar-num{
  display:block;
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#c2241f;
  margin-bottom:12px;
}
.co-pillar-h3{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(22px, 2.4vw, 30px);
  line-height:1.1;
  color:#0d0d0d;
  margin:0 0 14px;
  letter-spacing:.01em;
}
.co-pillar p{
  font-size:15px;
  line-height:1.65;
  color:#2a2a2a;
  margin:0;
}


/* ============ FAQ (uses ct-faq-* from existing partial) ============ */
.ct-faq{
  background:#0d0d0d;
  color:#f5f1ea;
  padding:120px 0;
  border-bottom:1px solid #2a2a2a;
}
.ct-faq-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:64px;
  align-items:start;
}
.ct-faq-head{position:sticky; top:32px;}
.ct-faq-head .eyebrow{
  display:inline-block;
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#c2241f;
  margin-bottom:18px;
}
.ct-faq-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(40px, 5vw, 72px);
  line-height:.94;
  letter-spacing:-.01em;
  color:#f5f1ea;
  margin:0 0 20px;
}
.ct-faq-h2 em{font-style:normal; color:#c2241f}
.ct-faq-intro{
  font-size:15px;
  line-height:1.65;
  color:#cfc8bc;
  margin:0;
  max-width:36ch;
}
.ct-faq-list{
  display:flex;
  flex-direction:column;
  border-top:1px solid #2a2a2a;
}
.ct-faq-item{border-bottom:1px solid #2a2a2a;}
.ct-faq-q{
  display:grid;
  grid-template-columns:60px 1fr 40px;
  gap:24px;
  align-items:center;
  padding:24px 0;
  cursor:pointer;
  list-style:none;
}
.ct-faq-q::-webkit-details-marker{display:none}
.ct-faq-num{
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#c2241f;
}
.ct-faq-q-text{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(18px, 1.9vw, 24px);
  line-height:1.2;
  color:#f5f1ea;
  letter-spacing:.01em;
}
.ct-faq-toggle{
  font-family:'JetBrains Mono', monospace;
  font-size:24px;
  line-height:1;
  color:#c2241f;
  text-align:right;
  transition:transform .2s ease;
}
.ct-faq-item[open] .ct-faq-toggle{transform:rotate(45deg);}
.ct-faq-a{padding:0 0 28px 84px;}
.ct-faq-a p{
  font-size:15px;
  line-height:1.7;
  color:#cfc8bc;
  margin:0;
  max-width:64ch;
}


/* ============ §06 — STOCK / INSTALL (text only) ============ */
.co-stock{
  background:#f5f1ea;
  color:#0d0d0d;
  padding:120px 0;
  border-bottom:1px solid #d8d2c5;
}
.co-stock-inner{
  max-width:960px;
  margin:0 auto;
  padding:0 32px;
}
.co-stock-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(40px, 5vw, 72px);
  line-height:.94;
  letter-spacing:-.01em;
  color:#0d0d0d;
  margin:0 0 24px;
}
.co-stock-h2 em{font-style:normal; color:#c2241f}
.co-stock-copy p{
  font-size:16px;
  line-height:1.7;
  color:#2a2a2a;
  margin:0 0 24px;
  max-width:64ch;
}
.co-stock-list{
  list-style:none;
  padding:0;
  margin:0 0 32px;
  border-top:1px solid #d8d2c5;
}
.co-stock-list li{
  font-family:'Barlow Condensed', sans-serif;
  font-size:14.5px;
  letter-spacing:.02em;
  color:#0d0d0d;
  padding:12px 0 12px 24px;
  position:relative;
  border-bottom:1px solid #d8d2c5;
}
.co-stock-list li::before{
  content:"§";
  position:absolute;
  left:0;
  color:#c2241f;
  font-family:'JetBrains Mono', monospace;
}
.co-stock .co-stock-btn{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:16px 26px;
  background:#c2241f;
  color:#f5f1ea;
  border:1px solid #c2241f;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  transition:background .2s ease, color .2s ease;
}
.co-stock .co-stock-btn:hover{
  background:#0d0d0d;
  color:#f5f1ea;
  border-color:#0d0d0d;
}


/* ============ §07 — PROCESS (text only) ============ */
.co-process{
  background:#0d0d0d;
  color:#f5f1ea;
  padding:120px 0;
  border-bottom:1px solid #2a2a2a;
}
.co-process-inner{
  max-width:1080px;
  margin:0 auto;
  padding:0 32px;
}
.co-process-head{
  margin-bottom:64px;
  max-width:60ch;
}
.co-process-head .eyebrow--ink{color:#f5f1ea}
.co-process-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(40px, 5.5vw, 80px);
  line-height:.94;
  letter-spacing:-.01em;
  color:#f5f1ea;
  margin:0;
}
.co-process-h2 em{font-style:normal; color:#c2241f}
.co-process-steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:0;
}
.co-process-steps li{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:32px;
  align-items:start;
  padding:32px 0;
  border-top:1px solid #2a2a2a;
}
.co-process-steps li:last-child{border-bottom:1px solid #2a2a2a}
.co-process-num{
  font-family:'Bebas Neue', sans-serif;
  font-size:64px;
  line-height:1;
  color:#c2241f;
}
.co-process-steps h4{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(22px, 2.2vw, 30px);
  line-height:1.1;
  color:#f5f1ea;
  margin:0 0 10px;
  letter-spacing:.01em;
}
.co-process-steps p{
  font-size:16px;
  line-height:1.6;
  color:#cfc8bc;
  max-width:64ch;
  margin:0;
}


/* ============ §08 — CTA ============ */
.co-cta{
  background:#c2241f;
  color:#f5f1ea;
  padding:120px 0;
  position:relative;
  overflow:hidden;
}
.co-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(13,13,13,.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(13,13,13,.12) 0%, transparent 50%);
  pointer-events:none;
}
.co-cta-inner{
  position:relative;
  z-index:1;
  max-width:960px;
  margin:0 auto;
  padding:0 32px;
  text-align:center;
}
.co-cta .eyebrow{color:rgba(245,241,234,.85)}
.co-cta-h2{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(48px, 7vw, 96px);
  line-height:.94;
  letter-spacing:-.01em;
  color:#f5f1ea;
  margin:0 0 24px;
}
.co-cta-h2 em{font-style:italic; color:#0d0d0d}
.co-cta-lead{
  font-size:17px;
  line-height:1.65;
  color:rgba(245,241,234,.92);
  max-width:60ch;
  margin:0 auto 40px;
}
.co-cta-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.co-cta-btn{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:18px 32px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
  border:1px solid;
}
.co-cta-btn--primary{
  background:#0d0d0d;
  color:#f5f1ea;
  border-color:#0d0d0d;
}
.co-cta-btn--primary:hover{
  background:#f5f1ea;
  color:#0d0d0d;
  border-color:#f5f1ea;
}
.co-cta-btn--secondary{
  background:transparent;
  color:#f5f1ea;
  border-color:#f5f1ea;
}
.co-cta-btn--secondary:hover{
  background:#f5f1ea;
  color:#c2241f;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1180px){
  .co-spec-list li{grid-template-columns:160px 1fr; gap:16px}
}

@media (max-width: 960px){
  .co-pitch-inner,
  .co-hyper-inner,
  .ct-faq-inner{
    grid-template-columns:1fr;
    gap:48px;
  }
  .co-pitch-img-wrap,
  .ct-faq-head{position:static}
  .co-dims-grid,
  .co-details-grid,
  .co-pillars-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .co-process-steps li{
    grid-template-columns:1fr;
    gap:8px;
  }
  .co-process-num{font-size:48px}
  .co-hero{min-height:60vh}
  .co-hero-foot{gap:24px}
  .co-pitch,
  .co-feature,
  .co-hyper,
  .co-pillars,
  .ct-faq,
  .co-stock,
  .co-process,
  .co-cta{padding:72px 0}
  .ct-faq-q{grid-template-columns:44px 1fr 32px; gap:16px}
  .ct-faq-a{padding-left:60px}
  .co-spec-list li{
    grid-template-columns:1fr;
    gap:4px;
  }
  .co-spec-list li strong{font-size:10.5px}
}

@media (max-width: 600px){
  .co-hero-stat-num{font-size:36px}
  .co-feature-h2,
  .co-hyper-h2,
  .co-pillars-h2,
  .ct-faq-h2,
  .co-stock-h2,
  .co-process-h2{font-size:36px}
  .co-cta-buttons{flex-direction:column; align-items:stretch}
  .co-cta-btn{justify-content:center}
}
