:root {
  --bg: #ffffff;
  --bg-soft: #eaf5ff;
  --bg-soft-2: #f4f9ff;
  --primary: #a5cfdf;
  --primary-dark: #7fb6cc;
  --whatsapp: #25d366;
  --whatsapp-dark: #1fb758;
  --text: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --radius-lg: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: var(--radius-lg);
}

.img-contain {
  height: 100%;
  object-fit: cover;
  background: #f8fbff;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section.soft {
  background: var(--bg-soft);
}

.section.soft-2 {
  background: var(--bg-soft-2);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 18px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  height: 120px;
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 100px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}

.logo img {
  height: 200px;
  width: auto;
  border-radius: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 16px;
}

.btn.primary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  background: var(--whatsapp-dark);
}

.btn.secondary {
  background: #fff;
  border-color: #cbd5f5;
  color: var(--primary);
}

.btn.js-wa {
  background: var(--whatsapp);
  color: #fff;
  border-color: transparent;
}

.btn.js-wa:hover {
  background: var(--whatsapp-dark);
}

.btn.block {
  width: 100%;
}

.hero {
  padding: 110px 0 70px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero .badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badge {
  background: linear-gradient(135deg, #eaf5ff, #ffffff);
  border: 1px solid #dbeafe;
  color: #0f5d75;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.inline-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  gap: 16px;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.step span {
  font-weight: 800;
  font-size: 28px;
  color: var(--primary);
}

.carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.carousel img,
.specialty-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel .card p,
.specialty-grid .card p {
  min-height: 72px;
}

.blue-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}

.list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 6px;
}

.team-grid,
.testimonial-grid,
.specialty-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  padding: 16px 18px;
  background: #fff;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.footer {
  padding: 40px 0 80px;
  border-top: 1px solid #e2e8f0;
  background: #f8fbff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social .social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social .social:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.footer-social .social svg {
  width: 20px;
  height: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.float-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  font-weight: 800;
  box-shadow: var(--shadow);
  color: #fff;
  justify-content: center;
}

.btn-float svg {
  width: 26px;
  height: 26px;
}

.btn-float.whatsapp {
  background: #25d366;
}

.btn-float.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.hero-cta-mobile {
  display: none;
  margin-top: 14px;
}

.tag {
  font-size: 13px;
  font-weight: 700;
  color: #1eaf40;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map {
  width: 100%;
  min-height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .hero-grid,
  .blue-block,
  .contact-grid,
  .cards-grid,
  .steps,
  .carousel,
  .team-grid,
  .testimonial-grid,
  .specialty-grid,
  .cards-grid.two,
  .cards-grid.four {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-cta-mobile {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    height: 78px;
  }

  .nav {
    height: 78px;
    justify-content: center;
  }

  .logo img {
    height: 139px;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .card {
    padding: 18px;
  }

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

  .badge-row {
    gap: 8px;
  }

  .hero .btn {
    width: 100%;
  }

  .hero .btn.secondary {
    display: none;
  }

  .hero-cta-desktop {
    display: none !important;
  }

  .btn {
    justify-content: center;
  }

  .card .btn {
    width: 100%;
  }

  .blue-block {
    padding: 24px;
  }

  .carousel .card p,
  .specialty-grid .card p {
    min-height: 0;
  }

  .map {
    min-height: 260px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    font-size: 14px;
  }

  .float-buttons {
    right: 14px;
    bottom: 14px;
  }

  .btn-float {
    width: 46px;
    height: 46px;
  }

  .btn-float svg {
    width: 22px;
    height: 22px;
  }

  .footer {
    padding-bottom: 120px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
  }
}
