/* =========================================================
   VitaJoy — فيتاجوي لتجارة المواد الغذائية
   Palette taken from the 2026 company profile
   ========================================================= */
:root {
  --g950: #0f3222;
  --g900: #17422e;
  --g800: #1d5139;
  --g700: #235d44;
  --g600: #2b6e50;
  --brand: #1a6b3c;
  --lime: #94cf5e;
  --lime-600: #7fbd47;
  --lime-100: #e3f0d6;
  --mint-50: #f1f7ea;
  --sage: #a7b8ae;
  --olive: #b39c32;
  --sun: #ffde59;
  --orange: #e8612a;
  --berry: #d9536a;

  --ink: #17261e;
  --ink-2: #33443a;
  --muted: #5d6d63;
  --line: #dfe7da;
  --bg: #f6f8f4;
  --card: #ffffff;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 10px rgba(23, 66, 46, .06);
  --shadow: 0 14px 40px -18px rgba(23, 66, 46, .28);
  --shadow-lg: 0 30px 80px -30px rgba(15, 50, 34, .45);

  --f-display: "El Messiri", "Noto Sans Arabic", system-ui, sans-serif;
  --f-body: "Noto Sans Arabic", "Montserrat", system-ui, sans-serif;
  --f-latin: "Montserrat", "Noto Sans Arabic", system-ui, sans-serif;

  --header-h: 78px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.35; margin: 0; color: var(--g900); font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
.latin { font-family: var(--f-latin); letter-spacing: .01em; }
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 104px); position: relative; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.tag {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--f-display); font-weight: 600; font-size: .95rem;
  color: var(--g700); background: var(--lime-100);
  padding: .3em 1.1em .3em 1.8em;
  clip-path: polygon(0 50%, 14px 0, 100% 0, 100% 100%, 14px 100%);
  margin-bottom: 16px;
}
.tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-600); }
.tag.on-dark { background: rgba(148, 207, 94, .16); color: var(--lime); }
.sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
.sec-head h2 em { font-style: normal; color: var(--lime-600); }
.sec-head .lead { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--g700); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: .7em 1.6em;
  border-radius: 999px; border: 2px solid transparent;
  background: var(--bg); color: var(--fg);
  font-family: var(--f-display); font-weight: 600; font-size: 1.05rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(23, 66, 46, .55); }
