:root {
  --bg: #f4f7f5;
  --text: #1a2e24;
  --primary: #00843d;
  --primary-dark: #006b31;
  --primary-light: #00a550;
  --accent: #e31837;
  --card: #ffffff;
  --muted: #5f7368;
  --border: #dde8e2;
}

* {
  box-sizing: border-box;
}

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

.local-preview-banner {
  background: #1a2e24;
  color: #b8e6c8;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
}

.center-block {
  text-align: center;
}

.section-cta {
  margin-top: 20px;
}

.section-jumps {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 104px;
  z-index: 8;
}

.section-jumps-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  white-space: nowrap;
}

.section-jumps a {
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
}

.section-jumps a:hover {
  background: #edf7f0;
  border-color: #c8e6d4;
}

.section-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #edf7f0;
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.container {
  width: min(1180px, 93%);
  margin: 0 auto;
}

.promo-strip {
  background: var(--primary-dark);
  color: #fff;
}

.promo-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.promo-inner p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.sticky-app-bar {
  position: sticky;
  top: 0;
  z-index: 12;
  background: var(--primary-dark);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-app-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-app-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.sticky-app-copy strong {
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-app-copy span {
  font-size: 0.72rem;
  opacity: 0.88;
}

.btn-sticky-download {
  flex-shrink: 0;
  text-decoration: none;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
}

.btn-sticky-download:hover {
  background: #edf7f0;
}

.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 600;
  cursor: pointer;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 46px;
  z-index: 10;
}

.header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(96px, 14vw, 140px);
  height: auto;
  display: block;
  object-fit: contain;
}

