/* ============================================
   SERENITY SPAS — Final Landing Page CSS
   ============================================ */

:root {
  --clr-primary: #1a3c34;
  --clr-primary-light: #2a5c4e;
  --clr-accent: #c8a96e;
  --clr-accent-light: #dcc48f;
  --clr-accent-dark: #a8893e;
  --clr-bg: #faf8f5;
  --clr-bg-warm: #f3efe8;
  --clr-bg-dark: #0f1f1b;
  --clr-text: #2c2c2c;
  --clr-text-light: #6b6b6b;
  --clr-text-inv: #f0ebe3;
  --clr-white: #ffffff;
  --clr-border: #e0dbd3;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Lato', 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-float: 0 6px 24px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body); color: var(--clr-text); background: var(--clr-bg);
  line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.25; color: var(--clr-primary); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.section-label {
  display: inline-block; font-family: var(--ff-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--clr-accent); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-desc { color: var(--clr-text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto 40px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--radius-pill); font-family: var(--ff-body); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.5px; cursor: pointer; border: none; transition: var(--transition); text-align: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--clr-accent); color: var(--clr-primary); }
.btn-primary:hover { background: var(--clr-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--clr-white); border: 2px solid var(--clr-accent); }
.btn-outline:hover { background: var(--clr-accent); color: var(--clr-primary); }
.btn-dark { background: var(--clr-primary); color: var(--clr-white); }
.btn-dark:hover { background: var(--clr-primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Announcement */
.announcement-bar {
  background: var(--clr-primary); color: var(--clr-accent-light); text-align: center;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
}
.announcement-bar a { color: var(--clr-accent); text-decoration: underline; text-underline-offset: 2px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(250,248,245,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border); transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 700; color: var(--clr-primary); }
.logo-text span { color: var(--clr-accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--clr-text); position: relative; transition: var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--clr-accent); transition: var(--transition); }
.nav-links a:hover { color: var(--clr-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px !important; font-size: 0.85rem !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 110; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--clr-primary); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,31,27,0.88) 0%, rgba(26,60,52,0.80) 50%, rgba(15,38,32,0.90) 100%); }
.hero-bg-pattern { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 20% 50%, var(--clr-accent) 1px, transparent 1px), radial-gradient(circle at 80% 20%, var(--clr-accent) 1px, transparent 1px); background-size: 60px 60px, 80px 80px; z-index: 1; }
.hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%); top: 10%; right: 5%; animation: glowFloat 8s ease-in-out infinite; z-index: 1; }

@keyframes glowFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 20px) scale(1.1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content { color: var(--clr-text-inv); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3); padding: 6px 16px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; color: var(--clr-accent-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; animation: fadeInUp 0.8s ease both; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--clr-white); margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.15s both; }
.hero h1 em { font-style: italic; color: var(--clr-accent); }
.hero-sub { font-size: 1.1rem; color: rgba(240,235,227,0.8); margin-bottom: 32px; max-width: 480px; line-height: 1.8; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.45s both; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 36px; animation: fadeInUp 0.8s ease 0.6s both; }
.hero-stars { display: flex; gap: 2px; }
.hero-stars svg { width: 18px; height: 18px; fill: var(--clr-accent); }
.hero-trust-text { font-size: 0.85rem; color: rgba(240,235,227,0.7); }
.hero-trust-text strong { color: var(--clr-accent-light); }

.hero-visual { position: relative; animation: fadeInUp 1s ease 0.3s both; }
.hero-img-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating-card { position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md); animation: floatCard 4s ease-in-out infinite; }
.hero-floating-card.card-1 { bottom: 20px; left: -30px; }
.hero-floating-card.card-2 { top: 30px; right: -20px; animation-delay: 2s; }
.floating-card-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-text-light); margin-bottom: 4px; }
.floating-card-value { font-family: var(--ff-display); font-size: 1.3rem; color: var(--clr-primary); }

/* Stats */
.stats-bar { background: var(--clr-white); border-bottom: 1px solid var(--clr-border); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 8px 0; border-right: 1px solid var(--clr-border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--clr-primary); }
.stat-number span { color: var(--clr-accent); }
.stat-label { font-size: 0.82rem; color: var(--clr-text-light); font-weight: 500; margin-top: 4px; }

/* Services */
.services { padding: 90px 0; background: var(--clr-bg); }
.services-header { text-align: center; margin-bottom: 50px; }
.services-categories { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.cat-btn { padding: 10px 24px; border-radius: var(--radius-pill); border: 2px solid var(--clr-border); background: var(--clr-white); font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600; color: var(--clr-text); cursor: pointer; transition: var(--transition); }
.cat-btn:hover, .cat-btn.active { border-color: var(--clr-accent); background: var(--clr-accent); color: var(--clr-primary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.service-card { background: var(--clr-white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--clr-border); transition: var(--transition); position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary)); transform: scaleX(0); transform-origin: left; transition: var(--transition); z-index: 2; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--clr-accent); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-img { width: 100%; height: 180px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px 24px 28px; }

.service-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(26,60,52,0.08)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--clr-accent-dark); fill: none; stroke-width: 1.8; }

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--clr-text-light); line-height: 1.65; margin-bottom: 16px; }
.service-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--clr-border); }
.service-duration { font-size: 0.8rem; font-weight: 600; color: var(--clr-text-light); display: flex; align-items: center; gap: 5px; }
.service-duration svg { width: 14px; height: 14px; stroke: var(--clr-text-light); fill: none; stroke-width: 2; }
.service-book-link { font-size: 0.82rem; font-weight: 700; color: var(--clr-accent-dark); transition: var(--transition); }
.service-book-link:hover { color: var(--clr-primary); }

