/* ============================================================
   NutriWellnessFlow — Custom Stylesheet
   Health & Wellness theme (greens / teals)
   Requires: bootstrap.min.css
   ============================================================ */

:root {
  --nw-primary: #16a34a;
  --nw-primary-dark: #15803d;
  --nw-deep: #14532d;
  --nw-teal: #0d9488;
  --nw-dark: #0f2e22;
  --nw-ink: #1e293b;
  --nw-body: #475569;
  --nw-soft: #f4faf6;
  --nw-mint: #ecfdf5;
  --nw-line: #e2e8f0;
  --nw-grad: linear-gradient(135deg, #16a34a 0%, #0d9488 100%);
  --nw-shadow-sm: 0 .3rem 1rem rgba(15, 46, 34, .08);
  --nw-shadow: 0 1rem 2.5rem rgba(15, 46, 34, .14);
  --nw-radius: 1.1rem;
  --bs-link-color: #15803d;
  --bs-link-hover-color: #14532d;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--nw-body);
  overflow-x: hidden;
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 { color: var(--nw-ink); font-weight: 700; }
a { text-decoration: none; }
img { max-width: 100%; }

::selection { background: rgba(22,163,74,.2); }

/* ---------- Generic section helpers ---------- */
.section { padding: 5.5rem 0; }
.section-sm { padding: 4rem 0; }
.bg-nw-soft { background: var(--nw-soft); }

.eyebrow {
  display: inline-block;
  background: var(--nw-mint);
  color: var(--nw-primary-dark);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .76rem;
  padding: .42rem 1.05rem;
  border-radius: 50rem;
  margin-bottom: 1rem;
}
.section-heading { font-size: clamp(1.7rem, 3.2vw, 2.35rem); margin-bottom: .85rem; }
.section-sub { max-width: 660px; margin: 0 auto; font-size: 1.05rem; }
.text-grad { background: var(--nw-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn-nw {
  background: var(--nw-grad);
  color: #fff;
  border: none;
  border-radius: 50rem;
  padding: .82rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: 0 .55rem 1.3rem rgba(22,163,74,.28);
  transition: all .3s ease;
}
.btn-nw:hover, .btn-nw:focus {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 .85rem 1.8rem rgba(22,163,74,.38);
}
.btn-nw-outline {
  background: transparent;
  color: var(--nw-primary-dark);
  border: 2px solid var(--nw-primary);
  border-radius: 50rem;
  padding: .76rem 1.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: all .3s ease;
}
.btn-nw-outline:hover, .btn-nw-outline:focus {
  background: var(--nw-grad); color: #fff; border-color: transparent;
  transform: translateY(-2px); box-shadow: 0 .8rem 1.6rem rgba(22,163,74,.3);
}
.btn-nw-light {
  background: #fff; color: var(--nw-deep); border: none;
  border-radius: 50rem; padding: .85rem 2.1rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: 0 .5rem 1.4rem rgba(0,0,0,.16); transition: all .3s ease;
}
.btn-nw-light:hover { color: var(--nw-teal); transform: translateY(-2px); box-shadow: 0 .9rem 1.9rem rgba(0,0,0,.2); }
.btn-outline-light-pill {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.75);
  border-radius: 50rem; padding: .79rem 2rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .5rem; transition: all .3s ease;
}
.btn-outline-light-pill:hover { background: #fff; color: var(--nw-deep); border-color: #fff; transform: translateY(-2px); }
.btn-nw-sm { padding: .5rem 1.25rem; font-size: .92rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--nw-dark); color: #cdeadb; font-size: .86rem; padding: .5rem 0; }
.topbar a { color: #cdeadb; transition: color .25s; }
.topbar a:hover { color: #fff; }
.topbar svg { margin-right: .35rem; vertical-align: -3px; }

/* ---------- Navbar ---------- */
.navbar { padding: .85rem 0; background: #fff; transition: box-shadow .3s, padding .3s; }
.navbar.scrolled { box-shadow: 0 .4rem 1.4rem rgba(15,46,34,.1); padding: .55rem 0; }
.navbar-brand { font-weight: 800; font-size: 1.3rem; color: var(--nw-deep); display: flex; align-items: center; }
.brand-icon {
  width: 40px; height: 40px; border-radius: 13px; background: var(--nw-grad);
  display: inline-flex; align-items: center; justify-content: center; margin-right: .6rem;
  box-shadow: 0 .35rem .9rem rgba(22,163,74,.35);
}
.navbar-nav .nav-link {
  font-weight: 600; color: var(--nw-ink); margin: 0 .3rem;
  padding: .5rem .7rem !important; position: relative; transition: color .25s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--nw-primary); }
.navbar-nav .nav-link.active::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .15rem;
  height: 3px; border-radius: 3px; background: var(--nw-grad);
}
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: 0 0 0 .18rem rgba(22,163,74,.25); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  padding: 5.5rem 0 5rem;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0;
}
.hero::before { width: 420px; height: 420px; background: rgba(22,163,74,.12); top: -140px; left: -120px; }
.hero::after { width: 380px; height: 380px; background: rgba(13,148,136,.12); bottom: -140px; right: -100px; }
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border: 1px solid var(--nw-line); border-radius: 50rem;
  padding: .45rem 1.1rem; font-size: .85rem; font-weight: 600; color: var(--nw-deep);
  box-shadow: var(--nw-shadow-sm); margin-bottom: 1.25rem;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--nw-primary); box-shadow: 0 0 0 4px rgba(22,163,74,.18); }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.15rem); line-height: 1.15; margin-bottom: 1.15rem; }
