*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f5f7fb;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 47, 0.94),
    rgba(10, 25, 47, 0.8),
    transparent
  );
  color: #e5e7eb;
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f9fafb;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.9rem;
  color: #e5e7eb;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5c96b, #f59e0b);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: #e5e7eb;
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(249, 250, 251, 0.8);
  color: #333;
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background-color: rgba(249, 250, 251, 0.1);
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid #1f2937;
  color: #f9fafb;
}

.btn-ghost:hover {
  background-color: #1f2937;
  color: #f9fafb;
}

.btn-call-now {
  font-size: 0.8rem;
  padding-inline: 1.1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #f9fafb;
  padding-top: 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/bg.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(1.1);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(15, 23, 42, 0.75),
      transparent 55%
    ),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.7), #020617);
  opacity: 0.94;
  backdrop-filter: blur(6px);
  z-index: -1;
}

.hero-content {
  padding: 4rem 0 3rem;
}

.hero-text {
  max-width: 640px;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-social-proof .stars {
  color: #fbbf24;
}

.hero-microcopy {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-microcopy span {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.25);
  background: rgba(15, 23, 42, 0.35);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: #111827;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: #4b5563;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 10%, #facc15, #f59e0b);
  color: #111827;
  font-size: 1.1rem;
}

.card h3 {
  font-size: 1rem;
  margin: 0.3rem 0 0;
  color: #111827;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0;
}

.card-link {
  align-self: flex-start;
  margin-top: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  color: #1d4ed8;
  cursor: pointer;
}

.card-link:hover {
  text-decoration: underline;
}

.section-cta-text {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #4b5563;
}

.link-inline {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #1d4ed8;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  background-color: #f9fafb;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem 1.2rem;
  border: 1px solid #e5e7eb;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #f9fafb;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.section-cta p {
  margin-bottom: 1rem;
  color: #111827;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem 1.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc15, #f59e0b);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.section-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #4b5563;
}

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.4rem;
}

.rating-summary p {
  margin: 0.2rem 0 0;
  color: #4b5563;
}

.rating-count p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background-color: #f9fafb;
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem 1.25rem;
  border: 1px solid #e5e7eb;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.testimonial p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.testimonial-name {
  margin-top: 0.6rem;
  font-weight: 500;
  color: #111827;
}

.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 0.75rem 1rem;
}

.faq-item[open] {
  border-color: #1d4ed8;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  color: #111827;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 600;
  color: #9ca3af;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.6rem 0 0.2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem 1.2rem;
  border: 1px solid #e5e7eb;
}

.contact-block h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.contact-block p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-block strong {
  color: #111827;
}

.contact-block a {
  color: #1d4ed8;
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 1.1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.site-footer {
  background-color: #020617;
  color: #9ca3af;
  padding: 1.75rem 0 4.25rem;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-left p {
  margin: 0;
}

.footer-meta {
  margin-top: 0.25rem;
  color: #6b7280;
}

.footer-right {
  text-align: right;
  color: #6b7280;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #f9fafb;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.5);
}

.whatsapp-icon {
  color: #fff;
}

.whatsapp-float span::before {
  content: "\f232";
  font-family: "Font Awesome 5 Brands", system-ui;
  margin-right: 0.35rem;
}

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  background: #111827;
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .main-nav {
    order: 3;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(15, 23, 42, 0.96);
    flex-direction: column;
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .nav-links.is-open {    
    padding: 0.75rem 1.5rem 1rem;
    max-height: 260px;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 0.75rem 1rem;
  }

  .hero {
    text-align: left;
  }

  .hero-content {
    padding: 3.5rem 1rem 3.25rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 90vh;
  }

  .hero-text {
    max-width: 100%;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .call-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 3.5rem;
  }
}