.cta-link,
.btn-primary,
.btn-header-download {
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-header-download {
  margin-inline-start: auto;
  white-space: nowrap;
}

.cta-link:hover,
.btn-primary:hover,
.btn-header-download:hover {
  background: var(--primary-dark);
}

.hero {
  background: var(--card);
  color: var(--text);
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.hero-kicker {
  display: inline-flex;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf7f0;
  border: 1px solid #c8e6d4;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.hero-kicker::before {
  content: "●";
  color: var(--accent);
  margin-inline-end: 6px;
  font-size: 0.65rem;
}

.hero-title {
  margin: 10px 0 8px;
  display: grid;
  gap: 2px;
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  line-height: 1.15;
  font-weight: 800;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-subtitle {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-download {
  display: inline-flex;
  margin-top: 14px;
  width: 100%;
  max-width: 320px;
  justify-content: center;
  padding: 12px 18px;
}

.coupon-card {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff9e8, #fff);
  border: 1px dashed #e8c96a;
}

.coupon-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9a7b1a;
  letter-spacing: 0.04em;
}

.coupon-code {
  margin: 4px 0;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
}

.coupon-desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.coupon-cta {
  flex-shrink: 0;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 10px;
  box-shadow: 0 4px 14px rgba(0, 80, 40, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.stat-card span {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.features {
  margin-top: 0;
  padding: 16px 0 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 80, 40, 0.05);
}

.feature-card h4 {
  margin: 0 0 4px;
  font-size: 0.92rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.products-section {
  padding: 36px 0 32px;
}

.post-products-banner {
  margin-top: 20px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 16px;
  background: linear-gradient(135deg, #006b31 0%, #00843d 55%, #00a550 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 107, 49, 0.22);
}

.post-products-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
}

.post-products-banner h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.post-products-banner p {
  margin: 10px auto 0;
  max-width: 640px;
  color: #ffe8eb;
  line-height: 1.55;
}

.post-products-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.post-products-download {
  background: #fff;
  color: var(--primary-dark);
}

.post-products-download:hover {
  background: #edf7f0;
}

.post-products-note {
  margin: 0;
  font-size: 0.9rem;
  color: #ffe8eb;
}

.post-products-stats {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.post-products-stats li {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 12px 8px;
}

.post-products-stats strong {
  display: block;
  font-size: 1.15rem;
}

.post-products-stats span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #ffe8eb;
}

.testimonials-section {
  padding: 0 0 64px;
}

.testimonials-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(20, 38, 62, 0.06);
}

.testimonial-text {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.testimonial-name {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.app-benefits-section {
  padding: 0 0 64px;
}

.app-benefits-card {
  background: linear-gradient(120deg, #edf7f0 0%, #fff 100%);
  border: 1px solid #c8e6d4;
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.app-benefits-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.app-benefits-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

.benefits-list {
  margin: 18px 0 0;
  padding-inline-start: 20px;
  color: #24364f;
  display: grid;
  gap: 8px;
}

.app-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
}

.newsletter-section {
  padding: 0 0 72px;
}

.newsletter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 10px 24px rgba(20, 38, 62, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.newsletter-copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.newsletter-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: min(440px, 100%);
  justify-content: flex-end;
}

.newsletter-input {
  flex: 1 1 220px;
  min-height: 44px;
  border: 1px solid #cfd7e5;
  border-radius: 999px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.newsletter-btn {
  border: 0;
  cursor: pointer;
}

.section-head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
}

.section-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-only-badge {
  flex-shrink: 0;
  background: #fff3f4;
  color: var(--accent);
  border: 1px solid #f5c2c9;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.deals-fade {
  margin-top: 18px;
  padding: 24px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed var(--border);
  text-align: center;
}

.deals-fade p {
  margin: 0 0 14px;
  font-size: 1.02rem;
  color: var(--text);
}

.deals-fade-cta {
  display: inline-flex;
}

.compare-section {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.compare-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  text-align: center;
  color: var(--primary-dark);
}

.compare-subtitle {
  margin: 8px auto 0;
  max-width: 560px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.compare-table {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  align-items: center;
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-head {
  background: var(--green-soft, #edf7f0);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-row .muted {
  color: #9aa8a0;
}

.highlight-col {
  color: var(--primary-dark);
  font-weight: 700;
}

.compare-cta-wrap {
  margin-top: 22px;
  text-align: center;
}

.savings-section {
  padding: 48px 0;
  background: #edf7f0;
}

.savings-card {
  display: grid;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.savings-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--primary-dark);
}

.savings-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.savings-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 0.88rem;
}

.savings-list strong {
  color: var(--primary-dark);
  white-space: nowrap;
}

.savings-visual {
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.savings-total-label {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.9;
}

.savings-total {
  margin: 6px 0;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
}

.savings-total-note {
  margin: 0 0 16px;
  font-size: 0.82rem;
  opacity: 0.88;
}

.savings-cta {
  display: inline-flex;
  background: #fff;
  color: var(--primary-dark);
}

.savings-cta:hover {
  background: #edf7f0;
}

.perks-section {
  padding: 48px 0;
  background: var(--bg);
}

.perks-grid {
  display: grid;
  gap: 14px;
}

.perk-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.perk-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.perk-card h4 {
  margin: 8px 0 6px;
  font-size: 1rem;
  color: var(--primary-dark);
}

.perk-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.perk-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.perk-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.push-preview {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f0f4f2;
  border: 1px solid var(--border);
}

.push-preview-bar {
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.push-preview strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
}

.push-preview p {
  margin: 4px 0 0;
  font-size: 0.72rem;
}

.guarantee-section {
  padding: 0 0 48px;
  background: var(--bg);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.guarantee-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.guarantee-grid span {
  font-size: 1.4rem;
  line-height: 1;
}

.guarantee-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

.guarantee-grid p {
  margin: 4px 0 0;
  font-size: 0.76rem;
  color: var(--muted);
}

.loyalty-section {
  padding: 48px 0;
  background: #fff;
}

.loyalty-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.loyalty-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.loyalty-card--featured {
  border-color: var(--primary);
  background: #edf7f0;
  box-shadow: 0 12px 28px rgba(0, 132, 61, 0.1);
}

.loyalty-tier {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.loyalty-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.loyalty-card p {
  margin: 6px 0 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.loyalty-tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.loyalty-tag--locked {
  background: #fff3f4;
  color: var(--accent);
  border: 1px solid #f5c2c9;
}

.slots-section {
  padding: 48px 0;
  background: #edf7f0;
}

.slots-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.slot-pill {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

.slot-pill--open {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: #edf7f0;
}

.slot-pill--locked {
  opacity: 0.8;
  color: var(--muted);
}

.slots-hint {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.brands-section {
  padding: 40px 0;
  background: var(--bg);
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.brands-row span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
}

.faq-section {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.faq-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  background: #fafcfb;
}

.faq-item summary {
  padding: 14px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.tracking-section {
  padding: 48px 0;
  background: var(--bg);
}

.tracking-section--featured {
  background: linear-gradient(180deg, #edf7f0 0%, var(--bg) 100%);
}

.tracking-card {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 16px 40px rgba(0, 132, 61, 0.12);
}

.tracking-steps {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.tracking-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.tracking-steps li:last-child {
  border-bottom: 0;
}

.tracking-steps li > span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  background: #eee;
  color: var(--muted);
}

.tracking-steps li.done > span {
  background: #edf7f0;
  color: var(--primary-dark);
}

.tracking-steps li.active > span {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 132, 61, 0.2);
}

.tracking-steps li.locked {
  opacity: 0.55;
}

.tracking-steps strong {
  display: block;
  font-size: 0.92rem;
}

.tracking-steps p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.tracking-cta {
  display: inline-flex;
}

.app-tour-section {
  padding: 48px 0;
  background: #fff;
}

.app-tour-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  margin-top: 18px;
}

.tour-screen {
  flex: 0 0 min(220px, 72vw);
  scroll-snap-align: start;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 80, 40, 0.08);
}

.tour-screen-head {
  background: var(--primary);
  color: #fff;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.tour-screen p {
  margin: 0;
  padding: 28px 16px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  min-height: 90px;
}

.notify-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #edf7f0, #fff);
}

.notify-card {
  display: grid;
  gap: 20px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.notify-compare {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.notify-compare li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg);
  font-size: 0.88rem;
}

.notify-muted {
  color: #9aa8a0;
  font-weight: 600;
}

.notify-highlight {
  color: var(--primary-dark);
  font-weight: 700;
}

.notify-cta {
  display: inline-flex;
  align-self: start;
}

.site-footer--rich {
  border-top: 1px solid #243a2f;
}

.footer-grid {
  display: grid;
  gap: 24px;
  padding: 36px 0 28px;
  grid-template-columns: 1fr;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7ee0a8;
}

.footer-col a,
.footer-col span {
  display: block;
  color: #b8cfc2;
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-about {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #8fb39f;
  line-height: 1.55;
  max-width: 280px;
}

.footer-logo {
  display: block;
}

.footer-bottom {
  border-top: 1px solid #243a2f;
  padding: 14px 0 28px;
  text-align: center;
}

.fab-download {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  z-index: 40;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 104, 55, 0.35);
}

.fab-download:hover {
  background: var(--primary-dark);
}

.products-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.product-card {
  background: var(--card);
  border: 1px solid #dbe1ea;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(20, 38, 62, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}

.product-card:hover {
  box-shadow: 0 14px 28px rgba(0, 132, 61, 0.14);
  transform: translateY(-2px);
}

.product-card.is-locked::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.28) 100%
  );
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.product-card.is-locked .product-app-badge {
  z-index: 4;
}

.product-card.is-locked .product-open-app {
  position: relative;
  z-index: 4;
  background: rgba(237, 247, 240, 0.95);
  border: 1px solid #c8e6d4;
  border-radius: 8px;
  padding: 6px 8px;
  text-align: center;
  margin-top: 10px;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.product-app-badge {
  position: absolute;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
}

.product-open-app {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
}

.product-image-wrap {
  width: 100%;
  height: 168px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f9fc;
  border-bottom: 1px solid #eef2f7;
  flex-shrink: 0;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-info {
  padding: 14px 14px 16px;
}

.product-title {
  margin: 0;
  font-size: 0.98rem;
  min-height: 46px;
}

.product-price {
  margin: 10px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: baseline;
  font-weight: 600;
}

.product-price .old {
  color: #8e98aa;
  text-decoration: line-through;
  font-size: 0.92rem;
}

.product-price .new {
  color: var(--primary-dark);
}

.product-card--download {
  border-style: dashed;
  border-color: #b8dcc8;
  background: linear-gradient(180deg, #fff 0%, #f4faf6 100%);
}

.product-download-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.product-plus-wrap {
  background: linear-gradient(135deg, #edf7f0 0%, #dff0e6 100%);
}

.product-plus-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--primary);
  background: #fff;
  border: 2px dashed #b8dcc8;
  box-shadow: 0 8px 18px rgba(0, 132, 61, 0.12);
}

.product-card--download .product-title {
  min-height: auto;
  color: var(--primary-dark);
}

.product-plus-text {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.product-plus-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.product-card--download:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 26px rgba(0, 132, 61, 0.16);
}

.product-card--download:hover .product-plus-cta {
  background: var(--primary-dark);
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .header-inner,
html[dir="rtl"] .promo-inner,
html[dir="rtl"] .sticky-app-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero-download {
    width: auto;
  }

  .savings-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

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

  .guarantee-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .notify-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

html[dir="rtl"] .post-products-banner {
  text-align: center;
}

html[dir="rtl"] .post-products-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .benefits-list {
  padding-inline-start: 0;
  padding-inline-end: 20px;
}

html[dir="rtl"] .newsletter-form {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 54px;
  }

  .brand-logo {
    width: clamp(96px, 28vw, 120px);
  }

  .cta-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 22px 0 16px;
  }

  .hero-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .hero-download {
    max-width: 100%;
  }

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

  .newsletter-form {
    width: 100%;
    justify-content: flex-start;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-image-wrap {
    height: 130px;
    padding: 8px;
  }

  .product-title {
    font-size: 0.86rem;
    min-height: 38px;
  }

  .compare-row {
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
    padding: 12px 10px;
    font-size: 0.78rem;
  }

  .sticky-app-copy strong {
    font-size: 0.8rem;
  }

  .fab-download {
    bottom: 14px;
    inset-inline-end: 14px;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .coupon-card {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .coupon-cta {
    text-align: center;
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0f2e22;
  color: #dceee4;
}

.footer-inner {
  padding: 28px 0 32px;
  text-align: center;
}

.footer-brand {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: #b8d4c4;
}

.footer-note {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: #8fb39f;
  max-width: 520px;
  margin-inline: auto;
}

.contact-section {
  padding: 48px 0 40px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.contact-head {
  text-align: center;
  margin-bottom: 24px;
}

.contact-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--primary-dark);
}

.contact-head p {
  margin: 8px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.contact-card h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.contact-card p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.contact-links a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

html[dir="rtl"] .contact-head,
html[dir="rtl"] .contact-card {
  text-align: center;
}

.site-footer p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.entry-popup {
  border: none;
  border-radius: 20px;
  padding: 0;
  max-width: min(calc(100vw - 2rem), 26rem);
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.entry-popup::backdrop {
  background: rgba(15, 24, 40, 0.62);
  backdrop-filter: blur(3px);
}

.entry-popup-inner {
  position: relative;
  padding: 28px 24px 22px;
  background: linear-gradient(135deg, #006b31 0%, #00843d 55%, #00a550 100%);
  color: #fff;
}

.entry-popup-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}

.entry-popup-close:hover {
  color: #fff;
}

.entry-popup-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding-inline-end: 28px;
}

.entry-popup-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  flex-shrink: 0;
}

.entry-popup-tag {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffe08a;
}

.entry-popup-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.entry-popup-body {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #ffecee;
}

.entry-popup-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  color: #fff;
}

.entry-popup-list li::before {
  content: "✓ ";
  color: #ffe08a;
  font-weight: 700;
}

.entry-popup-download {
  display: flex;
  justify-content: center;
  width: 100%;
  background: #fff;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.entry-popup-download:hover {
  background: #edf7f0;
}

.entry-popup-browse {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 14px;
}

.entry-popup-browse:hover {
  background: rgba(255, 255, 255, 0.14);
}

.entry-popup-dismiss {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.entry-popup-dismiss input {
  margin-top: 2px;
  flex-shrink: 0;
}

html[dir="rtl"] .entry-popup-inner {
  text-align: right;
}

/* Legal / policy pages */
.legal-footer {
  padding: 24px 0 32px;
}

.legal-footer .footer-note {
  text-align: center;
  margin: 0;
}

.legal-page .legal-header .brand-logo {
  width: clamp(96px, 14vw, 132px);
  height: auto;
}

.legal-page--red .legal-header .brand-logo {
  width: clamp(52px, 11vw, 68px);
  border-radius: 10px;
}

.legal-page--red .legal-back-link:hover,
.legal-page--red .legal-contact a {
  color: #e31e24;
}

.legal-page {
  background: #fff;
}

.legal-header .header-inner {
  align-items: center;
}

.legal-back-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.legal-back-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-main {
  padding: 32px 0 56px;
}

.legal-content {
  max-width: 760px;
}

.legal-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  line-height: 1.25;
}

.legal-updated {
  margin: 0 0 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3d5248;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.legal-section h3 {
  margin: 22px 0 8px;
  font-size: 0.98rem;
  color: var(--text);
}

.legal-section p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #3d5248;
}

.legal-contact a {
  color: var(--primary);
  font-weight: 600;
}

.legal-contact a:hover {
  color: var(--primary-dark);
}

.footer-note a {
  color: #7ee0a8;
  text-decoration: none;
}

.footer-note a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .legal-main {
    padding: 48px 0 72px;
  }
}