.hero .lead { font-size: 1.1rem; max-width: 540px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem; font-weight: 600; color: var(--nw-ink); font-size: .95rem; }
.hero-trust svg { vertical-align: -4px; margin-right: .35rem; }

.hero-img-wrap { position: relative; }
.hero-img-wrap::before {
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 58%; height: 58%;
  border-radius: 2rem; background: var(--nw-grad); opacity: .14; z-index: 0;
}
.hero-img {
  position: relative; z-index: 1; width: 100%; height: 470px; object-fit: cover;
  border-radius: 2rem; box-shadow: var(--nw-shadow);
}
.hero-float {
  position: absolute; z-index: 2; background: #fff; border-radius: 1rem;
  box-shadow: var(--nw-shadow); padding: .8rem 1.15rem;
  display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--nw-ink);
  animation: floaty 4s ease-in-out infinite;
}
.hero-float small { display: block; color: var(--nw-body); font-weight: 500; }
.hero-float .f-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--nw-mint); color: var(--nw-primary-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-1 { top: 1.4rem; left: -1.4rem; }
.hero-float-2 { bottom: 1.6rem; right: -1rem; animation-delay: 1.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Stats band ---------- */
.stats-band { background: var(--nw-grad); color: #fff; padding: 3rem 0; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.08); top: -160px; right: 6%; }
.stats-band::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.07); bottom: -140px; left: 4%; }
.stat-num { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; color: #fff; }
.stat-label { color: rgba(255,255,255,.88); font-weight: 500; }

/* ---------- About block (home/about) ---------- */
.about-img-wrap { position: relative; }
.about-img { border-radius: 2rem; box-shadow: var(--nw-shadow); width: 100%; height: 460px; object-fit: cover; }
.img-badge {
  position: absolute; bottom: -22px; left: -14px; background: #fff; border-radius: 1.2rem;
  box-shadow: var(--nw-shadow); padding: 1rem 1.4rem; display: flex; align-items: center; gap: .85rem;
}
.img-badge .b-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--nw-grad); color: #fff; display: flex; align-items: center; justify-content: center; }
.img-badge .b-num { font-size: 1.45rem; font-weight: 800; color: var(--nw-deep); line-height: 1.1; }
.img-badge small { color: var(--nw-body); font-weight: 600; }

.tick-list { list-style: none; padding: 0; margin: 0 0 1.8rem; }
.tick-list li { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .8rem; font-weight: 500; color: var(--nw-ink); }
.tick-list .t-ic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--nw-mint); color: var(--nw-primary-dark); display: inline-flex; align-items: center; justify-content: center; margin-top: .1rem; }