.btn-lime { --bg: var(--lime); --fg: var(--g900); }
.btn-lime:hover { --bg: #a3d86f; }
.btn-ghost { --bg: transparent; --fg: var(--g700); border-color: var(--g700); }
.btn-ghost:hover { --bg: var(--g700); --fg: #fff; }
.btn-white { --bg: #fff; --fg: var(--g800); }
.btn-sm { min-height: 42px; padding: .45em 1.15em; font-size: .95rem; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(-4px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(15, 50, 34, .35); border-color: var(--line); background: rgba(255, 255, 255, .94); }
.nav { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav-links a {
  position: relative; padding: .45em .85em; border-radius: 999px;
  font-family: var(--f-display); font-weight: 600; font-size: 1rem; color: var(--ink-2);
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--g700); background: var(--mint-50); }
.nav-links a.active { color: var(--g700); background: var(--lime-100); }
.nav-cta { flex: none; }
.menu-btn {
  display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; align-items: center; justify-content: center; margin-inline-start: auto;
}
.menu-btn svg { width: 24px; height: 24px; color: var(--g800); }

@media (max-width: 1060px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .site-header.open { background: #fff; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: var(--header-h); inset-inline: 0;
    background: #fff; padding: 12px var(--gutter) 22px;
    border-bottom: 1px solid var(--line); box-shadow: 0 30px 40px -30px rgba(15, 50, 34, .35);
  }
  .site-header.open .nav-links a { padding: .8em 1em; font-size: 1.08rem; }
  .site-header.open .nav-links .mobile-cta { display: flex; margin-top: 10px; }
}
.nav-links .mobile-cta { display: none; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(28px, 5vw, 64px));
  padding-bottom: clamp(120px, 14vw, 170px);
  background:
    linear-gradient(180deg, rgba(246, 248, 244, .2), var(--bg) 96%),
    url("../img/pattern.webp") center / cover no-repeat,
    #f3f4f2;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(28px, 5vw, 72px); position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px 6px 8px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-family: var(--f-display); font-weight: 600; color: var(--g700); font-size: .98rem;
}
.eyebrow .dot { width: 28px; height: 28px; border-radius: 50%; background: var(--lime-100); display: grid; place-items: center; }
.eyebrow .dot svg { width: 16px; height: 16px; color: var(--g700); }
.hero h1 { margin-top: 22px; display: flex; flex-direction: column; gap: 0; }
.hero h1 .en {
  font-family: var(--f-latin); font-weight: 900; letter-spacing: -.035em;
  font-size: clamp(3.2rem, 8.4vw, 6.6rem); line-height: .95; color: var(--g700);
  direction: ltr; text-align: right;
}
.hero h1 .ar { font-family: var(--f-display); font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: #e9b824; line-height: 1.3; margin-top: 6px; }
.ribbon {
  display: inline-flex; align-items: center; margin-top: 18px;
  background: var(--lime); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  padding: .45em 1.2em .45em 2.2em; border-radius: 14px 0 0 14px;
  clip-path: polygon(0 50%, 26px 0, 100% 0, 100% 100%, 26px 100%);
  border-radius: 0 16px 16px 0;
  text-shadow: 0 1px 0 rgba(23, 66, 46, .25);
}
.hero-text { margin-top: 24px; max-width: 560px; color: var(--ink-2); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 28px; }
.hero-chips li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--g700); font-size: .96rem; }
.hero-chips svg { width: 20px; height: 20px; color: var(--lime-600); }

/* stripes (mirrors the cover of the profile) */
.hero-stripes { position: absolute; inset-block: 0; inset-inline-end: 0; width: 44%; z-index: 0; pointer-events: none; }
.hero-stripes span { position: absolute; top: -10%; bottom: -10%; transform: skewX(12deg); transform-origin: top; }
.hero-stripes .s1 { inset-inline-end: -8%; width: 58%; background: var(--g900); }
.hero-stripes .s2 { inset-inline-end: 44%; width: 9%; background: var(--g600); }
.hero-stripes .s3 { inset-inline-end: 55%; width: 4%; background: var(--lime); }
.hero-stripes .s4 { inset-inline-end: 8%; width: 5%; background: var(--lime); }
.hero-stripes .s5 { inset-inline-end: 16%; width: 7%; background: var(--g700); }

.hero-media { position: relative; justify-self: center; width: min(100%, 470px); }
.hero-arch {
  position: relative; z-index: 2;
  border-radius: 260px 260px 36px 36px; overflow: hidden;
  border: 12px solid #fff; background: #fff;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 440 / 594;
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-weight: 600; color: var(--g800); line-height: 1.4;
  animation: floaty 6s ease-in-out infinite;
}
.hero-float .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--lime-100); flex: none; }
.hero-float .ico svg { width: 24px; height: 24px; color: var(--g700); }
.hero-float small { display: block; font-family: var(--f-body); font-weight: 500; color: var(--muted); font-size: .8rem; }
.hero-float.f1 { inset-inline-end: -26px; top: 16%; }
.hero-float.f2 { inset-inline-start: -30px; bottom: 12%; animation-delay: -3s; }
.hero-float.f2 .ico { background: #fff4d2; }
.hero-float.f2 .ico svg { color: #c98a00; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* stats */
.stats-wrap { position: relative; z-index: 5; margin-top: calc(-1 * clamp(70px, 9vw, 96px)); }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); overflow: hidden;
}
.stat { padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 28px); display: flex; align-items: center; gap: 16px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; inset-inline-start: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.stat .ico { width: 54px; height: 54px; border-radius: 16px; background: var(--mint-50); display: grid; place-items: center; flex: none; }
.stat .ico svg { width: 28px; height: 28px; color: var(--g600); }
.stat b { display: block; font-family: var(--f-latin); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--g800); line-height: 1.1; }
.stat b.ar { font-family: var(--f-display); font-size: clamp(1.05rem, 1.7vw, 1.3rem); white-space: nowrap; line-height: 1.5; }
.stat span { color: var(--muted); font-size: .95rem; line-height: 1.5; }

/* =========================================================
   About
   ========================================================= */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.about-media { position: relative; max-width: 500px; justify-self: center; width: 100%; }
