/* ==========================================================================
   LWR Helpline - Fresh Start Style #8 + Sidebar Navigation Architecture #4
   Colors: Mint #3EB489, Soft Yellow #F7DC6F, Sky Blue #85C1E9
   Fonts: Quicksand (headings), Nunito (body)
   ========================================================================== */

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

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

body {
  font-family: 'Nunito', 'Open Sans', sans-serif;
  color: #2E4A3E;
  background: #FEFFFE;
  line-height: 1.7;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Comfortaa', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A3A2A;
}

h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.9rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

a { color: #3EB489; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #2D8A68; }

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

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.35rem; }

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: #3EB489;
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 16px 0;
}
.skip-nav:focus { top: 0; }

/* --- Top Bar --- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(135deg, #3EB489, #85C1E9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(62, 180, 137, 0.15);
}

.top-bar__logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.top-bar__logo a { color: #fff; }
.top-bar__logo a:hover { color: #F7DC6F; }

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar__phone {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}
.top-bar__phone a { color: #fff; }
.top-bar__phone a:hover { color: #F7DC6F; }

.top-bar__cta {
  background: #F7DC6F;
  color: #2E4A3E;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.top-bar__cta:hover {
  background: #fff;
  color: #3EB489;
  transform: translateY(-1px);
}

.top-bar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.top-bar__hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Sidebar --- */
.sidebar {
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #F0FFF4;
  border-right: 1px solid rgba(62, 180, 137, 0.15);
  overflow-y: auto;
  padding: 1.5rem 0;
  z-index: 900;
  transition: transform 0.3s ease;
}

.sidebar__nav { list-style: none; padding: 0; margin: 0; }

.sidebar__item { border-bottom: 1px solid rgba(62, 180, 137, 0.08); }

.sidebar__link {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  color: #2E4A3E;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  gap: 0.6rem;
}
.sidebar__link:hover {
  background: rgba(62, 180, 137, 0.1);
  color: #3EB489;
  padding-left: 1.75rem;
}
.sidebar__link--active {
  background: rgba(62, 180, 137, 0.15);
  color: #3EB489;
  border-left: 4px solid #3EB489;
  font-weight: 700;
}

.sidebar__link svg,
.sidebar__link .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Expandable submenu */
.sidebar__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(62, 180, 137, 0.04);
}
.sidebar__item--expanded .sidebar__submenu { max-height: 500px; }

