/* ===================================
   Amina's Learning Center — Styles
   =================================== */

/* --- CSS Custom Properties --- */
:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #FDF6EE;
  --sand-mid: #F5E6D3;
  --sand-dark: #E8C4A8;
  --cream: #FFF9F3;
  --text-dark: #2D1F17;
  --text-mid: #5C4033;
  --text-light: #8B6F5E;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(45, 31, 23, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 31, 23, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 31, 23, 0.12);
  --shadow-card: 0 4px 24px rgba(192, 96, 58, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --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-color: var(--sand);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* --- Utility --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(253, 246, 238, 0.97);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-link:hover { color: var(--terracotta); background: rgba(192, 96, 58, 0.08); }
.nav-cta {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--terracotta);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(192, 96, 58, 0.3);
}
.nav-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(192, 96, 58, 0.35); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(192, 96, 58, 0.08); }
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-mid) 50%, var(--sand-dark) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, var(--terracotta) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, var(--terracotta) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 540px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(192, 96, 58, 0.1);
  border: 1px solid rgba(192, 96, 58, 0.2);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-headline span { color: var(--terracotta); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-number { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--terracotta); }
.hero-stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--sand-dark); }

/* Hero image stack */
.hero-image-col { position: relative; }
.hero-image-stack { position: relative; height: 600px; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 85%;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  width: 55%;
  bottom: 5%; right: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-label {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 6px 14px;
  background: var(--white);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: 0 4px 16px rgba(192, 96, 58, 0.3); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 96, 58, 0.35); }
.btn-outline-light { background: transparent; color: var(--terracotta); border: 2px solid var(--terracotta); }
.btn-outline-light:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--terracotta); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--terracotta); border: 2px solid var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* --- Section shared --- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255, 255, 255, 0.2); color: var(--white); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; }
.section-subtitle.light { color: rgba(255, 255, 255, 0.85); }

/* --- Services --- */
.services {
  padding: 100px 0;
  background: var(--sand);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(192, 96, 58, 0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(192, 96, 58, 0.15); }
.service-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(192, 96, 58, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.service-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(192, 96, 58, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-desc { font-size: 0.98rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.service-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--text-dark);
}

/* --- About --- */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; height: 600px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  pointer-events: none;
}
.about-text { font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-value {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.about-value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 10px;
}

/* --- Why Us --- */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 80%, var(--white) 1px, transparent 1px),
                    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-4px); }
.why-card-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
  line-height: 1;
}
.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card-desc { font-size: 0.98rem; color: rgba(255, 255, 255, 0.8); line-height: 1.75; }

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: var(--sand);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(192, 96, 58, 0.06);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192, 96, 58, 0.12); }
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.2;
  position: absolute;
  top: 20px; left: 28px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { flex-shrink: 0; border-radius: 50%; overflow: hidden; }
.testimonial-name { font-weight: 800; font-size: 1rem; color: var(--text-dark); }
.testimonial-program { font-size: 0.85rem; color: var(--terracotta); font-weight: 700; }

/* --- CTA --- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sand-mid) 0%, var(--sand-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--terracotta) 2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-text { font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Contact --- */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(192, 96, 58, 0.08);
  border-radius: var(--radius-sm);
}
.contact-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 4px; }
.contact-value { font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.6; }
.contact-value a { color: var(--terracotta); transition: var(--transition); }
.contact-value a:hover { color: var(--terracotta-dark); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }

/* Contact form */
.contact-form-wrapper { max-width: 100%; }
.contact-form-card {
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(192, 96, 58, 0.08);
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-form-subtitle { font-size: 0.95rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon { margin-bottom: 16px; }
.form-success h4 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); line-height: 1.7; }

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-icon { flex-shrink: 0; }
.footer-desc { font-size: 0.95rem; line-height: 1.75; max-width: 300px; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--terracotta-light); }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--terracotta-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}
.footer-bottom a { color: var(--terracotta-light); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* --- Scroll Reveal --- */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
  }
  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-col { display: none; }
  .hero-content { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 400px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(192, 96, 58, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
