/* ============================================================
   SafeMind Foundation — Design System & Styles
   Brand Colors from SafeMind Logo: Purple #5B2D8E + Teal #3ABFB1
   ============================================================ */

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

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --purple: #5B2D8E;
  --purple-light: #7B4DB0;
  --purple-dark: #3D1A66;
  --purple-faint: #F0EBF8;
  --teal: #3ABFB1;
  --teal-light: #5DD4C8;
  --teal-dark: #29A99D;
  --teal-faint: #E8F8F7;
  --offwhite: #EDEAE5;
  --offwhite-dark: #E2DDD7;
  --white: #FFFFFF;
  --text-dark: #2E1A47;
  --text-mid: #5A4A72;
  --text-light: #8A7AA0;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 50px;

  --shadow-sm: 0 2px 8px rgba(91, 45, 142, 0.08);
  --shadow-md: 0 8px 32px rgba(91, 45, 142, 0.14);
  --shadow-lg: 0 16px 56px rgba(91, 45, 142, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}

/* ─── Utilities ──────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-faint);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}

/* Centered section headers (sample style) */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-title.centered {
  text-align: center;
}

/* Teal gradient underline bar */
.section-underline {
  width: 72px;
  height: 5px;
  background: linear-gradient(to right, var(--purple), var(--teal));
  border-radius: 3px;
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* Scroll-reveal */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.38s var(--transition), transform 0.38s var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(91, 45, 142, 0.09);
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(91, 45, 142, 0.13);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--purple);
  line-height: 1.1;
}

.nav-logo-tagline {
  font-size: 0.68rem;
  color: var(--teal-dark);
  font-style: italic;
  letter-spacing: 0.04em;
}

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

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  background: var(--purple-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(91, 45, 142, 0.28) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #3D1A66 0%, var(--purple) 50%, #1A6B66 100%);
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-circles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
}

.hero-bg-circles span:nth-child(1) {
  width: 560px;
  height: 560px;
  background: var(--teal);
  top: -140px;
  right: -100px;
}

.hero-bg-circles span:nth-child(2) {
  width: 320px;
  height: 320px;
  background: var(--white);
  bottom: -60px;
  left: -60px;
}

.hero-bg-circles span:nth-child(3) {
  width: 160px;
  height: 160px;
  background: var(--teal-light);
  top: 45%;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 130px 0 80px;
}

.hero-text {
  flex: 1;
}

/* New pill badge (non-location) */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: 7px 16px;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease both;
}

.hero-badge-pill i {
  color: var(--teal-light);
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-title span {
  display: block;
  background: linear-gradient(to right, var(--teal-light), #A8F0EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.80);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s ease 0.25s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.35s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(58, 191, 177, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(58, 191, 177, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-secondary:hover {
  background: var(--offwhite);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero logo side */
.hero-logo {
  flex-shrink: 0;
  position: relative;
  animation: fadeInScale 1s ease 0.45s both;
}

.hero-logo img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.28));
  animation: float 5s ease-in-out infinite;
}

/* Floating badge (like sample) */
.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -32px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-badge-sub {
  font-size: 0.74rem;
  color: var(--text-light);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.28);
}

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
  padding: 110px 0;
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-logo-display {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.about-logo-display img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 28px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}

.pillar-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.pillar h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 3px;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── MISSION & VISION ───────────────────────────────────── */
#mission-vision {
  padding: 110px 0;
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  position: relative;
  background: var(--offwhite);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--offwhite-dark);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Decorative corner like sample */
.mv-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-radius: 0 0 0 100%;
  transform: translate(50%, -50%);
  transition: transform var(--transition);
}

.mv-card:hover .mv-card-corner {
  transform: translate(40%, -40%) scale(1.1);
}

.mission-corner {
  background: rgba(91, 45, 142, 0.12);
}

.vision-corner {
  background: rgba(58, 191, 177, 0.14);
}

.mv-card-body {
  position: relative;
  z-index: 1;
}

.mv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.mission-icon {
  background: var(--purple);
  box-shadow: 0 6px 18px rgba(91, 45, 142, 0.3);
}

.vision-icon {
  background: var(--teal-dark);
  box-shadow: 0 6px 18px rgba(41, 169, 157, 0.3);
}

.mv-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.mission-card h3 {
  color: var(--purple);
}

.vision-card h3 {
  color: var(--teal-dark);
}

.mv-card p {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.85;
  font-style: italic;
}

/* ─── SAFEMIND STORIES ───────────────────────────────────── */
#stories {
  padding: 110px 0;
  background: var(--offwhite);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.story-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--offwhite-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.story-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.story-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-faint);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.story-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.story-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
#cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--purple-dark);
  z-index: 0;
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 191, 177, 0.15) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  color: var(--purple-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
  background: var(--offwhite);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #1E0D38;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Brand column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.footer-logo-tagline {
  font-size: 0.7rem;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  font-style: italic;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}

/* Social icons (rounded squares) */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.15rem;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  filter: brightness(1.1);
}

.social-btn.linkedin {
  background: #0077B5;
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Footer columns */
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--teal-light);
}

.footer-contact-list {
  gap: 14px !important;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list li i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.footer-contact-list li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
  word-break: break-word;
  transition: color var(--transition);
}

.footer-contact-list li a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
}

.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* ─── Keyframe Animations ────────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.86);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--offwhite-dark);
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 36px;
    padding: 120px 0 72px;
  }

  .hero-logo img {
    width: 240px;
    height: 240px;
  }

  .hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-floating-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 680px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .mv-card {
    padding: 32px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    padding-bottom: 40px;
  }
}