/* ==========================================================================
   St. Marys Wellness Center — Luxury Landing Page
   styles.css · v=1 · Glasshouse Dev.Studio
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Montserrat:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   2. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary:    #235B35;
  --accent:     #87C03D;
  --highlight:  #E2F6B0;
  --dark:       #1A2E1F;
  --light:      #F8FAF5;
  --white:      #FFFFFF;
  --gray-100:   #F0F4EC;
  --gray-200:   #D4DDD0;
  --gray-400:   #6B7D6E;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width:          1200px;
  --section-pad:        120px;
  --section-pad-mobile: 72px;

  /* Transitions */
  --transition-base: 0.3s ease;
}

/* --------------------------------------------------------------------------
   3. CSS Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--light);
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--light  { background: var(--light); }
.section--white  { background: var(--white); }
.section--alt    { background: var(--gray-100); }
.section--dark   { background: var(--dark); }
.section--primary { background: var(--primary); }

/* --------------------------------------------------------------------------
   5. Typography Utilities
   -------------------------------------------------------------------------- */
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section__eyebrow--light {
  color: var(--highlight);
}

.section__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.section__title--light {
  color: var(--white);
}

.section__body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 620px;
}

.section__body--light {
  color: rgba(248, 250, 245, 0.8);
}

.section__body--wide {
  max-width: 780px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section__body {
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: var(--dark);
}

.btn--accent:hover {
  background: var(--highlight);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   7. Form Styles
   -------------------------------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.form__subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.form__input,
.form__select {
  font-family: var(--font-primary);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(135, 192, 61, 0.15);
}

.form__input::placeholder {
  color: var(--gray-400);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7D6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__submit {
  margin-top: 4px;
  padding: 16px 28px;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.form__disclaimer {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.6;
}

/* Form card wrapper */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(26, 46, 31, 0.12);
}

/* Dark section form variant */
.form-card--dark .form__title {
  color: var(--white);
}

.form-card--dark .form__label {
  color: rgba(248, 250, 245, 0.9);
}

.form-card--dark .form__subtitle {
  color: rgba(248, 250, 245, 0.6);
}

/* --------------------------------------------------------------------------
   8. Nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 46, 31, 0.06);
  transition: background var(--transition-base);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo {
  width: 180px;
  height: auto;
}

.nav__cta {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-top: calc(72px + 80px);
  padding-bottom: 100px;
  position: relative;
  background: var(--dark);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 31, 0.75) 0%,
    rgba(35, 91, 53, 0.60) 50%,
    rgba(26, 46, 31, 0.50) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(248, 250, 245, 0.85);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.trust-badge svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   10. Problem Section
   -------------------------------------------------------------------------- */
.problem {
  overflow: hidden;
}

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

.problem__stat {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.problem__stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

.problem__image-wrap {
  position: relative;
}

.problem__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.problem__image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  background: var(--highlight);
  border-radius: 12px;
  z-index: -1;
}

.problem__stats-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

/* --------------------------------------------------------------------------
   11. Solution Section
   -------------------------------------------------------------------------- */
.solution {
  overflow: hidden;
}

.solution__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  opacity: 0.18;
}

.solution .container {
  position: relative;
  z-index: 1;
}

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

.solution__image-wrap {
  position: relative;
}

.solution__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.solution__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.solution__highlight {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
}

.solution__highlight-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.solution__highlight-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(248, 250, 245, 0.7);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   12. Programs Section
   -------------------------------------------------------------------------- */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(35, 91, 53, 0.12);
}

.program-card__image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.program-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-card__image {
  transform: scale(1.04);
}

.program-card__body {
  padding: 32px;
}

.program-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--highlight);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.program-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.program-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.program-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.program-card__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

.program-card__detail svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   13. UVPs Section
   -------------------------------------------------------------------------- */
.uvps {
  overflow: hidden;
}

.uvps__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 0.15;
}

.uvps .container {
  position: relative;
  z-index: 1;
}

.uvps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.uvp-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  transition: background var(--transition-base);
}

.uvp-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.uvp-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(135, 192, 61, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.uvp-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.uvp-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(248, 250, 245, 0.7);
}

/* --------------------------------------------------------------------------
   14. Services Section
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-item {
  padding: 28px 24px;
  background: var(--gray-100);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.service-item:hover {
  background: var(--highlight);
  border-color: var(--accent);
}

.service-item__icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(35, 91, 53, 0.08);
}

.service-item__title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-item__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   15. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--highlight);
  position: absolute;
  top: 20px;
  left: 32px;
}

.testimonial-card__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 28px;
  padding-top: 40px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__avatar-initials {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-card__relation {
  font-size: 13px;
  color: var(--gray-400);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   16. FAQ Section
   -------------------------------------------------------------------------- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq__question-text {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background var(--transition-base), transform var(--transition-base);
}

.faq__item--active .faq__icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item--active .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   17. Contact / CTA Section
   -------------------------------------------------------------------------- */
.contact {
  overflow: hidden;
}

.contact__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 0.12;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info {
  padding-top: 8px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  background: rgba(135, 192, 61, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact__info-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(248, 250, 245, 0.5);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 16px;
  color: rgba(248, 250, 245, 0.9);
  font-weight: 500;
}

.contact__info-value a {
  color: inherit;
  transition: color var(--transition-base);
}

.contact__info-value a:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--dark);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer__logo {
  width: 140px;
  height: auto;
  opacity: 0.9;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(248, 250, 245, 0.5);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 260px;
}

.footer__nav-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 250, 245, 0.4);
  margin-bottom: 16px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  font-size: 15px;
  color: rgba(248, 250, 245, 0.7);
  transition: color var(--transition-base);
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 250, 245, 0.6);
  transition: background var(--transition-base), color var(--transition-base);
}

.footer__social-link:hover {
  background: rgba(135, 192, 61, 0.15);
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(248, 250, 245, 0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(248, 250, 245, 0.35);
  transition: color var(--transition-base);
}

.footer__legal-link:hover {
  color: rgba(248, 250, 245, 0.6);
}

/* --------------------------------------------------------------------------
   19. Animations
   -------------------------------------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes hazeGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.float {
  animation: float 5s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   20. Responsive — 1024px (Tablet)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero {
    padding-top: calc(72px + 64px);
    padding-bottom: 80px;
    min-height: auto;
  }

  .hero__subtitle {
    max-width: 100%;
  }

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

  .problem__image-wrap {
    order: -1;
  }

  .problem__image {
    height: 360px;
  }

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

  .solution__image {
    height: 400px;
  }

  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .section__title {
    font-size: 34px;
  }
}

/* --------------------------------------------------------------------------
   21. Responsive — 768px (Mobile)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }

  .container {
    padding: 0 24px;
  }

  .hero__title {
    font-size: 38px;
  }

  .section__title {
    font-size: 30px;
  }

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

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

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .problem__stats-row {
    flex-wrap: wrap;
    gap: 32px;
  }

  .form-card {
    padding: 28px 24px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .nav__inner {
    padding: 0 20px;
  }

  .nav__logo {
    width: 140px;
  }
}

/* --------------------------------------------------------------------------
   22. Responsive — 480px (Small Phones)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 32px;
  }

  .section__title {
    font-size: 26px;
  }

  .problem__stat {
    font-size: 56px;
  }

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

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

  .hero__trust {
    gap: 8px;
  }

  .trust-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .uvp-card {
    padding: 24px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }
}
