:root {
  --bg: #f7faf8;
  --text: #132421;
  --muted: #4e6b66;
  --surface: #ffffff;
  --line: #d4e3df;
  --primary: #0d9f6e;
  --primary-ink: #ffffff;
  --accent: #f5a31a;
  --hero-a: #eaf7f3;
  --hero-b: #fff7e7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

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

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at 15% 20%, var(--hero-a), transparent 45%),
    radial-gradient(circle at 85% 0%, var(--hero-b), transparent 40%),
    linear-gradient(180deg, #ffffff, #f3f8f6 60%);
  border-bottom: 1px solid var(--line);
}

.nav {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-logo {
  width: 220px;
  height: auto;
  max-height: 84px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

.lang-switch {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.lang-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  font-size: 0.9rem;
}

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

.hero-content {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 38px rgba(19, 36, 33, 0.08);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kicker {
  color: #0d7b57;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

h1 {
  margin: 0.75rem 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 18ch;
}

.subtitle {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 10px 20px rgba(13, 159, 110, 0.2);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.stats div {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  padding: 0.85rem;
  border-radius: 12px;
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.stats strong {
  display: block;
  margin-top: 0.2rem;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: #eef5f2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.card-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 0.85rem;
}

.card p,
.plan p,
.plan li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem;
}

.image-band {
  margin-top: 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 36, 33, 0.07);
}

.image-band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.plan.featured {
  border-color: var(--primary);
  box-shadow: 0 14px 30px rgba(13, 159, 110, 0.14);
}

.tag {
  font-size: 0.82rem;
  color: #0f7c59;
  font-weight: 700;
}

.price {
  margin: 0.2rem 0 0.8rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.compare-wrap {
  margin-top: 1.2rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem;
  text-align: left;
  color: var(--muted);
}

.compare-table th {
  color: var(--text);
  background: #f4faf7;
  font-weight: 700;
}

.rtl {
  direction: rtl;
}

.rtl .kicker {
  letter-spacing: 0;
  text-transform: none;
}

.rtl .plan ul {
  padding-right: 1rem;
  padding-left: 0;
}

body.rtl-mode {
  direction: rtl;
  text-align: right;
}

body.rtl-mode .nav {
  flex-direction: row-reverse;
}

body.rtl-mode .nav-links {
  flex-direction: row-reverse;
}

body.rtl-mode .hero-grid,
body.rtl-mode .split {
  direction: rtl;
}

body.rtl-mode .cta-row {
  justify-content: flex-end;
}

body.rtl-mode .compare-table th,
body.rtl-mode .compare-table td {
  text-align: right;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #f0f5f2;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.34);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid.three,
  .grid.two,
  .split,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .card-image {
    height: 150px;
  }

  .image-band img {
    height: 210px;
  }

  .nav-links {
    display: none;
  }

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

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 0.62rem 0.9rem;
  }
}