/* ---------- Cards: services / blog ---------- */
.service-card, .blog-card {
  border: none; border-radius: var(--nw-radius); box-shadow: var(--nw-shadow-sm);
  overflow: hidden; height: 100%; background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover, .blog-card:hover { transform: translateY(-8px); box-shadow: var(--nw-shadow); }
.card-img-wrap { height: 215px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .card-img-wrap img, .blog-card:hover .card-img-wrap img { transform: scale(1.07); }
.service-card .card-body, .blog-card .card-body { padding: 1.5rem 1.5rem 1.65rem; }
.service-card .card-title, .blog-card .card-title { font-size: 1.18rem; margin-bottom: .55rem; }
.service-card .card-text, .blog-card .card-text { font-size: .95rem; margin-bottom: 1.15rem; }
.read-more { font-weight: 700; color: var(--nw-primary-dark); display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s, color .25s; }
.read-more:hover { gap: .7rem; color: var(--nw-teal); }

/* ---------- Features (Why Choose Us) ---------- */
.feature-card {
  background: #fff; border-radius: var(--nw-radius); box-shadow: var(--nw-shadow-sm);
  padding: 2rem 1.6rem; height: 100%; transition: transform .35s ease, box-shadow .35s ease;
  border-top: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--nw-shadow); border-top-color: var(--nw-primary); }
.feature-icon {
  width: 62px; height: 62px; border-radius: 18px; background: var(--nw-grad); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  box-shadow: 0 .45rem 1.1rem rgba(22,163,74,.3); transition: transform .35s ease;
}
.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.06); }
.feature-card h5 { font-size: 1.12rem; margin-bottom: .55rem; }
.feature-card p { font-size: .94rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff; border-radius: var(--nw-radius); box-shadow: var(--nw-shadow-sm);
  padding: 2rem 1.8rem; height: 100%; position: relative; transition: transform .35s ease, box-shadow .35s ease;
}
.testi-card:hover { transform: translateY(-7px); box-shadow: var(--nw-shadow); }
.testi-card .q-ic { color: rgba(22,163,74,.28); margin-bottom: 1rem; }
.testi-card .t-text { font-style: italic; color: var(--nw-body); margin-bottom: 1.4rem; }
.testi-foot { display: flex; align-items: center; gap: .9rem; }
.avatar-circle {
  width: 54px; height: 54px; border-radius: 50%; background: var(--nw-grad); color: #fff;
  font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0; box-shadow: 0 .35rem .9rem rgba(22,163,74,.3);
}
.testi-foot .t-name { font-weight: 700; color: var(--nw-ink); margin: 0; }
.testi-foot .t-role { font-size: .85rem; color: var(--nw-body); margin: 0; }
.stars svg { margin-right: .12rem; }

