/* ==========================================================================
   SunBreathe — Design System
   ========================================================================== */

:root {
  --color-bg: #F7F3EC;
  --color-bg-soft: #EEE8DE;
  --color-surface: #FFFFFF;
  --color-forest: #294D3B;
  --color-forest-dark: #1F3D2E;
  --color-sage: #8FA697;
  --color-sage-light: #D6DFD9;
  --color-accent: #B5A27D;
  --color-accent-dark: #8C7A57;
  --color-text: #26312C;
  --color-text-muted: #68756D;
  --color-border: #DDD7CC;

  --shadow-sm: 0 2px 10px rgba(31, 61, 46, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 61, 46, 0.10);
  --shadow-lg: 0 24px 60px rgba(31, 61, 46, 0.16);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-forest);
  line-height: 1.2;
  font-weight: 600;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-forest);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

section { scroll-margin-top: 90px; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  background: var(--color-forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(41, 77, 59, 0.28);
}
.btn-primary:hover {
  background: var(--color-forest-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 61, 46, 0.4);
}

.btn-secondary {
  background: var(--color-forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(41, 77, 59, 0.28);
}
.btn-secondary:hover {
  background: var(--color-forest-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-forest-dark);
  border-color: var(--color-forest-dark);
}
.btn-ghost:hover {
  background: var(--color-forest-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--color-forest);
  color: var(--color-forest);
  background: transparent;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.btn-outline:hover {
  background: var(--color-forest);
  color: #fff;
  transform: translateY(-2px);
}

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

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

/* ==========================================================================
   Announcement bar
   ========================================================================== */

.announce-bar {
  background: var(--color-forest-dark);
  color: #F7F3EC;
  text-align: center;
  font-size: 0.85rem;
  padding: 9px 20px;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
  background: rgba(250, 247, 242, 0.97);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(auto, 1fr) auto minmax(auto, 1fr);
  align-items: center;
  padding: 16px 24px;
  gap: 24px;
}
.header-inner .logo { justify-self: start; }
.header-inner nav { justify-self: center; }
.header-inner .header-actions { justify-self: end; }

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-forest);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 101;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-forest-dark);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 110px 20px 90px;
  background: #e9f0e6;
}

.hero-inner { position: relative; z-index: 1; }

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest);
  background: rgba(41, 77, 59, 0.10);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 auto 20px auto;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .hero h1 { white-space: nowrap; }
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 36px auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-forest);
}
.stat span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Section heading helper
   ========================================================================== */

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px auto;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

@media (min-width: 640px) {
  #benefits .section-head h2 { white-space: nowrap; }
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits { padding: 100px 20px; background: var(--color-bg-soft); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

#program-list .benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-forest);
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.benefit-card p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
}
.benefit-card .benefit-tag {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-dark);
}

/* ==========================================================================
   Packages / Pricing
   ========================================================================== */

.packages { padding: 100px 20px; background: var(--color-bg); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 10px;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-card.is-featured {
  background: var(--color-forest);
  color: #F7F3EC;
  border-color: var(--color-forest);
  transform: scale(1.03);
}
.package-card.is-featured h3,
.package-card.is-featured .price { color: #fff; }
.package-card.is-featured p { color: var(--color-sage-light); }
.package-card.is-featured:hover { transform: scale(1.03) translateY(-8px); }

.badge-popular {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--color-accent);
  color: var(--color-forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(181, 162, 125, 0.4);
}

.package-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.package-tagline {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-style: normal;
  margin-bottom: 14px;
}
.price {
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-forest);
  font-size: 1.05rem;
}
.package-desc {
  color: var(--color-text-muted);
  margin-bottom: 22px;
}
.package-includes {
  flex-grow: 1;
  margin-bottom: 26px;
}
.package-includes .includes-label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--color-forest-dark);
}
.package-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.package-includes li::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-accent-dark);
}
.package-card.is-featured .package-tagline,
.package-card.is-featured .package-desc,
.package-card.is-featured .package-includes li {
  color: var(--color-sage-light);
}
.package-card.is-featured .package-includes .includes-label {
  color: #fff;
}
.package-card.is-featured .package-includes li::before {
  color: var(--color-accent);
}
.package-card.is-featured .btn-outline {
  border-color: #fff;
  color: #fff;
}
.package-card.is-featured .btn-outline:hover {
  background: #fff;
  color: var(--color-forest);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery { padding: 100px 20px; background: var(--color-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  border: 1px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-text-muted);
}
.gallery-tile span {
  font-size: 0.85rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
  padding: 100px 20px;
  background: var(--color-bg-soft);
  min-height: 650px;
  display: flex;
  align-items: center;
}
.testimonials .container { width: 100%; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--color-forest);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.92rem; }
.author-role { font-size: 0.82rem; color: var(--color-text-muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { padding: 100px 20px; background: var(--color-bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-forest-dark);
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-forest);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.faq-icon::before { width: 100%; height: 2px; top: 10px; left: 0; }
.faq-icon::after { width: 2px; height: 100%; left: 10px; top: 0; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-answer p {
  padding: 0 24px 22px 24px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  padding: 90px 20px;
  background: var(--color-forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--color-sage-light);
  max-width: 520px;
  margin: 0 auto 34px auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact { padding: 55px 20px; background: var(--color-bg-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  text-align: left;
  margin-top: 12px;
}

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-line:last-child { margin-bottom: 0; }
.contact-line .contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--color-sage-light);
  color: var(--color-forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line p { margin: 0; color: var(--color-text); }
.contact-line span { display: block; font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 2px; }

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-form > p { color: var(--color-text-muted); font-size: 0.86rem; margin-bottom: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { margin-bottom: 10px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-forest-dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 4px rgba(127, 165, 136, 0.18);
}
.form-group textarea { resize: vertical; min-height: 64px; }

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.is-visible { display: block; }
.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}
.form-success h4 { margin-bottom: 8px; }
.form-success p { color: var(--color-text-muted); }

/* ==========================================================================
   About page specific
   ========================================================================== */

.page-hero {
  padding: 90px 20px 70px;
  text-align: center;
  background: #e9f0e6;
  position: relative;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { color: var(--color-text-muted); max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

.about-content { padding: 90px 20px; background: var(--color-bg); }
.about-content .container { max-width: 780px; }
.about-content p {
  max-width: 700px;
  margin: 0 auto 22px auto;
  text-align: left;
  font-size: 1.08rem;
  color: var(--color-text);
}
.about-content p:last-child { margin-bottom: 0; }

.values-strip { padding: 0 20px 100px; background: var(--color-bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 30px 20px;
}
.value-card .benefit-icon { margin: 0 auto 18px auto; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--color-text-muted); font-size: 0.92rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-forest-dark);
  color: #c9d4cc;
  padding: 60px 20px 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: #a9b8ae; max-width: 280px; text-align: justify; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #a9b8ae; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #8ea094;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #cdd8d1;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--color-sage); color: #fff; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 99;
    padding: 100px 32px 32px;
  }
  nav.is-open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    gap: 26px;
  }
  .form-row { grid-template-columns: 1fr; }
  .package-card.is-featured { transform: scale(1); }
  .package-card.is-featured:hover { transform: translateY(-8px); }
}

@media (max-width: 480px) {
  .hero { padding: 90px 16px 70px; }
  .hero-stats { gap: 30px; }
  .contact-form, .contact-info-card { padding: 30px 22px; }
}
