:root {
  --green: #2f855a;
  --green-dark: #276749;
  --blue: #3391ff;
  --blue-dark: #1f7ae8;
  --ink: #1a202c;
  --muted: #4a5568;
  --line: #e2e8f0;
  --bg: #f7fafc;
  --white: #ffffff;
  --radius-stage: 24px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(760px, calc(100% - 2.5rem));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--green);
  box-shadow: 0 2px 12px rgb(0 0 0 / 12%);
}

.nav-inner {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav a {
  color: rgb(255 255 255 / 92%);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover {
  background: rgb(255 255 255 / 12%);
  color: var(--white);
}

.primary-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
  margin-left: 0.35rem;
}

.primary-nav .nav-cta:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgb(255 255 255 / 14%);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 5.5rem 1rem 1.5rem;
}

.hero-stage {
  position: relative;
  min-height: 75vh;
  border-radius: var(--radius-stage);
  background: center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #2d3748;
  opacity: 0.75;
  border-radius: var(--radius-stage);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.5rem 1rem;
  color: var(--white);
  animation: rise 0.8s ease both;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 0.65rem 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: rgb(255 255 255 / 92%);
}

.hero-copy h3 {
  margin: 1.25rem 0 1.75rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgb(255 255 255 / 88%);
}

.hero-copy strong {
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-pill {
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-size: 0.98rem;
}

.btn-pill:hover {
  background: var(--blue-dark);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-whatsapp {
  border: 2px solid rgb(255 255 255 / 55%);
  color: var(--white);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  background: rgb(255 255 255 / 12%);
  border-color: var(--white);
}

/* Intro */
.intro {
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.display,
.section-title {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.intro .display {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  color: var(--ink);
}

.intro p {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services */
.services {
  padding: 2rem 0 3.5rem;
}

.section-title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: 1.15rem;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.service-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgb(15 23 42 / 8%);
  display: flex;
  flex-direction: column;
  animation: rise 0.7s ease both;
}

.service-card:nth-child(2) { animation-delay: 0.05s; }
.service-card:nth-child(3) { animation-delay: 0.1s; }
.service-card:nth-child(4) { animation-delay: 0.15s; }
.service-card:nth-child(5) { animation-delay: 0.2s; }
.service-card:nth-child(6) { animation-delay: 0.25s; }

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card h3 {
  margin: 1rem 1rem 0.4rem;
  font-size: 1.1rem;
  font-family: var(--display);
}

.service-card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.service-card .btn {
  margin: 0 1rem 1.15rem;
  align-self: flex-start;
}

/* Trusted */
.trusted {
  padding: 3rem 0;
  background: var(--white);
}

.divider {
  width: 64px;
  height: 4px;
  margin: -0.5rem auto 1.25rem;
  border-radius: 999px;
  background: var(--blue);
}

.trusted-lead {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.feature-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgb(15 23 42 / 8%);
}

.feature-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(47 133 90 / 12%);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.feature-tile h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  font-family: var(--display);
}

/* Pros */
.pros {
  padding: 3.5rem 0;
}

.pros-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.pro img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 10px 30px rgb(15 23 42 / 14%);
}

.pro h3 {
  margin: 1rem 0 0.15rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.pro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Become a pro */
.become-pro {
  padding: 1rem 1rem 3rem;
}

.become-inner {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-stage);
  background: center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.become-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(15 23 42 / 78%), rgb(15 23 42 / 35%));
}

.become-copy {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 3rem));
  margin: 0 auto 0 8%;
  color: var(--white);
  animation: rise 0.75s ease both;
}

.become-copy h2 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

/* Book */
.book {
  padding: 1rem 0 4rem;
}

.book-lead {
  text-align: center;
  color: var(--muted);
  margin: -0.5rem 0 1.5rem;
}

.book-form {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgb(15 23 42 / 8%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.book-form .full,
.book-form button {
  grid-column: 1 / -1;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  background: #fff;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: 2px solid rgb(51 145 255 / 35%);
  border-color: var(--blue);
}

.form-toast {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgb(47 133 90 / 12%);
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #1a202c;
  color: rgb(255 255 255 / 88%);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.site-footer h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--white);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.contact-list a {
  color: rgb(255 255 255 / 92%);
}

.social-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.social-row a {
  color: var(--blue);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  padding: 1.15rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 65%);
}

.footer-bottom p {
  margin: 0.25rem 0;
}

.domain-note {
  color: rgb(51 145 255 / 90%);
  font-weight: 600;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.25rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 0.75rem 1rem;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .feature-grid,
  .pros-grid,
  .footer-grid,
  .book-form {
    grid-template-columns: 1fr;
  }

  .become-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-stage {
    min-height: 68vh;
  }
}
