:root {
  --bg: #f5f7f2;
  --surface: #ffffff;
  --surface-soft: #f0f5ec;
  --text: #173326;
  --muted: #4c6458;
  --primary: #177245;
  --primary-dark: #0f5b36;
  --line: #d5dfd7;
  --shadow: 0 18px 42px rgba(16, 44, 30, 0.14);
}

@keyframes floatSoft {
  0%,
  100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes fadePop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseGlow {
  0%,
  100% { box-shadow: 0 10px 24px rgba(23, 114, 69, 0.18); }
  50% { box-shadow: 0 16px 32px rgba(23, 114, 69, 0.28); }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, #e7f3e9 0%, rgba(231, 243, 233, 0) 28%),
    radial-gradient(circle at 88% 0%, #deefdf 0%, rgba(222, 239, 223, 0) 34%),
    var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.15;
  z-index: -1;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  min-height: 100vh;
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  z-index: 0;
}

.site-header::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -70px;
  background: radial-gradient(circle, rgba(140, 212, 165, 0.34) 0%, rgba(140, 212, 165, 0) 72%);
}

.site-header::after {
  width: 220px;
  height: 220px;
  bottom: 20px;
  left: -90px;
  background: radial-gradient(circle, rgba(111, 184, 141, 0.26) 0%, rgba(111, 184, 141, 0) 70%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(245, 247, 242, 0.9) 0%, rgba(245, 247, 242, 0.68) 100%);
  border: 1px solid rgba(145, 173, 157, 0.22);
  border-radius: 0.95rem;
  margin-top: 0;
  padding-left: 0.95rem;
  padding-right: 0.95rem;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  z-index: 4;
}

.nav.nav-scrolled {
  background: rgba(247, 251, 248, 0.94);
  border-color: rgba(120, 157, 136, 0.3);
  box-shadow: 0 10px 24px rgba(16, 44, 30, 0.12);
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 0.6rem;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #2c9f5f);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), #249858);
  border-radius: 999px;
  padding: 0.55rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.4rem;
  padding: 3.2rem 0 2rem;
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  max-width: 17ch;
}

.subtitle {
  color: var(--muted);
  max-width: 56ch;
  margin: 1rem 0 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.75rem;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #249858);
  color: #fff;
  box-shadow: 0 12px 20px rgba(23, 114, 69, 0.25);
  animation: pulseGlow 2.9s ease-in-out infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.hero-stats article {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.8rem;
  animation: floatSoft 4s ease-in-out infinite;
}

.hero-stats article:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-stats article:nth-child(3) {
  animation-delay: 0.55s;
}

.hero-stats h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

.hero-stats p {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f7fbf8;
  border: 1px solid #cfe0d4;
  padding: 0.65rem;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 2px solid rgba(23, 114, 69, 0.25);
  border-radius: 1rem;
  pointer-events: none;
}

.hero-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0.65rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 1rem;
}

.hero-slide {
  position: relative;
  scroll-snap-align: start;
  border-radius: 0.9rem;
  overflow: hidden;
}

.hero-scroll img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 0.9rem;
}

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.95rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(10, 28, 19, 0.75) 58%, rgba(10, 28, 19, 0.92) 100%);
}

.slide-tag {
  display: inline-block;
  margin: 0 0 0.25rem;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(201, 245, 211, 0.24);
  border: 1px solid rgba(201, 245, 211, 0.5);
}

.slide-caption h3 {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  margin-bottom: 0.18rem;
}

.slide-caption p {
  margin: 0;
  font-size: 0.84rem;
  opacity: 0.95;
}

.hero-scroll::-webkit-scrollbar {
  height: 8px;
}

.hero-scroll::-webkit-scrollbar-thumb {
  background: #9ec1aa;
  border-radius: 999px;
}

.section {
  padding: 5rem 0;
}

.quick-contact {
  padding: 1.2rem 0 0.8rem;
}

.quick-contact-wrap {
  background: linear-gradient(145deg, #ffffff 0%, #edf6ef 100%);
  border: 1px solid #cfe0d5;
  border-radius: 1.1rem;
  box-shadow: 0 12px 30px rgba(18, 52, 35, 0.1);
  padding: 1.2rem;
}

.quick-contact-head h2 {
  font-family: "Fraunces", serif;
}

.quick-contact-head p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.quick-contact-item {
  background: #ffffff;
  border: 1px solid #d7e4db;
  border-radius: 0.85rem;
  padding: 0.9rem;
}

.quick-contact-item h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
}

.quick-contact-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.quick-contact-item a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
}

.section-alt {
  background: linear-gradient(180deg, rgba(211, 226, 215, 0.34), rgba(245, 247, 242, 0.95));
}

.section-head {
  margin-bottom: 2rem;
}

.section-head p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(18, 52, 35, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(18, 52, 35, 0.14);
}

