:root {
  --green: #087c38;
  --green-2: #0b5f32;
  --green-dark: #063c22;
  --gold: #d8b74b;
  --gold-2: #f1dd9d;
  --cream: #fff9ea;
  --soft: #f6fbf5;
  --text: #173326;
  --muted: #66766d;
  --white: #ffffff;
  --line: rgba(8, 124, 56, .16);
  --shadow: 0 20px 60px rgba(6, 60, 34, .14);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
body[dir="rtl"] { font-family: Tahoma, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; padding: 12px; background: var(--green); color: white; z-index: 999; }
.skip-link:focus { left: 16px; top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: 76px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo { width: 54px; height: 54px; border-radius: 16px; background: white; box-shadow: 0 8px 22px rgba(0,0,0,.08); display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(8,124,56,.12); }
.brand-logo img { width: 92%; height: 92%; object-fit: contain; }
.brand-text strong { display: block; color: var(--green-2); font-size: clamp(17px, 2vw, 23px); line-height: 1; letter-spacing: -.02em; }
.brand-text small { display: block; color: var(--muted); font-weight: 700; margin-top: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.main-nav { margin-inline-start: auto; display: flex; align-items: center; gap: 16px; }
.main-nav a { color: var(--text); font-weight: 800; font-size: 14px; padding: 10px 6px; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 8px; right: 8px; bottom: 4px; height: 3px; border-radius: 999px; background: var(--gold); transform: scaleX(0); transition: .22s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; font-weight: 900; color: var(--green-dark); }
.lang-btn { border: 0; background: transparent; color: var(--muted); font: inherit; cursor: pointer; padding: 8px 4px; }
.lang-btn.active { color: var(--green); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: white; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--green-dark); margin: 5px 0; border-radius: 99px; }
.hero {
  padding: 56px 0 36px;
  background:
    radial-gradient(circle at 18% 5%, rgba(216,183,75,.35), transparent 24%),
    linear-gradient(135deg, #fafff7 0%, #eff8ed 54%, #fff8e1 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px; align-items: center; }
.eyebrow, .section-kicker { margin: 0 0 10px; color: var(--green); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }
.hero h1 { font-size: clamp(34px, 5vw, 64px); line-height: .98; margin: 0; color: var(--green-dark); letter-spacing: -.045em; max-width: 760px; }
.hero-lead { margin: 22px 0 0; font-size: clamp(17px, 2vw, 22px); color: #3a5145; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; transition: .2s ease; cursor: pointer; }
.btn-primary { background: var(--green); color: white; box-shadow: 0 12px 24px rgba(8,124,56,.22); }
.btn-primary:hover { background: var(--green-2); transform: translateY(-1px); }
.btn-light { background: white; border-color: var(--line); color: var(--green-dark); }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #2d2300; }
.btn-white { background: white; color: var(--green-dark); border-color: rgba(255,255,255,.45); }
.quick-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.quick-social a { font-weight: 900; color: var(--green-2); background: rgba(8,124,56,.08); border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; font-size: 13px; }
.hero-media { position: relative; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); background: white; min-height: 420px; border: 8px solid white; }
.hero-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.media-badge { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); box-shadow: 0 14px 35px rgba(0,0,0,.15); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.media-badge strong { color: var(--green-dark); }
.media-badge span { color: var(--muted); font-weight: 800; }
.values { margin-top: -6px; padding: 0 0 38px; background: white; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; transform: translateY(-22px); }
.value-card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 16px 40px rgba(6,60,34,.08); }
.value-icon { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: rgba(8,124,56,.1); color: var(--green); font-weight: 900; font-size: 22px; margin-bottom: 14px; }
.value-card h3 { margin: 0 0 8px; color: var(--green-dark); font-size: 17px; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; }
.section { padding: 78px 0; }
.section:nth-of-type(odd) { background: white; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.split-text-first { grid-template-columns: .95fr 1.05fr; }
.section-copy h2, .section-head h2, .social-panel h2, .contact-band h2 { margin: 0; color: var(--green-dark); line-height: 1.08; letter-spacing: -.035em; font-size: clamp(28px, 4vw, 46px); }
.section-copy p:not(.section-kicker), .section-head p:not(.section-kicker) { color: #53675b; font-size: 17px; margin: 18px 0 0; }
.section-head.centered { text-align: center; max-width: 780px; margin: 0 auto 34px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.mini-stats span { padding: 16px; background: var(--cream); border: 1px solid rgba(216,183,75,.35); border-radius: 18px; }
.mini-stats strong, .mini-stats small { display: block; }
.mini-stats strong { color: var(--green-dark); font-size: 20px; }
.mini-stats small { color: var(--muted); font-weight: 800; }
.image-card { border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
.image-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.product-highlight img { object-fit: contain; background: white; padding: 14px; }
.products { background: linear-gradient(180deg, white, var(--soft)); }
.products-showcase { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 18px; align-items: stretch; }
.product-card, .product-list-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 45px rgba(6,60,34,.09); }
.product-card img { width: 100%; height: 350px; object-fit: cover; background: #fff; }
.large-card img, .vertical-card img { object-fit: cover; }
.product-card-content { padding: 22px; }
.product-card h3, .product-list-card h3 { margin: 0 0 8px; color: var(--green-dark); font-size: 22px; }
.product-card p { margin: 0; color: var(--muted); }
.product-list-card { padding: 24px; }
.range-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.range-list li { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 14px; background: var(--soft); border: 1px solid rgba(8,124,56,.08); color: #254838; font-weight: 800; }
.range-list li::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 5px rgba(216,183,75,.18); flex: 0 0 auto; }
.check-list { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 11px; }
.check-list li { padding-inline-start: 34px; position: relative; font-weight: 800; color: #294937; }
.check-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: -2px; width: 24px; height: 24px; border-radius: 50%; background: rgba(8,124,56,.12); color: var(--green); display: grid; place-items: center; font-weight: 900; }
.team-section { background: white; }
.team-img img { min-height: 360px; object-position: center; }
.gallery { background: linear-gradient(180deg, var(--soft), white); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.gallery figure { margin: 0; background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 15px 40px rgba(6,60,34,.08); }
.gallery img { width: 100%; height: 330px; object-fit: cover; background: #fff; }
.gallery figure:nth-child(2) img, .gallery figure:nth-child(3) img { object-position: top; }
.gallery figcaption { padding: 14px 18px; font-weight: 900; color: var(--green-dark); }
.social-section, .contact-band { background: var(--green-dark); color: white; padding: 64px 0; }
.social-panel { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; }
.social-panel .section-kicker.light, .contact-band .section-kicker.light { color: var(--gold-2); }
.social-panel h2, .contact-band h2 { color: white; }
.social-panel p, .contact-band p { color: rgba(255,255,255,.82); }
.social-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.social-btn { background: white; color: var(--green-dark); border-radius: 999px; padding: 13px 18px; font-weight: 900; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; }
.contact-lines { margin-top: 22px; display: grid; gap: 8px; }
.contact-lines p { margin: 0; }
.contact-lines a { color: white; font-weight: 800; }
.contact-actions-card { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 28px; padding: 24px; display: grid; gap: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.contact-actions-card img { width: 132px; height: 132px; object-fit: contain; background: white; border-radius: 22px; padding: 8px; margin: 0 auto 8px; }
.contact-note { text-align: center; font-size: 13px; margin: 6px 0 0; }
.footer { background: #042616; color: rgba(255,255,255,.86); padding: 44px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1fr; gap: 28px; }
.footer .brand-logo { width: 58px; height: 58px; }
.footer .brand-text strong { color: white; }
.footer .brand-text small { color: rgba(255,255,255,.66); }
.footer h3 { margin: 0 0 12px; color: var(--gold-2); font-size: 16px; }
.footer a, .footer p { display: block; margin: 6px 0; color: rgba(255,255,255,.78); }
.footer-bottom { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; }
.credit { color: rgba(255,255,255,.58) !important; }
.floating-contact { position: fixed; right: 18px; bottom: 18px; width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: white; display: grid; place-items: center; font-size: 24px; box-shadow: 0 16px 35px rgba(0,0,0,.28); z-index: 60; }
body[dir="rtl"] .floating-contact { right: auto; left: 18px; }
body[dir="rtl"] .hero-copy, body[dir="rtl"] .section-copy, body[dir="rtl"] .product-card-content, body[dir="rtl"] .product-list-card, body[dir="rtl"] .footer { text-align: right; }
body[dir="rtl"] .main-nav { margin-inline-start: 0; margin-inline-end: auto; }
body[dir="rtl"] .media-badge { direction: rtl; }
body[dir="rtl"] .range-list li::before { margin-inline-start: 0; }
@media (max-width: 980px) {
  .menu-toggle { display: block; margin-inline-start: auto; }
  .main-nav { position: absolute; left: 16px; right: 16px; top: 82px; display: none; grid-template-columns: 1fr; gap: 4px; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .lang-switch { margin-inline-start: 0; }
  .hero-grid, .split, .split-text-first, .social-panel, .contact-grid { grid-template-columns: 1fr; }
  .products-showcase { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .social-buttons { justify-content: flex-start; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 22px, 1160px); }
  .header-inner { height: 70px; gap: 10px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { display: none; }
  .hero { padding-top: 34px; }
  .hero-media, .hero-media img { min-height: 270px; }
  .media-badge { position: static; border-radius: 0; box-shadow: none; display: grid; }
  .hero h1 { font-size: 36px; }
  .value-grid, .mini-stats, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .product-card img, .gallery img { height: 300px; }
  .footer-bottom { display: block; }
}

.quick-social { align-items: center; }
.quick-social a { min-width: 116px; text-align: center; }
.large-card picture, .vertical-card picture, .gallery picture { display:block; }
.large-card img {
  object-fit: contain;
  object-position: center center;
  padding: 18px;
  background: #fff;
}
.vertical-card img {
  object-fit: contain;
  object-position: center center;
  padding: 14px;
  background: #fff;
}
@media (max-width: 620px) {
  .quick-social a { min-width: 0; flex: 1 1 calc(50% - 8px); }
  .large-card img, .vertical-card img { height: auto; min-height: 0; max-height: 360px; }
}

.price-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.priced-list li {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.priced-list li span {
  flex: 1 1 auto;
}
.priced-list li strong {
  flex: 0 0 auto;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(216,183,75,.32), rgba(8,124,56,.08));
  border: 1px solid rgba(216,183,75,.45);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  white-space: nowrap;
}
body[dir="rtl"] .priced-list li {
  flex-direction: row-reverse;
}
@media (max-width: 620px) {
  .priced-list li {
    align-items: flex-start;
  }
  .priced-list li strong {
    font-size: 12px;
  }
}


/* V2 social emphasis */
.btn-social-whatsapp, .quick-social a, .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-social-whatsapp { padding-inline: 18px 22px; }
.social-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 26px;
  line-height: 1;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.social-icon.facebook {
  background: #1877f2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: lowercase;
}
.social-icon.tiktok {
  background: #111;
  color: #fff;
  font-size: 14px;
}
.social-icon.whatsapp {
  background: #25d366;
  color: #fff;
  font-size: 14px;
}
.quick-social a {
  min-width: 138px;
  justify-content: center;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(8,124,56,.14);
  box-shadow: 0 10px 24px rgba(6,60,34,.08);
}
.social-buttons .social-btn {
  min-width: 148px;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.btn-social-whatsapp .social-icon {
  box-shadow: none;
}
@media (max-width: 620px) {
  .quick-social a { min-width: 0; width: auto; flex: 1 1 calc(50% - 8px); }
  .social-buttons .social-btn { min-width: 0; width: 100%; justify-content: center; }
}
