/* ============================================================
   TheConversions — Shared Stylesheet
   All shared/common CSS extracted from homepage.html
   Used across all pages: navbar, footer, buttons, FAQ, CTA, etc.
============================================================ */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Brand Colors */
  --tc-blue:        #2BA8DE;
  --tc-blue-dark:   #1A85B8;
  --tc-teal:        #3BB8C3;
  --tc-green:       #7DC242;

  /* SEOM-inspired accents */
  --accent-orange:  #FF7F49;
  --accent-yellow:  #F5D23A;
  --accent-purple:  #A095FF;
  --accent-lime:    #A8E853;
  --accent-dark:    #17171B;

  /* Neutrals */
  --white:          #FFFFFF;
  --body-bg:        #FFFFFF;
  --hero-bg:        #EEF7FC;
  --light-bg:       #F0F9FF;
  --peach-bg:       #FCF1EC;
  --border:         #17171B;
  --text-dark:      #17171B;
  --text-body:      #555E6A;
  --text-muted:     #888;

  /* Typography */
  --font-body:      'Manrope', sans-serif;
  --font-heading:   'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-py:     120px;
  --container:      1200px;
  --radius-card:    20px;
  --radius-pill:    50px;
  --border-width:   2px;

  /* Warm Neutral Palette */
  --cream:          #F8F6F2;
  --cream-dark:     #F0EDE7;
  --warm-border:    rgba(0,0,0,0.07);
  --warm-shadow:    rgba(0,0,0,0.06);
}


/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(42px, 5.5vw, 68px); font-weight: 800; }
h2 { font-size: clamp(34px, 4vw, 52px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; }
p  { color: var(--text-body); }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }


/* ============================================================
   CONTAINER & SECTION UTILITIES
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tc-blue);
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-header p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-body);
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: var(--border-width) solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--tc-blue);
  color: var(--white);
  border-color: var(--tc-blue);
}
.btn-primary:hover {
  background: var(--tc-blue-dark);
  border-color: var(--tc-blue-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-arrow::after {
  content: '\2197';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--white);
  font-size: 14px;
}
.btn-outline.btn-arrow::after {
  background: var(--text-dark);
  color: var(--white);
}
.btn-primary.btn-arrow::after {
  background: var(--white);
  color: var(--tc-blue);
}
.btn-outline.btn-hero-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline.btn-hero-light:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}
.btn-outline.btn-hero-light.btn-arrow::after {
  background: var(--white);
  color: var(--text-dark);
}


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 0 24px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(23,23,27,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.navbar-logo img {
  height: 48px;
  width: auto;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-cta .btn {
  padding: 12px 24px;
  font-size: 13px;
}

/* Nav links — top-level */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  transition: color 0.2s;
  padding: 26px 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--tc-blue);
}
.nav-link .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s;
}
.nav-item:hover .chevron {
  transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown — standard */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(23,23,27,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-item:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.nav-dropdown a:hover {
  background: rgba(43,168,222,0.12);
  color: var(--tc-blue);
}
.nav-dropdown .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}

/* Mega menu — services */
.mega-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(23,23,27,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.nav-item:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.mega-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tc-blue);
  margin-bottom: 16px;
  padding-left: 14px;
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.mega-col a:hover {
  background: rgba(43,168,222,0.1);
  color: var(--white);
}
.mega-col a .m-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}
.mega-col .pillar-link {
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}
.mega-col .pillar-link:hover {
  color: var(--tc-blue);
  background: rgba(43,168,222,0.1);
}
.mega-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 14px;
}
.mega-cta-bar {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-cta-bar p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.mega-cta-bar .btn {
  padding: 10px 20px;
  font-size: 13px;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23,23,27,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: 90px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu .mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu .mob-link:hover {
  background: rgba(255,255,255,0.05);
}
.mobile-menu .mob-link .mob-chevron {
  font-size: 14px;
  transition: transform 0.3s;
  color: rgba(255,255,255,0.4);
}
.mobile-menu .mob-link.active .mob-chevron {
  transform: rotate(180deg);
}
.mobile-menu .mob-sub {
  display: none;
  padding: 4px 0 8px 16px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu .mob-sub.open {
  display: flex;
}
.mobile-menu .mob-sub a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-menu .mob-sub a:hover {
  background: rgba(43,168,222,0.1);
  color: var(--tc-blue);
}
.mobile-menu .mob-sub .mob-sub-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tc-blue);
  padding: 12px 16px 4px;
}
.mobile-menu .mob-cta {
  margin-top: 20px;
  padding: 0 16px;
}
.mobile-menu .mob-cta .btn {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   PAGE HERO — Dark hero with breadcrumb (inner pages)
============================================================ */
.page-hero {
  background: var(--accent-dark);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,168,222,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,149,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero .hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.page-hero .hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.page-hero .hero-breadcrumb a:hover {
  color: var(--tc-blue);
}
.page-hero .hero-breadcrumb .sep {
  margin: 0 4px;
}
.page-hero .section-label {
  color: var(--tc-blue);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}
.page-hero .hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.page-hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.page-hero .btn-outline:hover {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
}

/* Breadcrumb (rendered before .page-hero, visually overlaid on dark hero) */
.breadcrumb {
  background: var(--accent-dark);
  padding: 90px 24px 0;
  margin: 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 14px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: rgba(255,255,255,0.3);
}
.breadcrumb li a {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb li a:hover {
  color: var(--tc-blue);
}
.breadcrumb li.current {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
/* When breadcrumb is present, reduce hero top padding to avoid double gap */
.breadcrumb + .page-hero {
  padding-top: 40px;
}


/* ============================================================
   MARQUEE / CLIENT STRIP
============================================================ */
.marquee-section {
  background: var(--text-dark);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 14px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.marquee-item:hover {
  background: var(--tc-blue);
  border-color: var(--tc-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc-blue);
  transition: background 0.3s;
}
.marquee-item:hover .marquee-dot {
  background: var(--white);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   FAQ / ACCORDION
============================================================ */
.faq-section {
  padding: var(--section-py) 24px;
  background: var(--white);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header h2 {
  color: var(--text-dark);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--warm-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:has(.faq-question.active) {
  border-color: rgba(43,168,222,0.3);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.2s;
}
.faq-question:hover {
  background: var(--cream-dark);
}
.faq-question.active {
  background: var(--tc-blue);
  color: var(--white);
}
.faq-toggle {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-question.active .faq-toggle {
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 200px;
  padding: 16px 28px 22px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-body);
}


/* ============================================================
   CTA BANNER — Dark gradient with glow
============================================================ */
.cta-section {
  padding: var(--section-py) 24px;
  background: var(--cream);
}
.cta-card {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, #1a3a5c 0%, #2a1f4e 50%, #1a3a5c 100%);
  border-radius: 28px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,168,222,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,149,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-card p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-card .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
  font-size: 16px;
  padding: 18px 40px;
  position: relative;
  z-index: 1;
}
.cta-card .btn-primary:hover {
  background: var(--tc-blue);
  color: var(--white);
  border-color: var(--tc-blue);
}
.cta-card .section-label {
  position: relative;
  z-index: 1;
  color: var(--tc-blue);
}


/* ============================================================
   FOOTER — Dark, anchors the page
============================================================ */
footer {
  background: var(--accent-dark);
  padding: 72px 24px 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--tc-blue);
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.footer-contact-item strong {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--tc-blue);
  border-color: var(--tc-blue);
  color: var(--white);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation (used by hero labels) */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}


/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   RESPONSIVE — 768px (Tablet)
============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 72px;
  }

  /* Navbar: hide desktop nav, show hamburger */
  .navbar-nav {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .navbar-cta .btn {
    display: none;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* CTA */
  .cta-card {
    padding: 48px 28px;
  }
}


/* ============================================================
   RESPONSIVE — 480px (Mobile)
============================================================ */
@media (max-width: 480px) {
  /* Smaller adjustments handled by page-specific styles */
}