.sidebar__sublink {
  display: block;
  padding: 0.55rem 1.5rem 0.55rem 3rem;
  color: #4A6B5A;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}
.sidebar__sublink:hover { color: #3EB489; background: rgba(62, 180, 137, 0.08); }

.sidebar__toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0.25rem;
  color: #2E4A3E;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}
.sidebar__item--expanded .sidebar__toggle { transform: rotate(180deg); }

/* --- Main Content --- */
.main-content {
  margin-left: 280px;
  margin-top: 56px;
  flex: 1;
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  width: 100%;
  padding: 2rem 3rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin: 1.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62, 180, 137, 0.75), rgba(133, 193, 233, 0.6));
  border-radius: 20px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  max-width: 700px;
}
.hero__title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero__subtitle {
  color: rgba(255,255,255,0.95);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Quicksand', sans-serif;
}
.btn--primary {
  background: #3EB489;
  color: #fff;
}
.btn--primary:hover { background: #2D8A68; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(62,180,137,0.3); }

.btn--secondary {
  background: #F7DC6F;
  color: #2E4A3E;
}
.btn--secondary:hover { background: #f0d04a; color: #2E4A3E; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: #3EB489;
  border: 2px solid #3EB489;
}
.btn--outline:hover { background: #3EB489; color: #fff; }
.hero .btn--outline {
  color: #fff;
  border-color: #fff;
}
.hero .btn--outline:hover { background: #fff; color: #3EB489; }

.btn--phone {
  background: #F7DC6F;
  color: #2E4A3E;
}
.btn--phone:hover { background: #fff; color: #3EB489; }

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 1rem;
  background: #F0FFF4;
  border-radius: 16px;
  margin: 0 1.5rem 2rem;
  flex-wrap: wrap;
}
.trust-bar__item {
  text-align: center;
  font-weight: 600;
  color: #2E4A3E;
  font-size: 0.92rem;
}
.trust-bar__icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.3rem;
}

/* --- Section Styles --- */
.section {
  padding: 2.5rem 0;
}
.section--alt { background: #F0FFF4; border-radius: 16px; padding: 2.5rem 2rem; margin: 1rem 0; }
.section__title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3EB489, #85C1E9);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}
.section__subtitle {
  text-align: center;
  color: #5A7A6A;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(62, 180, 137, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(62, 180, 137, 0.1);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(62, 180, 137, 0.15); }

.card__image { width: 100%; height: 200px; object-fit: cover; }

.card__body { padding: 1.25rem; }
.card__title { font-size: 1.15rem; margin-bottom: 0.5rem; color: #1A3A2A; }
.card__text { font-size: 0.92rem; color: #5A7A6A; margin-bottom: 0.75rem; }
.card__link {
  color: #3EB489;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.card__link:hover { color: #2D8A68; }

/* --- Features List --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.feature {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(62, 180, 137, 0.1);
  transition: all 0.3s ease;
}
.feature:hover { box-shadow: 0 6px 20px rgba(62, 180, 137, 0.12); }
.feature__icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.feature__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: #1A3A2A; }
.feature__text { font-size: 0.88rem; color: #5A7A6A; }

/* --- Testimonials --- */
.testimonials { margin: 1.5rem 0; }
.testimonial {
  background: #F0FFF4;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid #3EB489;
  position: relative;
}
.testimonial__quote {
  font-style: italic;
  font-size: 1rem;
  color: #2E4A3E;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.testimonial__quote::before { content: '\201C'; font-size: 2rem; color: #3EB489; position: absolute; top: 0.5rem; left: 1rem; opacity: 0.3; }
.testimonial__author {
  font-weight: 700;
  color: #3EB489;
  font-size: 0.9rem;
}

/* --- FAQ Accordion --- */
.faq-list { margin: 1.5rem 0; }
.faq-item {
  border: 1px solid rgba(62, 180, 137, 0.15);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A3A2A;
  text-align: left;
  transition: background 0.2s ease;
}
.faq-question:hover { background: #F0FFF4; }
.faq-question__icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  color: #3EB489;
}
.faq-item--open .faq-question__icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.faq-item--open .faq-answer { max-height: 500px; padding: 0 1.25rem 1.25rem; }
.faq-answer p { font-size: 0.93rem; color: #4A6B5A; }

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(62, 180, 137, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(62, 180, 137, 0.1);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(62, 180, 137, 0.15); }
.blog-card__image { width: 100%; height: 180px; object-fit: cover; }
.blog-card__body { padding: 1.25rem; }
.blog-card__category {
  display: inline-block;
  background: rgba(62, 180, 137, 0.12);
  color: #3EB489;
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.blog-card__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card__excerpt { font-size: 0.88rem; color: #5A7A6A; margin-bottom: 0.75rem; }
.blog-card__date { font-size: 0.8rem; color: #8A9A8F; }

/* --- Contact Info --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.contact-card {
  background: #F0FFF4;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(62, 180, 137, 0.1);
}
.contact-card__icon { font-size: 2rem; margin-bottom: 0.6rem; }
.contact-card__title { font-weight: 700; margin-bottom: 0.3rem; color: #1A3A2A; font-size: 1rem; }
.contact-card__text { color: #5A7A6A; font-size: 0.92rem; }
.contact-card__text a { color: #3EB489; font-weight: 600; }

/* --- Map --- */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  margin: 1.5rem 0;
  border: 1px solid rgba(62, 180, 137, 0.15);
}
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* --- Insurance Grid --- */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}
.insurance-tag {
  background: #F0FFF4;
  border: 1px solid rgba(62, 180, 137, 0.2);
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2E4A3E;
}

/* --- Steps / Timeline --- */
.steps {
  margin: 1.5rem 0;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.step__number {
  counter-increment: step;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3EB489, #85C1E9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.step__content h3 { margin-bottom: 0.3rem; }
.step__content p { font-size: 0.92rem; color: #5A7A6A; margin-bottom: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #3EB489, #85C1E9);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
}
.cta-banner__title { color: #fff; font-size: 1.8rem; margin-bottom: 0.6rem; }
.cta-banner__text { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 1.25rem; }
.cta-banner .btn--secondary { font-size: 1.05rem; padding: 0.85rem 2rem; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: #8A9A8F;
  margin-bottom: 1rem;
}
.breadcrumbs a { color: #3EB489; }
.breadcrumbs span { margin: 0 0.4rem; }

/* --- Content Images --- */
.content-image {
  border-radius: 16px;
  overflow: hidden;
  margin: 1.5rem 0;
}
.content-image img { width: 100%; height: auto; }

/* --- Image Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 1.5rem 0;
}
.two-col--reverse .two-col__text { order: 2; }
.two-col--reverse .two-col__image { order: 1; }
.two-col__image { border-radius: 16px; overflow: hidden; }
.two-col__image img { width: 100%; height: auto; }

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat {
  text-align: center;
  padding: 1.25rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(62, 180, 137, 0.1);
}
.stat__number { font-size: 2rem; font-weight: 700; color: #3EB489; font-family: 'Quicksand', sans-serif; }
.stat__label { font-size: 0.85rem; color: #5A7A6A; margin-top: 0.2rem; }

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(62, 180, 137, 0.1);
}
.team-member__name { font-weight: 700; color: #1A3A2A; margin-bottom: 0.2rem; }
.team-member__title { font-size: 0.88rem; color: #3EB489; font-weight: 600; margin-bottom: 0.2rem; }
.team-member__credentials { font-size: 0.82rem; color: #8A9A8F; }

/* --- Daily Schedule --- */
.schedule {
  margin: 1.5rem 0;
}
.schedule__item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(62, 180, 137, 0.1);
  align-items: baseline;
}
.schedule__time {
  font-weight: 700;
  color: #3EB489;
  font-size: 0.9rem;
  min-width: 100px;
  flex-shrink: 0;
}
.schedule__activity { font-size: 0.92rem; color: #2E4A3E; }

/* --- Packing List --- */
.packing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.packing-list__col h4 { margin-bottom: 0.6rem; }
.packing-list__col ul { list-style: none; padding: 0; }
.packing-list__col li { padding: 0.35rem 0; padding-left: 1.5rem; position: relative; font-size: 0.92rem; }
.packing-list__col--bring li::before { content: '✓'; position: absolute; left: 0; color: #3EB489; font-weight: 700; }
.packing-list__col--avoid li::before { content: '✗'; position: absolute; left: 0; color: #e07b53; font-weight: 700; }

/* --- Footer --- */
.footer {
  background: #1A3A2A;
  color: rgba(255,255,255,0.85);
  padding: 3rem 2.5rem 1.5rem;
  margin-top: auto;
  margin-left: 280px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer__col { min-width: 0; }
.footer__title {
  color: #F7DC6F;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: #3EB489; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* --- Privacy Page --- */
.privacy-content h2 { font-size: 1.5rem; margin-top: 2rem; }
.privacy-content h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.privacy-content ul { margin: 0.5rem 0 1rem 1.5rem; }

/* --- HIPAA Notice --- */
.hipaa-notice {
  background: #F0FFF4;
  border: 1px solid rgba(62, 180, 137, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.hipaa-notice strong { color: #3EB489; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table th {
  background: #3EB489;
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(62, 180, 137, 0.1);
  font-size: 0.9rem;
}
.comparison-table tr:nth-child(even) { background: #F0FFF4; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar--open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .footer { margin-left: 0; }
  .top-bar__hamburger { display: block; }
  .hero { min-height: 340px; margin: 1rem; }
  .hero__title { font-size: 1.9rem; }
  .page-content { padding: 1.5rem; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse .two-col__text { order: 1; }
  .two-col--reverse .two-col__image { order: 2; }
  .packing-list { grid-template-columns: 1fr; }
  .trust-bar { margin: 0 1rem 1.5rem; gap: 1.5rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero { min-height: 280px; border-radius: 12px; margin: 0.75rem; }
  .hero__title { font-size: 1.6rem; }
  .hero__content { padding: 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; gap: 0.75rem; }
  .top-bar__phone { display: none; }
}
