/* ============================================
   In-Spired Caregiving — Editorial Style
   Emerald Green + Cream Palette
   ============================================ */

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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50: #fafaf5;
  --cream-100: #f5f5e9;
  --cream-200: #e8e8d4;
  --cream-300: #d4d4bc;
  --gold-500: #d97706;
  --gold-600: #b45309;
  --text-dark: #1a1a14;
  --text-mid: #3d3d2e;
  --text-light: #6b6b58;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--emerald-900);
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--cream-50);
}

.section-title--cream {
  color: var(--cream-100);
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(250, 250, 245, 0.4);
}

.btn--ghost:hover {
  border-color: var(--cream-50);
  background: rgba(250, 250, 245, 0.1);
}

.btn--outline {
  background: transparent;
  color: var(--emerald-700);
  border-color: var(--emerald-700);
}

.btn--outline:hover {
  background: var(--emerald-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(6, 78, 59, 0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--emerald-800);
  flex-shrink: 0;
}

.nav__logo-icon {
  color: var(--emerald-600);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-600);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--emerald-700);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--emerald-700);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: all 0.3s var(--ease-out) !important;
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background: var(--emerald-800) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.25);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream-50);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--emerald-500);
}

.hero__headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--emerald-900);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__headline em {
  font-style: italic;
  color: var(--emerald-600);
}

.hero__subheadline {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  gap: 40px;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__trust-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--emerald-700);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(6, 78, 59, 0.15);
}

.hero__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 600/750;
}

.hero__image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: var(--emerald-800);
  z-index: -1;
  opacity: 0.08;
}

/* --- Services --- */
.services {
  padding: 120px 0;
  background: var(--white);
}

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

.service-card {
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid var(--cream-200);
  background: var(--cream-50);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--emerald-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  border-color: var(--emerald-200);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--emerald-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  margin-bottom: 24px;
  transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: var(--emerald-700);
  color: var(--white);
}

.service-card__title {
  font-size: 1.25rem;
  color: var(--emerald-900);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--cream-50);
}

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

.about__image-wrap {
  position: relative;
}

.about__image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(6, 78, 59, 0.12);
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 560/640;
}

.about__image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.15);
  border: 4px solid var(--cream-50);
}

.about__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 400/300;
}

.about__content {
  padding: 20px 0;
}

.about__body {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-700);
}

.about__stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Why Us --- */
.why-us {
  padding: 120px 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(217, 119, 6, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

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

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  padding: 48px 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.why-card__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.3);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.why-card__title {
  font-size: 1.375rem;
  color: var(--cream-100);
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 0.9375rem;
  color: rgba(250, 250, 245, 0.65);
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 40px 32px;
  border-radius: 12px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.08);
  border-color: var(--emerald-200);
}

.testimonial-card__quote {
  color: var(--emerald-300);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald-800);
  font-style: normal;
}

/* --- CTA --- */
.cta {
  padding: 100px 0;
  background: var(--emerald-800);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta__headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--cream-50);
  margin-bottom: 20px;
}

.cta__body {
  font-size: 1.0625rem;
  color: rgba(250, 250, 245, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__actions .btn--outline {
  border-color: rgba(250, 250, 245, 0.5);
  color: var(--cream-50);
}

.cta__actions .btn--outline:hover {
  background: var(--cream-50);
  color: var(--emerald-800);
  border-color: var(--cream-50);
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: var(--cream-50);
}

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

.contact__body {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--emerald-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  flex-shrink: 0;
}

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact__detail-link {
  font-size: 1rem;
  color: var(--emerald-700);
  font-weight: 500;
  transition: color 0.2s;
}

.contact__detail-link:hover {
  color: var(--emerald-500);
  text-decoration: underline;
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.08);
  border: 1px solid var(--cream-200);
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-300);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream-50);
  transition: all 0.2s;
  outline: none;
}

.form__input:focus {
  border-color: var(--emerald-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form__input::placeholder {
  color: var(--text-light);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b58' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--emerald-700);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 16px;
}

.form__success.visible {
  display: flex;
}

/* --- Footer --- */
.footer {
  background: var(--emerald-900);
  color: var(--cream-100);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: 16px;
}

.footer__logo-icon {
  color: var(--emerald-400);
}

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(250, 250, 245, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list a {
  font-size: 0.9375rem;
  color: rgba(250, 250, 245, 0.6);
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--cream-50);
}

.footer__list--contact li {
  font-size: 0.9375rem;
  color: rgba(250, 250, 245, 0.6);
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(250, 250, 245, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(250, 250, 245, 0.35);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid {
    gap: 40px;
  }
  
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__grid {
    gap: 48px;
  }
  
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 245, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--cream-200);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  }
  
  .nav__links.open {
    transform: translateY(0);
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero {
    padding: 100px 0 80px;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero__image-wrap {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__image-container img {
    aspect-ratio: 4/5;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    justify-content: center;
  }
  
  .hero__trust {
    gap: 24px;
  }
  
  .services {
    padding: 80px 0;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .about {
    padding: 80px 0;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .about__image-secondary {
    right: 0;
    bottom: -24px;
  }
  
  .about__stats {
    gap: 24px;
  }
  
  .why-us {
    padding: 80px 0;
  }
  
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    padding: 80px 0;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .cta {
    padding: 80px 0;
  }
  
  .contact {
    padding: 80px 0;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact__form-wrap {
    padding: 32px 24px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero__headline {
    font-size: 2rem;
  }
  
  .hero__trust {
    flex-direction: column;
    gap: 16px;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .service-card {
    padding: 32px 24px;
  }
  
  .why-card {
    padding: 32px 24px;
  }
}