/* Why Us */
.why-us { padding: 90px 0; background: var(--clr-bg-warm); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content { max-width: 520px; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--clr-white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.why-feature-icon svg { width: 20px; height: 20px; stroke: var(--clr-accent-dark); fill: none; stroke-width: 2; }
.why-feature h4 { font-size: 1rem; font-family: var(--ff-body); font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 0.88rem; color: var(--clr-text-light); }

.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-img-box { border-radius: var(--radius); aspect-ratio: 1; overflow: hidden; }
.why-img-box:nth-child(2) { transform: translateY(24px); }
.why-img-box:nth-child(3) { transform: translateY(-24px); }
.why-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.why-img-box:hover img { transform: scale(1.05); }

/* Testimonials */
.testimonials { padding: 90px 0; background: var(--clr-bg); }
.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--clr-white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--clr-border); transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { margin-bottom: 14px; display: flex; gap: 2px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--clr-accent); }
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.7; color: var(--clr-text); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary)); display: flex; align-items: center; justify-content: center; color: var(--clr-white); font-weight: 700; font-size: 0.85rem; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--clr-text-light); }

/* CTA Banner */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--clr-bg-dark) 0%, #1a3c34 100%); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,110,0.12), transparent 70%); top: -100px; left: -100px; }
.cta-banner h2 { color: var(--clr-white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(240,235,227,0.75); font-size: 1.05rem; max-width: 550px; margin: 0 auto 32px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* Location */
.location { padding: 90px 0; background: var(--clr-bg-warm); }
.location-header { text-align: center; margin-bottom: 50px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.location-info { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--clr-white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.info-icon svg { width: 20px; height: 20px; stroke: var(--clr-accent-dark); fill: none; stroke-width: 2; }
.info-item h4 { font-family: var(--ff-body); font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.info-item p, .info-item a { font-size: 0.9rem; color: var(--clr-text-light); }
.info-item a:hover { color: var(--clr-accent-dark); }
.hours-list { display: grid; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--clr-text-light); }
.hours-row strong { color: var(--clr-text); }

/* FAQ */
.faq { padding: 90px 0; background: var(--clr-bg); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--clr-accent); }
.faq-question { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; font-family: var(--ff-body); font-size: 1rem; font-weight: 700; color: var(--clr-text); cursor: pointer; text-align: left; }
.faq-toggle { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: var(--clr-bg-warm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); color: var(--clr-accent-dark); }
.faq-item.active .faq-toggle { background: var(--clr-accent); color: var(--clr-primary); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.92rem; color: var(--clr-text-light); line-height: 1.7; }

/* Footer */
.site-footer { background: var(--clr-bg-dark); color: var(--clr-text-inv); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.9rem; color: rgba(240,235,227,0.6); margin-top: 12px; max-width: 300px; line-height: 1.7; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-socials a:hover { border-color: var(--clr-accent); background: var(--clr-accent); color: var(--clr-primary); }
.footer-socials a:hover svg { fill: var(--clr-primary); }
.footer-socials svg { width: 16px; height: 16px; fill: rgba(240,235,227,0.7); }
.footer-col h4 { font-family: var(--ff-body); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--clr-accent-light); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(240,235,227,0.6); transition: var(--transition); }
.footer-col a:hover { color: var(--clr-accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 0.8rem; color: rgba(240,235,227,0.4); }

/* FABs */
.fab-group { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--clr-white); box-shadow: var(--shadow-float); cursor: pointer; transition: var(--transition); border: none; position: relative; }
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.fab svg { width: 24px; height: 24px; }
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--clr-primary); }
.fab-book { background: var(--clr-accent); color: var(--clr-primary); }
.fab-tooltip { position: absolute; right: 66px; background: var(--clr-bg-dark); color: var(--clr-white); padding: 6px 14px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.fab:hover .fab-tooltip { opacity: 1; }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,31,27,0.97); z-index: 105; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--ff-display); font-size: 1.6rem; color: var(--clr-text-inv); transition: var(--transition); }
.mobile-nav a:hover { color: var(--clr-accent); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { min-height: 80vh; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--clr-border); padding-bottom: 16px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .services, .why-us, .testimonials, .cta-banner, .location, .faq { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 12px auto 0; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .fab-group { bottom: 16px; right: 16px; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 22px; height: 22px; }
  .fab-tooltip { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.6rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}
