:root {
  --green: #0b6438;
  --dark: #06472a;
  --orange: #f58220;
  --cream: #fbf8f1;
  --ink: #19221d;
  --muted: #667268;
  --line: #dbe3d9;
  --white: #fff;
  --r: 18px;
  --wrap: 1180px;
   --radius-lg:    22px;
  --radius-md:    14px;
  --shadow-soft:  0 10px 30px rgba(28,92,56,.10);
}
* {
  box-sizing: border-box;
   margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, Tajawal, sans-serif;
  line-height: 1.65;
  overflow-x: clip;
}
img,
svg {
  max-width: 100%;
}
img {
  height: auto;
}
body[dir="rtl"] {
  font-family: Tajawal, Manrope, sans-serif;
}
.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip {
  position: absolute;
  inset-inline-start: -999px;
}
.skip:focus {
  inset-inline-start: 15px;
  top: 12px;
  z-index: 99;
  background: #fff;
  padding: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fbf8f1ed;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  max-width: 126px;
  max-height: 54px;
}
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
.menu > a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.menu > a.active,
.menu > a:hover {
  color: var(--green);
  border-color: var(--orange);
}
.langs {
  display: flex;
  gap: 6px;
  color: var(--muted);
}
.langs .on {
  color: var(--orange);
}
.nav-cta,
.button {
  background: var(--green);
  color: #fff;
  padding: 11px 17px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid var(--green);
  transition: 0.25s;
}
.nav-cta:hover,
.button:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.button.alt {
  background: transparent;
  color: var(--green);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
  color: var(--green);
}
.hero {
  overflow: hidden;
  min-height: 650px;
  position: relative;
  background:
    radial-gradient(circle at 80% 30%, #fbe0c3 0 12%, transparent 13%),
    var(--cream);
  display: flex;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  border: 54px solid var(--orange);
  border-radius: 50%;
  inset-inline-end: -180px;
  top: 50px;
  opacity: 0.9;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 70px 0;
}
.eyebrow {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  margin: 15px 0;
  color: var(--green);
}
.hero h1 span {
  display: block;
  color: var(--orange);
}
.hero p {
  font-size: 18px;
  max-width: 460px;
  color: #3e4b42;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-art {
  min-height: 500px;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-art img {
  width: min(100%, 490px);
  height: 480px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero-art:after {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  background: #fff;
  border-radius: 48% 52% 45% 55%;
  transform: rotate(-12deg);
  box-shadow: 0 24px 50px #0b64381c;
}
.section {
  padding: 105px 0;
}
.section-head {
  max-width: 620px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--green);
  margin: 8px 0;
}
.section-head p {
  color: var(--muted);
}
.usps {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp {
  padding: 27px 22px;
  border-inline-end: 1px solid var(--line);
}
.usp b {
  display: block;
  color: var(--green);
  font-size: 17px;
}
.usp i {
  display: block;
  color: var(--orange);
  font-style: normal;
  font-size: 26px;
}
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-img {
  height: 460px;
  border-radius: var(--r);
  overflow: hidden;
  background: #e5ebdf;
}
.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.text-lead {
  font-size: 19px;
  color: #344139;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid #e6ece4;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 34px #143e2314;
}
.product-image {
  background: #f2f5ee;
  display: block;
  height: 245px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: 0.4s;
}
.product-gallery { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery img { width: 110px; height: 88px; object-fit: contain; background: #f2f5ee; }
.product-thumbnail { cursor: pointer; border: 2px solid transparent; transition: border-color .2s, transform .2s; }
.product-thumbnail:hover, .product-thumbnail:focus, .product-thumbnail.is-active { border-color: var(--orange); outline: 0; transform: translateY(-2px); }
.product-card:hover img {
  transform: scale(1.06);
}
.product-copy {
  padding: 18px;
}
.product-copy span {
  font-size: 12px;
  color: var(--orange);
  font-weight: 800;
}
.product-copy h3 {
  margin: 3px 0;
  font-size: 22px;
  color: var(--green);
}
.product-copy p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 13px;
}
.product-copy a:last-child {
  font-weight: 800;
  color: var(--green);
  font-size: 14px;
}
.stats {
  background: var(--green);
  color: #fff;
}
.stats .section-head h2 {
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  border-top: 1px solid #ffffff55;
  padding-top: 15px;
}
.stat b {
  font-size: 42px;
  color: #ffd19e;
  display: block;
}
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 28px 0;
}
.track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.partner {
  width: 180px;
  height: 80px;
  margin-inline: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #6f7a70;
  font-size: 12px;
  font-weight: 800;
}
.cta {
  background: var(--orange);
  color: #fff;
  padding: 65px 0;
}
.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin: 0;
  max-width: 700px;
}
.cta .button {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.page-hero {
  padding: 95px 0 74px;
  background: linear-gradient(115deg, #e8f0e4 0 52%, #fbddbc 52%);
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  border: 30px solid var(--orange);
  border-radius: 50%;
  top: -115px;
  inset-inline-end: 11%;
  display: none;
}
.page-hero:before {
  content: "";
  position: absolute;
  top: 62px;
  inset-inline-end: 14.5%;
  width: 300px;
  height: 300px;
  background: url("../images/logo-tab.png") center / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.crumb {
  display: flex;
  gap: 9px;
  font-size: 13px;
  color: #607166;
}
.crumb a {
  color: var(--green);
  font-weight: 800;
}
.page-hero h1 {
  color: var(--green);
  font-size: clamp(3rem, 6vw, 5.3rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 18px 0 6px;
}
.page-hero p {
  font-size: 18px;
  margin: 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info-card {
  padding: 24px;
  background: #fff;
  border-top: 4px solid var(--orange);
}
.info-card h3 {
  color: var(--green);
  margin: 0;
}
.timeline {
  display: grid;
  gap: 20px;
}
.step {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 22px;
  padding: 24px;
  background: #fff;
  border-inline-start: 4px solid var(--orange);
}
.step b {
  color: var(--orange);
  font-size: 24px;
}
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter {
  padding: 9px 15px;
  background: transparent;
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 800;
  color: var(--green);
  cursor: pointer;
}
.filter.active,
.filter:hover {
  background: var(--green);
  color: #fff;
}
.hidden {
  display: none;
}
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.detail-image {
  height: 500px;
  background: #eef3eb;
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.detail h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--green);
  line-height: 1;
  margin: 8px 0;
}
.spec {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.spec-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:0 20px; margin:22px 0; }
.spec-grid .spec { display:flex; flex-direction:column; gap:3px; }
.spec-grid .spec b { color:var(--green); }
.flavour-list { display:flex; flex-wrap:wrap; gap:8px; margin:10px 0 26px; }
.flavour-list span { background:#edf3e9; color:var(--green); border-radius:999px; padding:6px 12px; font-size:13px; font-weight:700; }
.related { background:#f1f4ed; }
.social-note { color:var(--muted); font-size:13px; margin-top:18px; }
.form {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--line);
}
.form label {
  display: block;
  font-weight: 800;
  margin: 12px 0 5px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd7cd;
  background: #fff;
  font: inherit;
}
.form textarea {
  min-height: 130px;
}
.notice {
  padding: 12px;
  background: #edf6e9;
  color: var(--green);
  border-inline-start: 4px solid var(--green);
}
.error {
  color: #9a321f;
}
.site-footer {
  background: #102d1d;
  color: #d9e6d9;
  padding: 60px 0 20px;
}
.video-wrapper {
    position: relative;
    width: min(100%, 300px);
    aspect-ratio: 9 / 16;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 18px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
}
.social-links a:hover { background: #e0e0e0; }
.social-links a svg { width: 20px; height: 20px; fill: currentColor; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.site-footer img {
  filter: brightness(0) invert(1);
  max-width: 130px;
}
.site-footer h3 {
  color: #fff;
  margin-top: 0;
}
.site-footer a {
  display: block;
  margin: 8px 0;
}
.footer-facebook {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}
.site-footer .footer-facebook-icon {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 19px;
}
.site-footer .footer-instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin: 0;
}
.site-footer .footer-instagram-icon img {
  display: block;
  width: 22px;
  height: 22px;
  max-width: none;
  filter: none;
}
.copyright {
  border-top: 1px solid #ffffff25;
  margin-top: 36px;
  padding-top: 18px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.wa {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px #0003;
  font-size: 27px;
  z-index: 19;
}
.wa svg { width: 25px; height: 25px; display: block; fill: #fff; }
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .menu {
    position: absolute;
    top: 82px;
    inset-inline: 0;
    background: #fbf8f1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 14px 24px #123b2018;
  }
  .menu > a,
  .menu .langs {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .menu.open {
    display: flex;
  }
  .nav-cta {
    align-self: stretch;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .about-block,
  .content-grid,
  .detail {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 58px 0 30px;
  }
  .hero-art {
    min-height: 300px;
    order: -1;
  }
  .hero-art img {
    height: 300px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .usps,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 65px 0;
  }
  .about-block {
    gap: 28px;
  }
  .editorial-img {
    height: 300px;
  }
  .cta-grid {
    display: block;
  }
  .cta .hero-actions {
    margin-top: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 64px 0;
  }
  .detail-image {
    height: 360px;
  }
}
@media (max-width: 440px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .usps {
    grid-template-columns: 1fr;
  }
  .usp {
    border-bottom: 1px solid var(--line);
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* Homepage: sunlit orchard product launch */
.site-header:has(+ main .hero) {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  border: 0;
}
.site-header:has(+ main .hero) .nav {
  height: 78px;
  background: rgba(255, 255, 255, 0.96);
  padding-inline: 24px;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 10px 25px rgba(38, 76, 37, 0.08);
}
.site-header:has(+ main .hero) .brand img {
  max-height: 51px;
}
.hero {
  min-height: 590px;
  background:
    radial-gradient(
      ellipse at 4% 50%,
      rgba(255, 238, 164, 0.75),
      transparent 31%
    ),
    radial-gradient(
      ellipse at 77% 16%,
      rgba(223, 247, 242, 0.88),
      transparent 33%
    ),
    linear-gradient(105deg, #fffdf6 0%, #f8f5e7 48%, #eff9e9 100%);
}
.hero:before {
  width: 360px;
  height: 360px;
  border: 0;
  background: radial-gradient(
    circle,
    rgba(255, 189, 46, 0.14),
    transparent 69%
  );
  inset-inline-end: 6%;
  top: 20px;
  opacity: 1;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 36%),
    radial-gradient(
      ellipse at -2% 98%,
      rgba(75, 143, 47, 0.3),
      transparent 20%
    ),
    radial-gradient(
      ellipse at 104% 37%,
      rgba(70, 140, 44, 0.25),
      transparent 22%
    );
}
.hero-grid {
  min-height: 590px;
  padding: 94px 0 30px;
  gap: 0;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 14px;
}
.hero .eyebrow {
  display: none;
}
.hero h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 11px;
  font-weight: 800;
}
.hero h1 span {
  margin-top: 1px;
}
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #263b2d;
  margin: 0;
  max-width: 430px;
}
.hero-actions {
  margin-top: 19px;
  gap: 11px;
}
.hero .button {
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  box-shadow: 0 5px 13px rgba(5, 81, 41, 0.12);
}
.hero .button.alt {
  border-color: var(--orange);
  color: #d96810;
  background: rgba(255, 255, 255, 0.72);
}
.hero .button.alt:hover {
  color: #fff;
  background: var(--orange);
}
.hero-art {
  min-height: 470px;
  height: 480px;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: 1;
}
.hero-art:after {
  display: none;
}
.hero-art img {
  width: min(110%, 650px);
  height: 530px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 13px rgba(80, 77, 21, 0.15));
  transform: translate(4%, 19px);
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 500px;
  margin-top: 27px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 100, 56, 0.18);
  gap: 7px;
}
.hero-benefit {
  min-width: 0;
  color: var(--green);
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1px;
}
.benefit-icon {
  width: 25px;
  height: 25px;
  color: var(--green);
  margin-bottom: 2px;
}
.hero-benefit:nth-child(3) .benefit-icon {
  color: var(--orange);
}
.hero-benefit b {
  font-size: 11px;
  white-space: nowrap;
}
.hero-benefit span {
  font-size: 10px;
  color: #415949;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .site-header:has(+ main .hero) {
    position: relative;
  }
  .site-header:has(+ main .hero) .nav {
    height: 70px;
    padding-inline: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .site-header:has(+ main .hero) .menu {
    top: 70px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    min-height: 0;
    padding: 25px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-copy {
    width: 100%;
    padding-top: 0;
  }
  .hero-art {
    order: -1;
    width: 100%;
    min-height: 310px;
    height: 325px;
  }
  .hero-art img {
    height: 355px;
    width: min(115%, 540px);
    transform: translateY(15px);
  }
  .hero h1 {
    font-size: clamp(2.55rem, 10vw, 3.7rem);
  }
  .hero p {
    font-size: 15px;
  }
  .hero-benefits {
    max-width: none;
    margin-top: 22px;
  }
  .hero-benefit b {
    font-size: 10px;
  }
  .hero-benefit span {
    font-size: 9px;
  }
  .hero .button {
    font-size: 12px;
  }
}
@media (max-width: 440px) {
  .hero-art {
    min-height: 255px;
    height: 270px;
  }
  .hero-art img {
    height: 300px;
  }
  .hero-benefits {
    gap: 3px;
  }
  .benefit-icon {
    width: 21px;
    height: 21px;
  }
  .hero-benefit b {
    font-size: 9px;
    white-space: normal;
  }
  .hero-benefit span {
    font-size: 8px;
    white-space: normal;
  }
  .hero h1 {
    font-size: 2.55rem;
  }
}

/* Directional placement: Arabic content reads RTL without reversing the visual hero composition. */
.site-header:has(+ main .hero) .nav {
  direction: ltr;
}
.site-header:has(+ main .hero) .menu {
  direction: ltr;
}
html[dir="rtl"] .site-header:has(+ main .hero) .menu {
  direction: rtl;
}
.hero-grid {
  direction: ltr;
  grid-template-areas: "copy art";
}
.hero-copy {
  grid-area: copy;
  direction: rtl;
  text-align: right;
}
.hero-art {
  grid-area: art;
}
.hero-benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hero-benefit b,
.hero-benefit span {
  white-space: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 800px) {
  .hero-grid {
    display: flex;
    direction: inherit;
  }
  .hero-copy {
    direction: rtl;
    text-align: right;
  }
  html[dir="ltr"] .hero-copy {
    text-align: left;
    direction: ltr;
  }
  .site-header:has(+ main .hero) .nav {
    direction: inherit;
  }
  .site-header:has(+ main .hero) .menu {
    direction: inherit;
  }
}
html[dir="ltr"] .hero-copy {
  direction: ltr;
  text-align: left;
}

/* Homepage rebuilt from the supplied composition; hero graphic remains a CSS background. */
.home-page {
  background: #fffdf9;
}
.site-header:has(+ .home-page) {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.site-header:has(+ .home-page) .nav {
  height: 110px;
  width: min(100%, 1440px);
  max-width: none;
  background: #fff;
  border-radius: 0 0 34px 34px;
  padding-inline: max(5vw, 32px);
  box-shadow: 0 10px 28px rgba(16, 69, 37, 0.09);
  direction: ltr;
}
.site-header:has(+ .home-page) .nav-cta {
  display: none;
}
.site-header:has(+ .home-page) .menu {
  font-size: 14px;
  gap: clamp(16px, 2.4vw, 38px);
  direction: rtl;
}
.site-header:has(+ .home-page) .brand img {
  max-width: 175px;
  max-height: 72px;
}
.home-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: url("../images/background.png") center / cover no-repeat;
}
.home-hero-inner {
  width: min(92%, 1320px);
  min-height: 100vh;
  min-height: 100svh;
  padding: 118px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-rows: 1fr auto;
  align-items: stretch;
  column-gap: clamp(12px, 3vw, 52px);
  direction: ltr;
}
.home-hero-copy {
  direction: rtl;
  text-align: right;
  align-self: center;
  padding-bottom: 14px;
}
.home-hero h1 {
  margin: 0;
  color: #05652f;
  font-size: clamp(4rem, 5vw, 4.85rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.home-hero h1 span,
.home-section-title em,
.home-about h2 em {
  display: block;
  color: #ff7817;
  font-style: normal;
}
.home-hero p {
  font-size: clamp(1.125rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.8;
  max-width: 480px;
  margin: 17px 0 0;
}
.home-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.home-hero-products {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0;
  line-height: 0;
}
.home-hero-products img {
  display: block;
  width: 100%;
  max-height: min(760px, calc(100svh - 120px));
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  transform: translateY(-14px);
}
.palestine-badge {
  position: absolute;
  inset-inline-end: clamp(5%, 11vw, 18%);
  bottom: clamp(4%, 7vw, 12%);
  z-index: 2;
  display: flex;
  width: clamp(100px, 9vw, 132px);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #075a35;
  box-shadow: 0 7px 16px rgba(10, 50, 29, .25);
  color: #fff;
  line-height: 1.15;
  text-align: center;
}
.palestine-badge strong { font-size: clamp(11px, .9vw, 14px); }
.palestine-badge small { font-size: clamp(8px, .65vw, 10px); font-weight: 700; }
.palestine-badge .flag { position: relative; display: flex; width: 34px; height: 18px; flex-direction: column; overflow: hidden; }
.palestine-badge .flag::before { content: ""; position: absolute; z-index: 1; left: 0; top: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid #d5202a; }
.palestine-badge .flag i { flex: 1; background: #151b18; }
.palestine-badge .flag i:nth-child(2) { background: #fff; }
.palestine-badge .flag i:nth-child(3) { background: #159447; }
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: clamp(170px, 13vw, 190px);
  min-height: 54px;
  padding: 10px 20px;
  border: 1px solid #05652f;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.2s;
}
.home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #075a2b22;
}
.home-button.solid {
  background: #05652f;
  color: white;
}
.home-button.outline {
  border-color: #ff7817;
  color: #e5650d;
  background: #fff;
}
.home-benefits {
  grid-column: 1;
  display: flex;
  width: min(100%, 490px);
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.home-benefits > div {
  flex: 1;
  min-width: 0;
  text-align: center;
  border-inline-start: 1px solid #b9c5b5;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  padding: 0 11px;
}
.home-benefits > div:first-child {
  border: 0;
}
.home-benefits svg {
  color: #05652f;
  width: 29px;
  height: 29px;
  margin-bottom: 5px;
}
.home-benefits > div:nth-child(3) svg {
  color: #ff7817;
}
.home-benefits b {
  font-size: 13px;
}
.home-benefits small {
  font-size: 11px;
  margin-top: 3px;
  font-weight: 700;
}
.home-about {
  padding: 78px 0 66px;
  background: #fffdf9;
}
.home-about-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 90px;
  align-items: center;
  direction: ltr;
}
.home-about-grid > * {
  direction: rtl;
  text-align: right;
}
.home-about figure {
  height: 355px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 32px #073b211a;
}
.home-about figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-about-video {
  display: block;
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  background: #073b21;
  box-shadow: 0 16px 32px #073b211a;
  object-fit: cover;
}
.kicker {
  color: #ff7817;
  font-weight: 800;
  font-size: 14px;
}
.home-about h2,
.home-section-title h2 {
  font-size: clamp(2.25rem, 3.9vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: #05652f;
  margin: 7px 0 13px;
}
.home-about p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}
.about-points > div {
  border-inline-start: 1px solid #c9d2c6;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  color: #05652f;
  font-size: 27px;
  line-height: 1.15;
}
.about-points > div:first-child {
  border: 0;
}
.about-points b {
  font-size: 13px;
  color: #172b1d;
  margin-top: 5px;
}
.about-points span {
  font-size: 12px;
  color: #172b1d;
}
.home-products {
  padding: 38px 0 55px;
  background: #fff;
}
.home-section-title {
  text-align: center;
  direction: rtl;
}
.home-section-title h2 {
  margin-bottom: 4px;
}
.home-section-title h2 em {
  display: inline;
}
.home-section-title p {
  margin: 0 0 21px;
  font-size: 14px;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
}
.home-product {
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 20px #143c1c11;
  padding: 10px 9px 28px;
  border: 1px solid #edf0e9;
}
.home-product > a:first-child {
  height: 157px;
  display: grid;
  place-items: center;
}
.home-product img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: 0.25s;
}
.home-product:hover img {
  transform: translateY(-5px) scale(1.04);
}
.home-product h3 {
  font-family: "Tajawal", sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: #075f31;
}
.home-product p {
  color: #ef791d;
  font-size: 11px;
  font-weight: 700;
  margin: 4px 0 0;
}
.home-product-copy {
  position: relative;
  z-index: 1;
  width: calc(100% - 14px);
  margin: -38px auto 0;
  padding: 9px 7px 8px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,250,244,.86));
  box-shadow: 0 7px 18px rgba(13, 70, 35, .13);
  backdrop-filter: blur(6px);
}
.product-plus {
  position: absolute;
  bottom: -12px;
  right: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff7817;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 4px 8px #e6752044;
}
.product-all {
  text-align: center;
  margin: 30px 0 0;
}
.home-impact {
  padding: clamp(28px, 8vw, 10px) 0;
  background: #064528;
  color: #fff;
}
.impact-layout {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.5fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
}
.impact-intro .kicker {
  color: #f9b66a;
}
.impact-intro h2 {
  margin: 10px 0 15px;
  color: #fff;
  font-size: clamp(2.35rem, 4.1vw, 4.3rem);
  letter-spacing: -.05em;
  line-height: 1.05;
}
.impact-intro p {
  max-width: 430px;
  margin: 0;
  color: #d9eadc;
  line-height: 1.85;
}
.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid #ffffff35;
}
.impact-stats > div {
  min-height: 145px;
  padding: 22px 14px;
  display: grid;
  align-content: center;
  text-align: center;
  border-inline-start: 1px solid #ffffff35;
}
.impact-stats > div:first-child { border-inline-start: 0; }
.impact-stats b {
  display: block;
  color: #ff9b4b;
  font-size: clamp(2.35rem, 3.3vw, 3.6rem);
  line-height: 1;
}
.impact-stats span {
  margin-top: 12px;
  color: #d9eadc;
  font-size: 12px;
}
.home-quality {
  padding: clamp(72px, 8vw, 120px) 0;
  background: #fff8e9;
}
.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 130px);
  direction: rtl;
}
.quality-copy { direction: rtl; text-align: right; }
.quality-copy h2 {
  max-width: 520px;
  margin: 10px 0 16px;
  color: #075832;
  font-size: clamp(2.45rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.quality-copy h2 em { color: #ed6e17; font-style: normal; }
.quality-copy p { max-width: 500px; margin: 0; color: #425a47; font-size: 16px; line-height: 1.9; }
.quality-principles { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.quality-principles li { display: flex; align-items: center; gap: 12px; color: #075832; font-weight: 800; }
.quality-principles li::before { content: ""; width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; background: #ef741b; box-shadow: 0 0 0 5px #ef741b25; }
.quality-visual { position: relative; min-height: 460px; margin: 0; padding: 0 35px 35px 0; }
.quality-main { display: block; width: 100%; height: 460px; object-fit: cover; border-radius: 3px 70px 3px 70px; box-shadow: 20px 22px 0 #075832; }
.quality-detail { position: absolute; object-fit: cover; border: 7px solid #fff8e9; box-shadow: 0 12px 28px #17412522; }
.quality-lab { width: 180px; height: 130px; inset-inline-start: -40px; bottom: 18px; }
.quality-inspection { width: 140px; height: 105px; inset-inline-end: 0; top: 22px; }
}
.home-partners {
  padding: 18px 0 42px;
  background: #fff;
}
.home-partners h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 0 16px;
  font-size: 22px;
  color: #05652f;
}
.home-partners h2 span {
  height: 1px;
  width: 150px;
  background: #ced8ce;
}
.home-partners h2 i {
  font-style: normal;
}
.partner-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.partner-row > div {
  height: 62px;
  background: #fff;
  border: 1px solid #edf0e9;
  border-radius: 9px;
  box-shadow: 0 5px 14px #133d1910;
  display: grid;
  place-items: center;
}
.partner-row img {
  max-width: 88%;
  max-height: 45px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
}
.home-contact {
  background: #fff;
  border-radius: 28px 28px 0 0;
  color: #ff7817;
  padding: 31px 0;
  text-align: center;
}
.home-contact h2 {
  font-size: 32px;
  line-height: 1;
  margin: 0 0 8px;
}
.home-contact p {
  margin: 0 0 14px;
}
.home-button.white {
  background: #e9670d;
  border-color: #fff;
  color: #fff;
}
html[dir="ltr"] .home-hero-copy,
html[dir="ltr"] .home-about-grid > *,
html[dir="ltr"] .quality-copy {
  direction: ltr;
  text-align: left;
}
html[dir="ltr"] .quality-layout { direction: ltr; }
html[dir="ltr"] .home-section-title {
  direction: ltr;
}
html[dir="ltr"] .site-header:has(+ .home-page) .menu { direction: ltr; }
@keyframes home-hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-hero-copy { animation: home-hero-rise .65s ease-out both; }
.home-hero-products { animation: home-hero-rise .8s .12s ease-out both; }
.home-benefits { animation: home-hero-rise .65s .24s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .home-hero-copy, .home-hero-products, .home-benefits { animation: none; }
}
@media (max-width: 900px) {
  .site-header:has(+ .home-page) {
    position: relative;
  }
  .site-header:has(+ .home-page) .nav {
    height: 72px;
    border-radius: 0;
    padding-inline: 20px;
  }
  .site-header:has(+ .home-page) .brand img {
    max-width: 125px;
    max-height: 52px;
  }
  .site-header:has(+ .home-page) .menu {
    top: 72px;
    gap: 0;
    max-height: calc(100dvh - 72px);
  }
  .home-hero {
    /* At this breakpoint the header is in normal flow. */
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
  }
  .home-hero-inner {
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    padding-top: 34px;
    padding-bottom: 28px;
    column-gap: 10px;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  }
  .home-hero-copy { padding-bottom: 4px; }
  .home-hero h1 { font-size: clamp(2.55rem, 5.1vw, 3.45rem); white-space: nowrap; }
  .home-hero-products {
    width: 100%;
    max-width: none;
  }
  .home-hero-products img {
    width: 100%;
    max-height: min(620px, calc(100svh - 120px));
  }
  .home-actions { gap: 10px; }
  .home-button { width: min(48%, 170px); min-height: 50px; padding-inline: 8px; font-size: 13px; }
  .palestine-badge { inset-inline-end: 6%; bottom: 8%; }
  .home-benefits {
    width: 100%;
    max-width: 100%;
    justify-self: start;
  }
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .impact-layout { grid-template-columns: 1fr; gap: 35px; }
  .impact-intro { max-width: 610px; }
  .quality-layout { grid-template-columns: minmax(0, .85fr) minmax(300px, 1.15fr); gap: 45px; }
  .quality-visual { min-height: 390px; }
  .quality-main { height: 390px; }
  .partner-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .home-hero {
    /* A minimum preserves the full-viewport arrival while allowing the
       stacked copy, product image, actions, and benefits to grow naturally. */
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    background-position: center;
  }
  .home-hero-inner {
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    padding: 32px 0 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 18px;
  }
  .home-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
    white-space: normal;
  }
  .home-hero-copy { padding-bottom: 0; }
  .home-hero p {
    font-size: 15px;
    max-width: 330px;
  }
  .home-benefits {
    grid-column: 1;
    grid-row: 3;
    max-width: 360px;
    margin-top: 0;
  }
  .home-benefits b {
    font-size: 10px;
  }
  .home-benefits small {
    font-size: 9px;
  }
  .home-hero-products {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: min(108%, 620px);
  }
  .home-hero-products img {
    width: 100%;
    max-height: min(460px, 42svh);
    transform: translateY(4px);
  }
  .palestine-badge { width: 94px; inset-inline-end: 4%; bottom: 8%; }
  .home-actions { gap: 10px; }
  .home-button { width: min(48%, 185px); min-height: 50px; font-size: 13px; }
  .home-about {
    padding: 55px 0;
  }
  .home-about-grid {
    grid-template-columns: 1fr;
  }
  .home-about figure {
    height: 260px;
  }
  .home-about-video {
    width: min(100%, 290px);
  }
  .home-about h2,
  .home-section-title h2 {
    font-size: 2.4rem;
  }
  .about-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .about-points > div:nth-child(3) {
    border: 0;
  }
  .home-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .home-product > a:first-child {
    height: 135px;
  }
  .impact-layout {
    grid-template-columns: 1fr;
  }
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-stats > div { min-height: 118px; padding: 18px 10px; }
  .impact-stats > div:nth-child(odd) { border-inline-start: 0; }
  .impact-stats > div:nth-child(n + 3) { border-top: 1px solid #ffffff35; }
  .home-quality { padding: 68px 0; }
  .quality-layout { grid-template-columns: 1fr; gap: 45px; }
  .quality-copy h2 { font-size: 2.5rem; }
  .quality-visual { min-height: 330px; padding: 0 20px 20px 0; }
  .quality-main { height: 330px; border-radius: 3px 46px 3px 46px; box-shadow: 12px 14px 0 #075832; }
  .quality-lab { width: 125px; height: 92px; inset-inline-start: -8px; bottom: 4px; border-width: 4px; }
  .quality-inspection { width: 100px; height: 75px; top: 12px; border-width: 4px; }
  .partner-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-partners h2 span {
    width: 50px;
  }
}

/* Large-desktop refinement: keep the composition expansive while the copy
   retains its own protected column.  Smaller breakpoints keep their rules. */
@media (min-width: 1200px) {
  /* The homepage header deliberately follows the viewport rather than the
     regular site wrap, keeping its floating 20px outer clearance. */
  .site-header:has(+ .home-page) {
    inset-inline: 20px;
    width: auto;
  }

  .site-header:has(+ .home-page) .nav {
    width: 100%;
    max-width: none;
    padding-inline: clamp(28px, 3vw, 56px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(34px, 5vw, 88px);
  }

  .site-header:has(+ .home-page) .menu {
    width: 100%;
    justify-content: flex-start;
    gap: clamp(30px, 2.5vw, 55px);
  }

  .site-header:has(+ .home-page) .langs {
    margin-inline-start: auto;
  }

  html[dir="rtl"] .site-header:has(+ .home-page) .nav {
    direction: rtl;
  }

  .home-hero-inner {
    width: min(calc(100% - 40px), 1840px);
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    column-gap: 0;
  }

  .home-hero-copy {
    max-width: 500px;
    justify-self: start;
    margin-left: clamp(50px, 4.2vw, 80px);
  }

  .home-benefits {
    width: min(calc(100% - clamp(50px, 4.2vw, 80px)), 560px);
    min-height: 116px;
    align-items: stretch;
    justify-self: start;
    margin-left: clamp(50px, 4.2vw, 80px);
  }

  .home-benefits > div {
    position: relative;
    justify-content: center;
    padding: 12px 17px 10px;
  }

  .home-benefits > div::before {
    content: "";
    position: absolute;
    top: 13px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .64);
    box-shadow: 0 4px 22px rgba(255, 255, 255, .86);
    z-index: -1;
  }

  .home-benefits svg {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
    filter: drop-shadow(0 3px 8px rgba(255, 255, 255, .94));
  }

  .home-benefits b {
    color: #073f25;
    font-size: 17px;
    text-shadow: 0 1px 8px rgba(255, 255, 255, .9);
  }

  .home-benefits small {
    margin-top: 5px;
    color: #194c30;
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(255, 255, 255, .9);
  }
}

/* Fixed site navigation: the header remains available throughout the page
   without changing its established homepage presentation. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 100;
}

/* Regular pages retain the same visual starting position now that the header
   is removed from document flow. */
.site-header:not(:has(+ .home-page)) + main {
  padding-top: 82px;
}

/* The homepage header intentionally overlays its hero on wider screens. */
.site-header:has(+ .home-page) {
  position: fixed;
}

@media (max-width: 900px) {
  .site-header:has(+ .home-page) {
    position: fixed;
  }

  /* On compact screens the header used to occupy normal flow. Preserve the
     former clear space inside the hero while keeping the menu fixed. */
  .home-hero,
  .home-hero-inner {
    min-height: 100vh;
    min-height: 100svh;
  }

  .home-hero-inner {
    padding-top: 106px;
  }

  .site-header:not(:has(+ .home-page)) + main {
    padding-top: 82px;
  }
}

@media (max-width: 767px) {
  .home-hero-inner {
    padding-top: 104px;
  }
  .services-showcase__grid,
  .services-showcase__stats {
    grid-template-columns: 1fr;
  }

  .services-showcase__stats {
    gap: 4px;
    padding: 18px;
    border-radius: 28px;
  }

}
.services-showcase__stats {
  min-height: 90px;
  display: flex;
  justify-content: space-around;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  margin-top: 18px;
  padding: 16px 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b6438, #06472a);
  border-radius: 999px;
  box-shadow: 0 20px 42px rgba(15, 143, 183, 0.22);
}
.nova-credit {
    display: flex;
    align-items: center;
}

.nova-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #ffffff;
    min-width: 190px;
    min-height: 48px;
    padding: 10px 18px;
    border-radius: 10px;

    text-decoration: none;
    color: #111;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.nova-credit a:hover {
    transform: translateY(-2px);
}

.nova-credit img {
    display: block;
    width: 34px;
    height: 34px;
    max-width: none;
    object-fit: contain;
    filter: none;
}