.card img {
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-body h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.45rem;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-body span {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.about-media {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  color: var(--muted);
}

.feature-list {
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(160deg, #ffffff 0%, #edf5ef 100%);
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(16, 44, 30, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(16, 44, 30, 0.14);
}

.service-badge {
  margin: 0 0 0.55rem;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: #dff3e5;
}

.service-card h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.35rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.coverage {
  background: linear-gradient(180deg, #f3f8f2 0%, #e8f1ea 100%);
}

.coverage-wrap .section-head {
  margin-bottom: 1.3rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.coverage-item {
  background: #ffffff;
  border: 1px solid #d0ddd4;
  border-radius: 0.9rem;
  padding: 1rem;
  transition: transform 0.2s ease;
}

.coverage-item:hover {
  transform: translateY(-3px);
}

.coverage-item h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.45rem;
}

.coverage-item p {
  margin: 0;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  transition: transform 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.testimonial h4 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.1rem;
}

.testimonial span {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
}

.faq-grid {
  display: grid;
  gap: 0.8rem;
}

.faq-grid details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

.faq-grid details p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.legal-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
}

.legal-card h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 0.55rem;
}

.legal-card p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.legal-card a {
  color: var(--primary-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(16, 44, 30, 0.08);
}

.step-no {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", serif;
  color: var(--primary);
  font-size: 1.25rem;
}

.step-card h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.35rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.info-ribbon {
  margin-top: 1rem;
  border: 1px solid #cfe0d4;
  background: linear-gradient(135deg, #1a7b4a, #11653d);
  color: #f1fff5;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 0.95rem;
}

.info-ribbon article h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.2rem;
}

.info-ribbon article p {
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.92;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.insight-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff 0%, #f2f8f3 100%);
}

.insight-card h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.35rem;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
}

.contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f2f7f0 0%, #dce8df 100%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 12px 32px rgba(18, 52, 35, 0.12);
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.contact-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-list p {
  margin: 0.65rem 0;
}

.contact-list a {
  color: var(--primary-dark);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1fb85f, #169b4f);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 155, 79, 0.34);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.site-footer {
  background: #10281e;
  color: #d7e5dc;
  padding: 1.4rem 0 1rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(183, 215, 196, 0.2);
  padding-bottom: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.footer-links a {
  color: #d7e5dc;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-quickbar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  animation: fadePop 0.62s ease forwards;
}

@media (max-width: 980px) {
  .section {
    padding: 4rem 0;
  }

  .hero,
  .about-wrap,
  .contact-wrap,
  .legal-wrap {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .testimonial-grid,
  .coverage-grid,
  .service-grid,
  .steps-grid,
  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .hero-scroll {
    grid-auto-columns: 88%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, 94%);
  }

  .site-header {
    min-height: auto;
  }

  .site-header::before {
    width: 180px;
    height: 180px;
    top: -80px;
    right: -40px;
  }

  .site-header::after {
    width: 150px;
    height: 150px;
    left: -50px;
    bottom: 90px;
  }

  .nav {
    position: fixed;
    top: 0.55rem;
    left: 3%;
    right: 3%;
    width: auto;
    margin-top: 0;
    padding: 0.7rem 0.8rem;
    border-radius: 0.85rem;
    background: rgba(248, 252, 249, 0.92);
    border: 1px solid rgba(129, 165, 144, 0.24);
    box-shadow: 0 8px 22px rgba(15, 38, 27, 0.12);
  }

  body {
    padding-top: 4.6rem;
  }

  .menu-btn {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #ecf5ee 100%);
    border: 1px solid #c4d8c9;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 3%;
    right: 3%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    padding: 0.95rem;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    width: 100%;
  }

  .nav-links a::after {
    bottom: 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 1.2rem;
    gap: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-scroll {
    grid-auto-columns: 96%;
  }

  .slide-caption {
    padding: 0.78rem;
  }

  .slide-caption h3 {
    font-size: 1rem;
  }

  .subtitle {
    margin-bottom: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-head {
    margin-bottom: 1.4rem;
  }

  .section-head p {
    margin-top: 0.5rem;
    font-size: 0.96rem;
  }

  .contact {
    padding: 3.2rem 0 4.8rem;
  }

  .contact-card {
    gap: 0.7rem;
  }

  .contact-card .btn {
    width: 100%;
  }

  .product-grid,
  .testimonial-grid,
  .coverage-grid,
  .service-grid,
  .steps-grid,
  .insight-grid,
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .info-ribbon {
    grid-template-columns: 1fr 1fr;
    padding: 0.8rem;
  }

  .info-ribbon article {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.6rem;
    padding: 0.6rem;
  }

  .footer-main,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 4.4rem;
    padding: 0.74rem 0.92rem;
    font-size: 0.92rem;
  }

  .mobile-quickbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0f5b36;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-quickbar a {
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.78rem 0.5rem;
    font-size: 0.92rem;
  }

  .mobile-quickbar a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .site-footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  section[id] {
    scroll-margin-top: 78px;
  }

  .container {
    width: 95%;
  }

  .brand {
    font-size: 1.15rem;
  }

  .nav {
    top: 0.4rem;
  }

  .menu-btn {
    padding: 0.46rem 0.72rem;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 1rem;
    gap: 1.1rem;
  }

  .hero-actions .btn,
  .contact-card .btn {
    min-height: 44px;
  }

  .card-body,
  .service-card,
  .step-card,
  .coverage-item,
  .insight-card,
  .testimonial,
  .legal-card,
  .contact-card {
    padding: 0.85rem;
  }

  .slide-caption p {
    font-size: 0.79rem;
  }

  .mobile-quickbar a {
    padding: 0.82rem 0.45rem calc(0.82rem + env(safe-area-inset-bottom));
    font-size: 0.9rem;
  }

  .whatsapp-float {
    bottom: 4.9rem;
  }
}
