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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #e6efe0;
  color: #03261b;
}

.page {
  min-height: 100vh;
}

/* Links & buttons baseline */
a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* --- Top bar --- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  background: #004c3f;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #00324b;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}

.pill.muted {
  color: #315448;
  border-color: rgba(255, 255, 255, 0.8);
}

.pill.link {
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: #065f46;
}

.btn-whatsapp {
  background: #059669;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35);
}

/* --- Hero --- */
.hero {
  background: #eef4e8;
  padding: 40px 0 40px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1.2;
}

.hero-right {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 11px;
  color: #5b7766;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #00324b;
}

.hero-sub {
  margin-top: 14px;
  font-size: 15px;
  max-width: 430px;
  color: #28513d;
}

.track-input-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.track-input-row input {
  flex: 1;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #cfe0c8;
  font-size: 14px;
}

.track-input-row input::placeholder {
  color: #93a89a;
}

.track-input-row button {
  min-width: 120px;
  border-radius: 12px;
  background: #059669;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.34);
}

.hero-payline {
  margin-top: 14px;
  font-size: 13px;
  color: #4a6455;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.chip {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: white;
  border: 1px solid #d7e5ce;
}

/* bubbles */
.bubble-row {
  margin-top: 18px;
  display: flex;
}

.bubble-row.right {
  justify-content: flex-start;
}

.bubble-question {
  display: inline-block;
  background: #036142;
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(3, 97, 66, 0.4);
}

.bubble-answer {
  background: white;
  padding: 12px 14px;
  border-radius: 14px;
  max-width: 320px;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  color: #08352a;
}

.bubble-answer .time {
  text-align: right;
  font-size: 11px;
  color: #8b9c8f;
  margin-top: 4px;
}

/* map / route */


/* --- Sections shared --- */
.section {
  padding: 40px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #08352a;
}

.section-sub {
  margin-top: 6px;
  font-size: 14px;
  color: #4c6957;
  max-width: 540px;
}

/* --- Features --- */
.section-features {
  background: #e4efe0;
}

.feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: 18px 16px;
  font-size: 14px;
  color: #325343;
  box-shadow: 0 14px 30px rgba(19, 54, 33, 0.08);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #08352a;
}

/* --- Value strip --- */
.section-value {
  background: #dbe8cf;
}

.value-inner {
  display: flex;
  align-items: center;
}

.value-copy h2 {
  font-size: 18px;
  margin: 0 0 6px;
}

.value-copy p {
  margin: 0;
  font-size: 14px;
  color: #315448;
}

.per-day {
  font-weight: 600;
}

/* --- Pricing --- */
.section-pricing {
  background: #eef4ea;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 35px rgba(18, 47, 32, 0.12);
  position: relative;
  font-size: 14px;
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #08352a;
}

.price {
  margin: 0;
  margin-bottom: 4px;
  font-size: 13px;
  color: #50665a;
}

.price-main {
  font-size: 26px;
  font-weight: 700;
  color: #043224;
}

.price-tagline {
  margin: 0 0 12px;
  font-size: 13px;
  color: #5b7766;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.pricing-card ul li {
  margin-bottom: 6px;
}

.pricing-btn {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #cddfd2;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  background: #f3f8f2;
  cursor: pointer;
}

.pricing-btn.primary {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.40);
}

.pricing-card-highlight {
  transform: translateY(-4px);
  border: 1px solid #a0e1c4;
}

.badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f97316;
  color: white;
  font-size: 11px;
  font-weight: 600;
}

/* --- CTA --- */
.section-cta {
  background: #d1e3d3;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-inner h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.cta-inner p {
  margin: 0;
  font-size: 14px;
  max-width: 520px;
  color: #345447;
}

.btn-whatsapp.large {
  padding: 10px 22px;
}

/* --- Footer --- */
.footer {
  background: #e4efe3;
  padding: 14px 0 30px;
  font-size: 12px;
  color: #5b7766;
}

.footer-inner {
  display: flex;
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .topbar-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
  }

  .topbar-right {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