/* ---------- FAQ ---------- */
.faq-wrap .accordion-item {
  border: none; border-radius: var(--nw-radius) !important; box-shadow: var(--nw-shadow-sm);
  margin-bottom: 1rem; overflow: hidden;
}
.faq-wrap .accordion-button { font-weight: 600; color: var(--nw-ink); padding: 1.15rem 1.4rem; background: #fff; }
.faq-wrap .accordion-button:not(.collapsed) { background: var(--nw-mint); color: var(--nw-deep); box-shadow: none; }
.faq-wrap .accordion-button:focus { box-shadow: none; }
.faq-wrap .accordion-body { padding: 1.15rem 1.4rem; background: #fff; color: var(--nw-body); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--nw-grad); color: #fff; border-radius: 2rem;
  padding: 4.2rem 2rem; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--nw-shadow);
}
.cta-band::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(255,255,255,.1); top: -150px; right: -90px; }
.cta-band::after { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,255,255,.08); bottom: -130px; left: -70px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.3rem); position: relative; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 590px; margin: 0 auto 1.8rem; position: relative; }
.cta-band .btn-zone { position: relative; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  background: var(--nw-grad); color: #fff; padding: 4.4rem 0; position: relative; overflow: hidden;
}
.page-banner::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.09); top: -160px; right: -80px; }
.page-banner::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(255,255,255,.07); bottom: -120px; left: -60px; }
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: .8rem; }
.page-banner .breadcrumb { margin: 0; --bs-breadcrumb-divider-color: rgba(255,255,255,.65); }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.85); font-weight: 500; }
.page-banner .breadcrumb-item a:hover { color: #fff; }
.page-banner .breadcrumb-item.active { color: #d9f5e5; font-weight: 600; }

/* ---------- Info tiles (contact) ---------- */
.info-tile {
  background: #fff; border-radius: var(--nw-radius); box-shadow: var(--nw-shadow-sm);
  padding: 1.5rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start; height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-tile:hover { transform: translateY(-4px); box-shadow: var(--nw-shadow); }
.info-tile .i-ic {
  width: 50px; height: 50px; border-radius: 14px; background: var(--nw-grad); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-tile h6 { margin-bottom: .3rem; font-size: 1.02rem; }
.info-tile p { margin: 0; font-size: .93rem; }
.info-tile a { color: var(--nw-body); }
.info-tile a:hover { color: var(--nw-primary-dark); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border-radius: 1.4rem; box-shadow: var(--nw-shadow-sm); padding: 2.4rem 2.2rem; height: 100%;
}
.form-control, .form-select {
  border-radius: .8rem; padding: .72rem 1rem; border: 1.5px solid var(--nw-line);
  font-size: .97rem; color: var(--nw-ink);
}
.form-control:focus, .form-select:focus {
  border-color: var(--nw-primary); box-shadow: 0 0 0 .22rem rgba(22,163,74,.13);
}
.form-label { font-weight: 600; color: var(--nw-ink); font-size: .93rem; }
.form-check-input:checked { background-color: var(--nw-primary); border-color: var(--nw-primary); }
.form-check-input:focus { box-shadow: 0 0 0 .2rem rgba(22,163,74,.18); border-color: var(--nw-primary); }
.form-note { font-size: .85rem; color: var(--nw-body); }

/* ---------- Legal pages ---------- */
.legal-card { background: #fff; border-radius: 1.4rem; box-shadow: var(--nw-shadow-sm); padding: 2.8rem 2.6rem; }
.legal-card h2 { font-size: 1.4rem; margin-top: 2.1rem; margin-bottom: .8rem; color: var(--nw-deep); }
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p, .legal-card li { font-size: .97rem; }
.legal-card ul li, .legal-card ol li { margin-bottom: .45rem; }
.updated-pill { display: inline-block; background: var(--nw-mint); color: var(--nw-primary-dark); border-radius: 50rem; padding: .35rem 1rem; font-size: .84rem; font-weight: 600; margin-bottom: 1.6rem; }
.contact-block { background: var(--nw-mint); border-radius: 1rem; padding: 1.3rem 1.5rem; margin-top: .8rem; }
.contact-block p { margin: .25rem 0; }

/* ---------- Blog single ---------- */
.post-hero-img { border-radius: 1.6rem; box-shadow: var(--nw-shadow); width: 100%; height: 420px; object-fit: cover; margin-bottom: 2rem; }
.post-body h2 { font-size: 1.45rem; margin-top: 2rem; margin-bottom: .8rem; color: var(--nw-deep); }
.post-body p { font-size: 1rem; line-height: 1.75; }
.post-body ul li, .post-body ol li { margin-bottom: .5rem; }
.post-cta {
  background: var(--nw-mint); border-radius: 1.4rem; padding: 2rem 2.2rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.post-cta h4 { margin-bottom: .3rem; }
.post-cta p { margin: 0; }

/* ---------- Subscribe / Unsubscribe ---------- */
.auth-side-list li { margin-bottom: 1rem; font-weight: 500; color: var(--nw-ink); }
.big-icon-circle {
  width: 84px; height: 84px; border-radius: 50%; background: var(--nw-mint); color: var(--nw-primary-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem;
}

/* ---------- Footer ---------- */
.footer { background: var(--nw-dark); color: #a9cfc0; padding-top: 4.5rem; }
.footer .footer-brand { display: flex; align-items: center; font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 1rem; }
.footer h5 { color: #fff; font-size: 1.08rem; margin-bottom: 1.2rem; position: relative; padding-bottom: .7rem; }
.footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; border-radius: 3px; background: var(--nw-primary); }
.footer a { color: #a9cfc0; transition: color .25s, padding-left .25s; }
.footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { display: inline-flex; align-items: center; gap: .45rem; }
.footer-links a:hover { padding-left: .25rem; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: .15rem; color: var(--nw-primary); }
.footer-disclaimer { font-size: .85rem; color: #7fa894; border-top: 1px solid rgba(255,255,255,.09); margin-top: 3rem; padding: 1.3rem 0 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 1.3rem; padding: 1.25rem 0; font-size: .9rem; }
.social-btn {
  width: 39px; height: 39px; border-radius: 50%; background: rgba(255,255,255,.09);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  margin-right: .55rem; transition: all .3s ease;
}
.social-btn:hover { background: var(--nw-grad); color: #fff !important; transform: translateY(-3px); padding-left: 0 !important; }
.footer-news .input-group { border-radius: 50rem; overflow: hidden; box-shadow: 0 .4rem 1rem rgba(0,0,0,.18); }
.footer-news .form-control { border: none; border-radius: 0; padding: .68rem 1.1rem; font-size: .92rem; }
.footer-news .btn { background: var(--nw-primary); color: #fff; border: none; padding: .68rem 1.2rem; }
.footer-news .btn:hover { background: var(--nw-primary-dark); }
.footer-news-msg { font-size: .85rem; margin-top: .6rem; min-height: 1.2em; }

/* ---------- Misc ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.back-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 1050;
  width: 46px; height: 46px; border-radius: 50%; background: var(--nw-grad); color: #fff;
  border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 .5rem 1.2rem rgba(22,163,74,.4); opacity: 0; visibility: hidden;
  transition: all .35s ease;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); }

.divider-soft { border: none; border-top: 1px solid var(--nw-line); margin: 2.6rem 0; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
  .section { padding: 4.2rem 0; }
  .hero { padding: 4rem 0 3.6rem; text-align: center; }
  .hero .lead { margin: 0 auto; }
  .hero-trust { justify-content: center; }
  .hero-img { height: 380px; margin-top: 2.6rem; }
  .hero-float-1 { left: .6rem; }
  .hero-float-2 { right: .6rem; }
  .about-img { height: 380px; }
  .img-badge { left: .6rem; }
  .navbar .btn-nw { margin-top: .6rem; }
}
@media (max-width: 575.98px) {
  .form-card, .legal-card { padding: 1.8rem 1.4rem; }
  .cta-band { padding: 3rem 1.3rem; }
  .hero-img { height: 300px; }
  .post-hero-img { height: 240px; }
}
