/* =====================================================
   PLATFORM PAGES (MT5 + WEBTRADER) — Zevivo Styles
   Color scheme: #1a2830 / #222c30 dark, #FF4521 accent
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --platform-dark: #1a2830;
  --platform-dark2: #222c30;
  --platform-dark3: #2c393e;
  --platform-accent: #FF4521;
  --platform-accent-hover: #e03d1d;
  --platform-light: #f7f9fa;
  --platform-white: #ffffff;
  --platform-text: #2d3748;
  --platform-text-muted: #6b7a8d;
  --platform-border: rgba(255,255,255,0.08);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.platform-hero {
  background: linear-gradient(135deg, #1a2830 0%, #222c30 50%, #1e3040 100%);
  /* LAYOUT SYSTEM: padding-top = var(--hero-padding-top) from layout-system.css */
  /* TRANSITION: was 150px (magic number) — now token-driven */
  padding: var(--hero-padding-top, 175px) 0 70px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.platform-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,69,33,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.platform-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF4521, transparent);
}

.platform-hero-title {
  font-family: 'Catamaran', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.platform-hero-title .text-accent {
  color: #FF4521;
}

.platform-hero-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.platform-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.platform-features-list li {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.platform-features-list li i {
  color: #FF4521;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.platform-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.risk-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ---- Hero Visual: MT5 Device Mockup ---- */
.platform-hero-visual {
  position: relative;
}

.platform-device-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  width: 360px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.device-screen {
  background: #0f1923;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chart-pair {
  font-family: 'Catamaran', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.chart-price {
  font-family: 'Catamaran', sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.chart-change.positive {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  color: #4caf50;
  margin-left: auto;
}

.chart-body {
  height: 100px;
  padding: 0.5rem;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.chart-indicators {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.indicator-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
}

.ind-label {
  color: rgba(255,255,255,0.45);
}

.ind-val {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.ind-val.positive {
  color: #4caf50;
}

.device-platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.badge-mt5 {
  background: #FF4521;
  color: #fff;
  font-family: 'Catamaran', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.badge-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Hero Visual: WebTrader Browser Mockup ---- */
.webtrader-browser-mockup {
  background: #0f1923;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.browser-bar {
  background: #1a2830;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
  display: flex;
  gap: 0.35rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.browser-lock {
  color: #4caf50;
  font-size: 0.65rem;
}

.browser-content {
  padding: 0;
}

.wt-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.wt-pair-select {
  font-family: 'Catamaran', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.82rem;
  cursor: pointer;
}

.wt-tf-btns {
  display: flex;
  gap: 0.2rem;
}

.wt-tf {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  cursor: pointer;
}

.wt-tf.active {
  background: #FF4521;
  color: #fff;
}

.wt-tools {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

.wt-chart-area {
  height: 100px;
  padding: 0.4rem 0.5rem;
}

.wt-chart-svg {
  width: 100%;
  height: 100%;
}

.wt-order-panel {
  padding: 0.6rem 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.wt-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.wt-price-box {
  flex: 1;
  text-align: center;
  padding: 0.4rem;
  border-radius: 6px;
}

.wt-price-box.sell {
  background: rgba(244,67,54,0.15);
  border: 1px solid rgba(244,67,54,0.3);
}

.wt-price-box.buy {
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
}

.wt-price-label {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.1rem;
}

.wt-price-val {
  display: block;
  font-family: 'Catamaran', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.wt-spread-badge {
  background: #FF4521;
  color: #fff;
  font-family: 'Catamaran', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
}

/* =====================================================
   STATS BAR (reuse from markets.css pattern)
   ===================================================== */
.market-stats-bar {
  background: #FF4521;
  padding: 1.2rem 0;
}




/* =====================================================
   DOWNLOAD SECTION (MT5 page)
   ===================================================== */
.platform-download-section {
  background: #f7f9fa;
  padding: var(--space-xxl) 0;
}

.section-label-tag {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF4521;
  margin-bottom: 0.75rem;
}

.section-header {
  font-family: 'Catamaran', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a2830;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-header.white {
  color: #ffffff;
}

.section-subheader {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: #6b7a8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-subheader.white {
  color: rgba(255,255,255,0.7);
}

/* Platform Tab Buttons */
.platform-download-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.platform-tab-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b7a8d;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-tab-btn:hover {
  border-color: #FF4521;
  color: #FF4521;
}

.platform-tab-btn.active {
  background: #FF4521;
  border-color: #FF4521;
  color: #fff;
}

/* Tab Panels */
.platform-tab-panels {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.platform-tab-panel {
  display: none;
  padding: 2.5rem;
}

.platform-tab-panel.active {
  display: block;
}

.panel-title {
  font-family: 'Catamaran', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2830;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.panel-icon {
  color: #FF4521;
}

.panel-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: #6b7a8d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.panel-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.panel-features li {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-features li i {
  color: #FF4521;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Device frame in panel */
.panel-device-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.laptop-frame {
  width: 280px;
}

.laptop-screen {
  background: #0f1923;
  border-radius: 8px 8px 0 0;
  border: 2px solid #2c393e;
  overflow: hidden;
}

.mini-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.6rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mini-pair {
  font-family: 'Catamaran', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.mini-tools {
  display: flex;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
}

.mini-chart-area {
  height: 70px;
  padding: 0.4rem;
}

.mini-chart-svg {
  width: 100%;
  height: 100%;
}

.mini-indicators-bar {
  display: flex;
  gap: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.mi-item {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
}

.laptop-base {
  height: 12px;
  background: #2c393e;
  border-radius: 0 0 4px 4px;
  margin: 0 20px;
}

/* OS Badge (for non-Windows tabs) */
.platform-os-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Catamaran', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.mac-badge { background: linear-gradient(135deg, #2c393e, #1a2830); border: 2px solid rgba(255,255,255,0.1); }
.ios-badge { background: linear-gradient(135deg, #FF4521, #c73516); }
.android-badge { background: linear-gradient(135deg, #3ddc84, #2a9d5c); }
.web-badge { background: linear-gradient(135deg, #FF4521, #1a2830); }

.platform-os-badge i {
  font-size: 3rem;
}

/* =====================================================
   KEY FEATURES SECTION
   ===================================================== */
.platform-features-section {
  background: #ffffff;
  padding: var(--space-xxl) 0;
}







/* =====================================================
   WHY ZEVIVO SECTION (dark)
   ===================================================== */
.platform-why-section {
  background: linear-gradient(135deg, #1a2830 0%, #222c30 100%);
  padding: var(--space-xxl) 0;
  position: relative;
}

.platform-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF4521, transparent);
}

.why-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}







/* =====================================================
   STEPS SECTION
   ===================================================== */
.platform-steps-section {
  background: #f7f9fa;
  padding: var(--space-xxl) 0;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(44,57,62,0.1);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  height: 100%;
  box-shadow: 0 2px 12px rgba(44,57,62,0.06);
}

.step-card:hover {
  border-color: rgba(255,69,33,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,69,33,0.1);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 28px;
  background: #FF4521;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,69,33,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  color: #FF4521;
  font-size: 24px;
}

/* step-badge no longer used — kept for safety */
.step-icon .step-badge {
  display: none;
}

.step-title {
  font-family: 'Catamaran', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2830;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  color: #4c575c;
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.platform-faq-section {
  background: #ffffff;
  padding: var(--space-xxl) 0;
}

.platform-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.platform-faq-item.open {
  border-color: #FF4521;
}

.platform-faq-toggle {
  width: 100%;
  background: #fff;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: 'Catamaran', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2830;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s ease;
}

.platform-faq-toggle:hover {
  background: #f7f9fa;
}

.platform-faq-toggle i {
  color: #FF4521;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.platform-faq-item.open .platform-faq-toggle {
  background: #fff3f0;
  color: #FF4521;
}

.platform-faq-item.open .platform-faq-toggle i {
  transform: rotate(180deg);
}

.platform-faq-body {
  display: none;
  padding: 0 1.5rem 1.2rem;
  background: #fff;
}

.platform-faq-body p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: #6b7a8d;
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.platform-cta-section {
  background: linear-gradient(135deg, #1a2830 0%, #222c30 100%);
  padding: var(--space-xl) 0;
  border-top: 3px solid #FF4521;
}

.cta-title {
  font-family: 'Catamaran', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-title .text-accent {
  color: #FF4521;
}

.cta-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.6;
}

.gap-3 {
  gap: 1rem;
}

/* =====================================================
   WEBTRADER INTRO SECTION
   ===================================================== */
.platform-intro-section {
  background: #f7f9fa;
  padding: var(--space-xxl) 0;
}

.section-body-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.intro-highlight-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #FF4521;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.intro-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.intro-highlight-item > i {
  color: #FF4521;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.intro-highlight-item strong {
  display: block;
  font-family: 'Catamaran', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2830;
  margin-bottom: 0.2rem;
}

.intro-highlight-item span {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  color: #6b7a8d;
  line-height: 1.5;
}

/* WebTrader Access Cards */








.wt-access-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF4521;
  border: 1.5px solid #FF4521;
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.wt-access-btn:hover {
  background: #FF4521;
  color: #fff;
  text-decoration: none;
}

/* =====================================================
   COMPARE TABLE (WebTrader page)
   ===================================================== */
.platform-compare-section {
  background: #ffffff;
  padding: var(--space-xxl) 0;
}

.compare-table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.compare-table thead tr {
  background: #1a2830;
}

.compare-table thead th {
  font-family: 'Catamaran', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  text-align: center;
  border: none;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.highlight-col {
  background: #FF4521;
  color: #fff;
}

.compare-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.15s ease;
}

.compare-table tbody tr:hover {
  background: #f7f9fa;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody td {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: #4a5568;
  padding: 0.9rem 1.5rem;
  text-align: center;
  border: none;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1a2830;
}

.compare-table tbody td.highlight-col {
  background: rgba(255,69,33,0.04);
}

.check-icon {
  color: #4caf50;
  font-size: 1rem;
}

.cross-icon {
  color: #cbd5e0;
  font-size: 1rem;
}

.compare-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: #6b7a8d;
}

.compare-link {
  color: #FF4521;
  font-weight: 600;
  text-decoration: none;
}

.compare-link:hover {
  text-decoration: underline;
  color: #c73516;
}

/* =====================================================
   BUTTON OVERRIDES (ensure consistency)
   ===================================================== */
.dark-bg {
  background: rgba(255,255,255,0.1) !important;
  border: 2px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
}

.dark-bg:hover {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.4) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .platform-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .platform-hero-title {
    font-size: 2.2rem;
  }

  .panel-features {
    grid-template-columns: 1fr;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 767px) {
  .platform-hero-title {
    font-size: 1.9rem;
  }

  .platform-hero-cta {
    flex-direction: column;
  }

  .platform-hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .platform-download-tabs {
    gap: 0.4rem;
  }

  .platform-tab-btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }

  .platform-tab-panel {
    padding: 1.5rem;
  }

  .section-header {
    font-size: 1.7rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .why-cta {
    flex-direction: column;
  }

  .why-cta .btn {
    width: 100%;
    text-align: center;
  }

}