.circle-frame { position: relative; aspect-ratio: 1; border-radius: 50%; padding: 14px; background: #fff; box-shadow: var(--shadow-lg); z-index: 2; }
.circle-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.about-media::before {
  content: ""; position: absolute; z-index: 1; inset: -6% -10% 18% 22%;
  background: var(--g700); border-radius: 50% 50% 50% 12%;
  transform: rotate(-8deg);
}
.about-media::after {
  content: ""; position: absolute; z-index: 1; width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: var(--lime); inset-inline-end: -4%; bottom: -2%;
}
.about-badge {
  position: absolute; z-index: 3; inset-inline-start: -4%; bottom: 8%;
  background: var(--g900); color: #fff; border-radius: 20px; padding: 14px 20px;
  font-family: var(--f-display); box-shadow: var(--shadow);
}
.about-badge b { display: block; color: var(--sun); font-size: 1.3rem; }
.about-badge span { font-size: .92rem; opacity: .9; }

.about-body p + p { margin-top: 14px; }
.about-body > p { color: var(--ink-2); }
.about-body .highlight {
  margin-top: 22px; padding: 18px 22px; border-radius: var(--radius);
  background: var(--mint-50); border-inline-start: 5px solid var(--lime);
  font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; color: var(--g800);
}

.why { margin-top: clamp(56px, 8vw, 96px); display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: stretch; }
.why-title {
  background: var(--g800); color: #fff; border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; min-height: 240px;
}
.why-title::before { content: ""; position: absolute; inset: -30% -40% auto auto; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(148, 207, 94, .16); }
.why-title::after { content: ""; position: absolute; inset: auto auto -30% -20%; width: 55%; aspect-ratio: 1; border-radius: 50%; border: 18px solid rgba(148, 207, 94, .22); }
.why-title h3 { color: #fff; font-size: 2rem; position: relative; }
.why-title p { color: rgba(255, 255, 255, .78); position: relative; margin-top: 8px; }
.why-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; transition: transform .3s ease, box-shadow .3s ease; }
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-item .num { font-family: var(--f-latin); font-weight: 800; color: var(--lime-600); font-size: 1rem; letter-spacing: .08em; }
.why-item h4 { font-size: 1.22rem; margin-top: 6px; }
.why-item p { margin-top: 8px; color: var(--muted); font-size: .98rem; line-height: 1.85; }

/* =========================================================
   CEO message
   ========================================================= */
.ceo { background: var(--g900); color: #fff; overflow: hidden; }
.ceo::before {
  content: ""; position: absolute; inset-block: 0; inset-inline-end: 0; width: 38%;
  background:
    linear-gradient(102deg, transparent 0 30%, rgba(148, 207, 94, .9) 30% 33%, transparent 33% 40%, var(--g700) 40% 62%, transparent 62% 67%, rgba(148, 207, 94, .9) 67% 69%, transparent 69%);
  opacity: .9;
}
.ceo-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.ceo h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.ceo .quote-mark { width: 64px; height: 64px; color: var(--lime); opacity: .9; margin-bottom: 10px; }
.ceo blockquote { margin: 22px 0 0; font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 2.05; color: rgba(255, 255, 255, .9); }
.ceo .sign { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.ceo .sign .line { width: 48px; height: 3px; border-radius: 3px; background: var(--lime); }
.ceo .sign b { font-family: var(--f-display); font-size: 1.15rem; display: block; }
.ceo .sign span { color: rgba(255, 255, 255, .65); font-size: .92rem; }
.ceo-media { position: relative; }
.ceo-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; position: relative; z-index: 2; border: 8px solid rgba(255, 255, 255, .08); }
.ceo-media::after { content: ""; position: absolute; inset: 26px -18px -18px 26px; border-radius: var(--radius-lg); background: var(--lime); z-index: 1; }

/* =========================================================
   Vision / Mission / Goal
   ========================================================= */
.vmg { background: linear-gradient(180deg, var(--mint-50), var(--bg)); }
.vmg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vmg-card {
  position: relative; background: #fff; border-radius: var(--radius-lg); padding: 34px 30px 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.vmg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.vmg-card .ico { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; background: var(--lime-100); margin-bottom: 20px; }
.vmg-card .ico svg { width: 32px; height: 32px; color: var(--g700); }
.vmg-card h3 { font-size: 1.6rem; }
.vmg-card h3 small { font-family: var(--f-latin); font-size: .78rem; color: var(--olive); letter-spacing: .14em; display: block; font-weight: 700; }
.vmg-card p { margin-top: 12px; color: var(--ink-2); line-height: 2; }
.vmg-card.featured { background: var(--g800); border-color: var(--g800); color: #fff; }
.vmg-card.featured h3 { color: #fff; }
.vmg-card.featured h3 small { color: var(--sun); }
.vmg-card.featured p { color: rgba(255, 255, 255, .86); }
.vmg-card.featured .ico { background: rgba(148, 207, 94, .18); }
.vmg-card.featured .ico svg { color: var(--lime); }
.slogan {
  display: inline-block; margin-top: 16px; padding: 8px 18px; border-radius: 999px;
  background: var(--lime); color: var(--g900); font-family: var(--f-display); font-weight: 700; font-size: 1.2rem;
}
.vmg-card .corner { position: absolute; inset-inline-end: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--mint-50); }
.vmg-card.featured .corner { background: rgba(255, 255, 255, .06); }

/* =========================================================
   Values
   ========================================================= */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--line);
  position: relative; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.value::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, var(--lime), var(--g600)); transform: scaleX(0); transform-origin: right; transition: transform .45s ease; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.value:hover::after { transform: scaleX(1); }
.value .ico { width: 58px; height: 58px; border-radius: 50%; background: var(--g700); display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 0 0 7px var(--lime-100); }
.value .ico svg { width: 28px; height: 28px; color: #fff; }
.value h3 { font-size: 1.3rem; }
.value p { margin-top: 10px; color: var(--muted); font-size: .98rem; line-height: 1.95; }

/* philosophy */
.philo { margin-top: clamp(56px, 8vw, 96px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.philo-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.philo-media img { width: 100%; aspect-ratio: 5 / 4.6; object-fit: cover; }
.philo-media .label {
  position: absolute; inset-inline-start: 18px; bottom: 18px; background: rgba(255, 255, 255, .95);
  padding: 10px 16px; border-radius: 14px; font-family: var(--f-display); font-weight: 700; color: var(--g800);
}
.philo-list { display: grid; gap: 14px; margin-top: 8px; }
.philo-item { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.philo-item .ico { width: 58px; height: 58px; border-radius: 18px; background: var(--mint-50); display: grid; place-items: center; }
.philo-item .ico svg { width: 30px; height: 30px; color: var(--g600); }
.philo-item h4 { font-size: 1.2rem; }
.philo-item p { color: var(--muted); margin-top: 4px; line-height: 1.9; }

/* =========================================================
   Services
   ========================================================= */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.services-body > p { color: var(--ink-2); font-size: 1.08rem; }
.svc-list { margin-top: 26px; display: grid; gap: 10px; }
.svc-list li {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start;
  padding: 14px 16px; border-radius: 16px; background: var(--mint-50); border: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.svc-list li:hover { border-color: var(--lime); background: #fff; }
.svc-list .chk { width: 36px; height: 36px; border-radius: 50%; background: var(--g700); display: grid; place-items: center; }
.svc-list .chk svg { width: 18px; height: 18px; color: #fff; }
.svc-list b { font-family: var(--f-display); font-weight: 700; color: var(--g800); font-size: 1.05rem; }
.svc-list span { display: block; color: var(--muted); font-size: .94rem; line-height: 1.8; }
.services-media { position: relative; justify-self: center; width: min(100%, 420px); }
.services-media .frame { border-radius: var(--radius-lg); overflow: hidden; background: #a9d3bd; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.services-media .frame img { width: 100%; }
.services-media::before { content: ""; position: absolute; inset: -22px 40px 40px -22px; border-radius: var(--radius-lg); border: 2px dashed var(--lime); z-index: 1; }

/* ticker */
.ticker { background: var(--lime); color: var(--g900); overflow: hidden; padding-block: 16px; }
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker-track ul { display: flex; flex: none; }
.ticker li { display: inline-flex; align-items: center; gap: 14px; padding-inline: 22px; font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.ticker li svg { width: 22px; height: 22px; color: var(--g700); }
@keyframes ticker { to { transform: translateX(50%); } }

/* =========================================================
   Brands
   ========================================================= */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.brand-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform .35s ease, box-shadow .35s ease;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.brand-card .media { aspect-ratio: 4 / 3.3; background: var(--mint-50); overflow: hidden; position: relative; }
.brand-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.brand-card:hover .media img { transform: scale(1.05); }
.brand-card .media.contain img { object-fit: contain; padding: 14px; }
.brand-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.brand-card .word { font-family: var(--f-latin); font-weight: 800; font-size: 1.55rem; line-height: 1.1; letter-spacing: -.01em; direction: ltr; text-align: right; }
.brand-card .word small { display: block; font-family: var(--f-display); font-weight: 600; font-size: .95rem; color: var(--muted); letter-spacing: 0; margin-top: 4px; direction: rtl; }
.brand-card p { margin-top: 12px; color: var(--ink-2); font-size: .97rem; line-height: 1.9; flex: 1; }
.brand-card .count { display: inline-flex; margin-top: 14px; font-size: .88rem; font-weight: 600; color: var(--g600); background: var(--mint-50); padding: 3px 12px; border-radius: 999px; align-self: flex-start; }
.brand-card .btn { margin-top: 16px; align-self: flex-start; }
.w-enjoy { color: #1b1b1b; }
.w-enjoy i { font-style: normal; color: var(--orange); }
.w-assugrin { color: #d0202e; }
.w-gold { color: #1f3f8f; }
.w-tivva { color: #e0262f; }

/* =========================================================
   Products
   ========================================================= */
.products { background: linear-gradient(180deg, var(--bg), var(--mint-50) 40%, var(--bg)); }
.filters {
  display: flex; gap: 8px; overflow-x: auto; padding: 6px 2px 14px; margin-bottom: 26px;
  scrollbar-width: thin; scroll-snap-type: x proximity;
}
.filters::-webkit-scrollbar { height: 6px; }
.filters::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 6px; }
.filter {
  flex: none; scroll-snap-align: start;
  padding: .5em 1.15em; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-family: var(--f-display); font-weight: 600; font-size: .98rem; color: var(--ink-2);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter:hover { border-color: var(--lime); color: var(--g700); }
.filter[aria-pressed="true"] { background: var(--g700); border-color: var(--g700); color: #fff; }
.filter .n { font-family: var(--f-latin); font-size: .78rem; opacity: .7; margin-inline-start: 4px; }

.line-intro {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; margin-bottom: 30px;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  animation: fadeUp .5s ease both;
}
.line-intro .txt { padding: clamp(24px, 3.4vw, 40px); }
.line-intro .hdr { display: inline-block; background: var(--sage); padding: 8px 22px 8px 38px; clip-path: polygon(0 50%, 22px 0, 100% 0, 100% 100%, 22px 100%); margin-bottom: 18px; }
.line-intro .hdr h3 { color: var(--g950); font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.35; }
.line-intro .hdr .latin { display: block; color: var(--g950); font-weight: 600; font-size: .92rem; direction: ltr; text-align: right; }
.line-intro ul { display: grid; gap: 8px; }
.line-intro li { position: relative; padding-inline-start: 22px; color: var(--ink-2); line-height: 1.9; font-size: .98rem; }
.line-intro li::before { content: ""; position: absolute; inset-inline-start: 2px; top: .75em; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }
.line-intro li b { color: var(--g800); }
.line-intro .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.line-intro .media { background: var(--mint-50); display: flex; align-items: center; justify-content: center; min-height: 260px; }
.line-intro .media img { width: 100%; height: 100%; object-fit: cover; }
.line-intro .media.contain img { object-fit: contain; padding: 20px; max-height: 460px; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; background: var(--lime-100); color: var(--g700); font-weight: 600; font-size: .86rem; line-height: 1.6; }
.pill svg { width: 15px; height: 15px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.p-card {
  background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; cursor: pointer; text-align: start;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation: fadeUp .5s ease both;
  padding: 0;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.p-card .media { position: relative; aspect-ratio: 1 / 1.05; background: radial-gradient(circle at 50% 60%, #fff 0, var(--mint-50) 70%); overflow: hidden; }
.p-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.p-card .media.contain img { object-fit: contain; padding: 16px; }
.p-card .media.white, .modal-media.white { background: #fff; }
.p-card:hover .media img { transform: scale(1.06); }
.p-card .line-chip { position: absolute; top: 12px; inset-inline-start: 12px; background: rgba(255, 255, 255, .94); color: var(--g700); font-family: var(--f-display); font-weight: 600; font-size: .8rem; padding: 3px 11px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.p-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.p-card h3 { font-size: 1.12rem; line-height: 1.55; }
.p-card .en { font-family: var(--f-latin); font-size: .78rem; color: var(--muted); font-weight: 600; direction: ltr; text-align: right; margin-top: 2px; text-transform: uppercase; letter-spacing: .02em; }
.p-card .specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 14px; }
.spec { background: var(--mint-50); border-radius: 12px; padding: 8px 4px; text-align: center; line-height: 1.2; }
.spec b { display: block; font-family: var(--f-latin); font-weight: 800; color: var(--g800); font-size: 1rem; white-space: nowrap; }
.spec b small { font-family: var(--f-body); font-weight: 600; font-size: .7rem; color: var(--g600); }
.spec span { display: block; margin-top: 3px; font-size: .72rem; color: var(--muted); line-height: 1.35; }
.p-card .more { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-display); font-weight: 700; color: var(--g600); }
.p-card .more svg { width: 18px; height: 18px; transition: transform .25s ease; }
.p-card:hover .more svg { transform: translateX(-4px); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* modal */
.modal {
  border: 0; padding: 0; margin: auto; width: min(980px, calc(100% - 24px)); max-height: calc(100dvh - 32px);
  border-radius: 28px; background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); overflow: hidden;
}
.modal::backdrop { background: rgba(15, 50, 34, .55); backdrop-filter: blur(4px); }
.modal[open] { animation: pop .35s cubic-bezier(.2, .9, .3, 1.2); }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.modal-inner { display: grid; grid-template-columns: .9fr 1.1fr; max-height: calc(100dvh - 32px); }
.modal-media { background: radial-gradient(circle at 50% 55%, #fff 0, var(--lime-100) 80%); display: flex; align-items: center; justify-content: center; min-height: 300px; position: relative; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-media.contain img { object-fit: contain; padding: 28px; max-height: 70dvh; }
.modal-body { padding: 34px 32px 30px; overflow-y: auto; }
.modal-close {
  position: absolute; top: 14px; inset-inline-end: 14px; z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.modal-close svg { width: 22px; height: 22px; }
.modal-body .brand-line { font-family: var(--f-display); font-weight: 600; color: var(--lime-600); }
.modal-body h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 2px; }
.modal-body .en { font-family: var(--f-latin); font-weight: 600; color: var(--muted); direction: ltr; text-align: right; font-size: .9rem; text-transform: uppercase; }
.modal-body .specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.modal-body .spec { padding: 10px 14px; min-width: 88px; }
.modal-body .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.m-sec { margin-top: 20px; }
.m-sec h4 { font-size: 1.08rem; color: var(--g700); display: flex; align-items: center; gap: 8px; }
.m-sec h4::before { content: ""; width: 14px; height: 4px; border-radius: 4px; background: var(--lime); }
.m-sec p, .m-sec li { color: var(--ink-2); line-height: 1.95; font-size: .98rem; margin-top: 4px; }
.m-sec ul li { position: relative; padding-inline-start: 18px; }
.m-sec ul li::before { content: ""; position: absolute; inset-inline-start: 2px; top: .8em; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-600); }
.m-sec.warn { background: #fff7e6; border-radius: 16px; padding: 14px 16px; }
.m-sec.warn h4 { color: #a55f00; }
.m-sec.warn h4::before { background: #f0a92b; }
.en-block { margin-top: 22px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.en-block summary { cursor: pointer; padding: 12px 16px; font-family: var(--f-latin); font-weight: 700; color: var(--g700); background: var(--mint-50); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.en-block summary::-webkit-details-marker { display: none; }
.en-block summary svg { width: 18px; height: 18px; transition: transform .25s ease; }
.en-block[open] summary svg { transform: rotate(180deg); }
.en-block .content { direction: ltr; text-align: left; padding: 14px 18px; font-family: var(--f-latin); font-size: .9rem; line-height: 1.75; color: var(--ink-2); }
.en-block .content p + p { margin-top: 8px; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* =========================================================
   Contact
   ========================================================= */
.contact { background: var(--g900); color: #fff; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset-block: 0; inset-inline-end: -4%; width: 30%;
  background: linear-gradient(102deg, transparent 0 14%, var(--g700) 14% 44%, transparent 44% 50%, var(--lime) 50% 54%, transparent 54% 62%, var(--g800) 62% 84%, transparent 84%);
  opacity: .75;
}
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.contact h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.contact .lead { color: rgba(255, 255, 255, .8); margin-top: 14px; font-size: 1.1rem; }
.contact .tagline { margin-top: 26px; display: inline-flex; background: var(--lime); color: var(--g900); font-family: var(--f-display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.3rem); padding: .5em 1.3em .5em 2.1em; clip-path: polygon(0 50%, 22px 0, 100% 0, 100% 100%, 22px 100%); }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.c-card {
  display: flex; flex-direction: column; gap: 12px; padding: 24px 22px; border-radius: 24px;
  background: #1c4a34; border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, .5);
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.c-card:hover { background: #22563d; transform: translateY(-4px); border-color: rgba(148, 207, 94, .5); }
.c-card .ico { width: 50px; height: 50px; border-radius: 16px; background: var(--lime); display: grid; place-items: center; }
.c-card .ico svg { width: 26px; height: 26px; color: var(--g900); }
.c-card small { color: rgba(255, 255, 255, .65); font-size: .9rem; }
.c-card b { font-family: var(--f-latin); font-weight: 700; font-size: 1.05rem; direction: ltr; text-align: right; word-break: break-word; }
.c-card.wa .ico { background: #25d366; }
.c-card.wa .ico svg { color: #fff; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--g950); color: rgba(255, 255, 255, .78); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { display: inline-block; background: #fff; border-radius: 18px; padding: 12px 18px; }
.footer-logo img { height: 56px; width: auto; }
.site-footer p { margin-top: 16px; line-height: 1.95; max-width: 420px; }
.site-footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; }
.f-links li + li { margin-top: 8px; }
.f-links a { transition: color .2s ease; }
.f-links a:hover { color: var(--lime); }
.f-contact li { display: flex; align-items: center; gap: 10px; }
.f-contact li + li { margin-top: 10px; }
.f-contact svg { width: 18px; height: 18px; color: var(--lime); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .9rem; }

/* WhatsApp float */
.wa-float {
  position: fixed; z-index: 40; inset-inline-end: 20px; bottom: 20px;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ping 2.4s ease-out infinite; }
@keyframes ping { from { transform: scale(1); opacity: .8; } to { transform: scale(1.6); opacity: 0; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1060px) {
  .values-grid, .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .why-title { min-height: 0; }
  .hero-float.f1 { inset-inline-end: -8px; }
  .hero-float.f2 { inset-inline-start: -8px; }
}
@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .brand img { height: 44px; }
  .hero-grid, .about-grid, .ceo-grid, .services-grid, .philo, .contact-grid { grid-template-columns: 1fr; }
  .hero-stripes { width: 100%; opacity: .12; }
  .hero-media { width: min(100%, 400px); margin-top: 12px; }
  .hero h1 .en { text-align: right; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .vmg-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .about-media { max-width: 400px; }
  .ceo::before { width: 100%; opacity: .12; }
  .ceo-media { max-width: 460px; }
  .services-media { order: -1; }
  .line-intro { grid-template-columns: 1fr; }
  .line-intro .media { order: -1; max-height: 300px; }
  .line-intro .media.contain img { max-height: 300px; }
  .modal-inner { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-media { min-height: 0; height: 280px; }
  .modal-body { overflow: visible; }
  .contact::before { width: 100%; opacity: .12; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .values-grid, .brands-grid, .contact-cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stat .ico { width: 44px; height: 44px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-float { padding: 8px 12px; font-size: .9rem; }
  .hero-float .ico { width: 36px; height: 36px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .p-card .body { padding: 14px 12px 16px; }
  .p-card h3 { font-size: 1rem; }
  .p-card .specs { grid-template-columns: 1fr 1fr; }
  .p-card .specs .spec:nth-child(3) { display: none; }
  .modal-body { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float { width: 54px; height: 54px; inset-inline-end: 14px; bottom: 14px; }
}
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
