@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0D9488;
  --primary-hover: #0F766E;
  --primary-light: rgba(13, 148, 136, 0.15);
  --primary-glow: rgba(13, 148, 136, 0.35);
  --secondary: #1E293B;
  --accent: #F59E0B;
  --accent-light: rgba(245, 158, 11, 0.15);
  
  --bg-dark: #0B0F19;
  --bg-card: rgba(17, 24, 39, 0.94);
  --bg-card-hover: rgba(30, 41, 59, 0.96);
  --bg-input: rgba(15, 23, 42, 0.85);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: #0D9488;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: -10%;
  width: 45vw;
  height: 45vh;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -15%;
  right: -10%;
  width: 45vw;
  height: 45vh;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Badges */
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--primary-light);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #2DD4BF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFF;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #0F766E);
  color: #FFF !important;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px var(--primary-glow);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
  background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #FFF !important;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.nav-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.95);
  border-bottom: 1px solid var(--border);
  contain: paint layout;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #047857);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFF;
  background: rgba(255, 255, 255, 0.06);
}

.btn-nav-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #FFF !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px var(--primary-glow);
}

.btn-nav-apply:hover {
  background: var(--primary-hover);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 840px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--primary-light);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #2DD4BF;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(to right, #FFF, #CBD5E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg {
  color: var(--primary);
}

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

/* Interactive Calculator Layout */
.calculator-section {
  padding: 60px 0;
}

.calculator-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-pitch-column h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFF;
}

.calc-pitch-column p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.pitch-points-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pitch-point {
  display: flex;
  gap: 16px;
}

.pitch-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pitch-point h4 {
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 4px;
}

.pitch-point p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Calculator Card */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  contain: paint layout;
}

.calc-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.calc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-icon-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
}

.calc-icon-title p {
  font-size: 12px;
  color: var(--text-muted);
}

.calc-group {
  margin-bottom: 24px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 10px;
}

.calc-value {
  color: #2DD4BF;
  font-weight: 700;
}

.calc-range {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.calc-result-box {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.result-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.result-amount {
  font-size: 22px;
  font-weight: 700;
  color: #FFF;
}

.btn-calc-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: #FFF !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px var(--primary-glow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-calc-apply:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

/* Modules Grid */
.modules-section {
  padding: 70px 0;
}

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

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  contain: paint layout;
}

.module-card:hover {
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.module-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.module-icon.teal { background: var(--primary-light); color: var(--primary); }
.module-icon.navy { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.module-icon.gold { background: var(--accent-light); color: var(--accent); }

.module-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 12px;
}

.module-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.module-features {
  list-style: none;
  margin-bottom: 24px;
}

.module-features li {
  font-size: 13px;
  color: #CBD5E1;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.module-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.module-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.module-link:hover {
  color: #2DD4BF;
  gap: 10px;
}

/* 3-Step Process Section */
.process-section {
  padding: 70px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  contain: paint layout;
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-cta-center {
  text-align: center;
}

/* Editorial Article Content */
.editorial-section {
  padding: 40px 0 80px;
}

.editorial-article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #CBD5E1;
}

.editorial-article-body h2,
.editorial-article-body h3 {
  color: #FFF;
  margin: 28px 0 14px;
  font-weight: 700;
}

.editorial-article-body p {
  margin-bottom: 18px;
}

.editorial-article-body ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

.editorial-article-body li {
  margin-bottom: 8px;
}

/* Payday Loan Application Page & Wizard Form */
.loan-app-main {
  padding: 50px 0 80px;
}

.loan-app-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.security-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--primary-light);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #2DD4BF;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.loan-app-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 12px;
}

.loan-app-header p {
  font-size: 16px;
  color: var(--text-muted);
}

.loan-form-container {
  max-width: 760px;
  margin: 0 auto 60px;
  contain: paint layout;
}

/* Payday Wizard Component */
.payday-form-wizard {
  background: var(--bg-card);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  contain: paint layout;
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 36px;
  padding: 0 10px;
}

.progress-line-bg {
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  border-radius: 2px;
}

.bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-node .number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.step-node .label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.step-node.active .number {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
  box-shadow: 0 0 12px var(--primary-glow);
}

.step-node.active .label {
  color: #FFF;
  font-weight: 600;
}

.form-step-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 6px;
}

.step-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.input-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 6px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: #FFF;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.input-group select option {
  background: #0F172A;
  color: #FFF;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.input-error {
  color: #EF4444;
  font-size: 12px;
  margin-top: 4px;
}

.error-banner {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.action-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn-wizard-next {
  flex: 1;
  background: var(--primary);
  color: #FFF;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: all 0.25s ease;
}

.btn-wizard-next:hover {
  background: var(--primary-hover);
}

.btn-wizard-prev {
  background: rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
}

.btn-wizard-prev:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
}

.loan-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}


.trust-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  contain: paint layout;
}

.trust-icon {
  color: var(--primary);
  margin-bottom: 12px;
}

.trust-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
}

.trust-feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Article Page */
.article-page-main {
  padding: 50px 0 80px;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2DD4BF;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.meta-dot {
  color: var(--text-muted);
}

.meta-date {
  color: var(--text-muted);
}

.article-title {
  font-size: 38px;
  font-weight: 800;
  color: #FFF;
  line-height: 1.2;
  margin-bottom: 28px;
}

.article-body-content {
  font-size: 17px;
  line-height: 1.8;
  color: #CBD5E1;
}

.article-body-content h2,
.article-body-content h3 {
  color: #FFF;
  margin: 32px 0 16px;
  font-weight: 700;
}

.article-body-content p {
  margin-bottom: 20px;
}

.article-cta-box {
  background: var(--bg-card);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  contain: paint layout;
}

.cta-icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 4px;
}

.cta-icon-title p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer */
.footer-wrapper {
  background: rgba(11, 15, 25, 0.98);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 60px;
  contain: paint layout;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 48px;
}

.brand-col .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFF;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #2DD4BF;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #FFF;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-disclaimer-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 30px;
}

.footer-disclaimer-box p {
  font-size: 11px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-legal-links a:hover {
  color: #FFF;
}

/* Responsive */
@media (max-width: 1024px) {
  .calculator-layout-grid {
    grid-template-columns: 1fr;
  }
  .modules-grid,
  .steps-grid,
  .loan-trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-tagline {
    font-size: 16px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .article-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .cta-icon-title {
    flex-direction: column;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
