/* ============================================================
   A2Z EGYPT COMPANY — site stylesheet
   Palette drawn from the logo:
     aqua glass  ·  burnt orange  ·  deep navy  ·  warm off-white
   Fonts: Bricolage Grotesque (display) + Instrument Sans (body)
   ============================================================ */

:root {
  /* Brand colors (from logo) */
  --navy: #16294a;
  --navy-deep: #0e1c36;
  --navy-soft: #2a4576;
  --aqua: #25b6cf;
  --aqua-deep: #0d93ad;
  --aqua-pale: #c9eef4;
  --orange: #d95b23;
  --orange-bright: #ee7335;
  --orange-pale: #fbe3d6;
  --paper: #f7f6f2;
  --paper-warm: #efede6;
  --white: #ffffff;
  --ink: #1b2c4d;
  --ink-soft: #51607e;
  --line: #dcd9cf;

  /* Type */
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 8px 30px rgba(22, 41, 74, 0.08);
  --shadow-lift: 0 18px 44px rgba(22, 41, 74, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* anchored sections (#quote, #nile-harvest, …) must clear the sticky 78px nav */
[id] { scroll-margin-top: 92px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* the tilted marquee pokes ~6px past the viewport — clip it so phones
     can't pan/rubber-band sideways (clip > hidden: no scroll box at all) */
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--aqua); color: var(--white); }

/* Subtle paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* main wraps the tilted marquee — clip its sideways overhang at the source */
main { overflow-x: clip; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.display {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 750;
}

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
}

.h3 { font-size: 1.35rem; font-weight: 650; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.accent-aqua { color: var(--aqua-deep); }
.accent-orange { color: var(--orange); }

/* Arabic flourish */
.arabic-note {
  font-size: 1.05rem;
  color: var(--orange);
  font-weight: 600;
  direction: rtl;
  text-align: left;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.25s;
  will-change: transform;
}
.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(22, 41, 74, 0.25);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(22, 41, 74, 0.3);
}

.btn-ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 28px;
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(217, 91, 35, 0.32);
}
.btn-orange:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 242, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 217, 207, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand { display: flex; align-items: center; gap: 13px; }

/* real logo PNG — multiply blend melts its light background into the header */
.brand-logo {
  height: 56px;
  width: auto;
  mix-blend-mode: multiply;
}

.brand-mark { width: 52px; height: 44px; flex-shrink: 0; }

.brand-text { line-height: 1.05; }
.brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-text .brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  position: relative;
  font-weight: 550;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 650; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.nav-links .btn { padding: 11px 24px; font-size: 0.92rem; }
/* the nav quote button: keep its label white (beats .nav-links a color) */
.nav-links a.btn-orange,
.nav-links a.btn-orange:hover,
.nav-links a.btn-orange:focus { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 86px 0 110px;
  overflow: hidden;
}

/* soft radial washes behind hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 420px at 82% 22%, rgba(37, 182, 207, 0.14), transparent 70%),
    radial-gradient(440px 340px at 70% 75%, rgba(217, 91, 35, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-copy .arabic-note {
  margin-bottom: 14px;
  animation: rise 0.9s var(--ease-out) both;
}
.hero-copy h1 {
  animation: rise 0.9s 0.12s var(--ease-out) both;
}
.hero-copy h1 .underline-orange {
  position: relative;
  white-space: nowrap;
}
.hero-copy h1 .underline-orange::after {
  content: "";
  position: absolute;
  left: 2%;
  bottom: 0.04em;
  width: 96%;
  height: 0.16em;
  background: var(--orange);
  border-radius: 99px;
  opacity: 0.85;
  transform-origin: left;
  animation: sweep 0.8s 0.9s var(--ease-out) both;
}
.hero-copy .lede {
  margin: 26px 0 36px;
  animation: rise 0.9s 0.24s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: rise 0.9s 0.36s var(--ease-out) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sweep {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* --- floating sphere composition (logo motif, enlarged) --- */
.hero-art {
  position: relative;
  height: 460px;
  animation: fadein 1.2s 0.3s both;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.sphere {
  position: absolute;
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}
.sphere::after {
  /* glossy highlight streak */
  content: "";
  position: absolute;
  top: 9%;
  left: 14%;
  width: 38%;
  height: 26%;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%);
  transform: rotate(-18deg);
}

.sphere-aqua {
  width: 300px;
  height: 300px;
  left: 14%;
  top: 22%;
  background: radial-gradient(circle at 32% 28%, #7adcEC 0%, var(--aqua) 42%, var(--aqua-deep) 78%, #086b80 100%);
  box-shadow:
    inset -16px -22px 40px rgba(8, 80, 96, 0.5),
    inset 10px 14px 30px rgba(255, 255, 255, 0.35),
    0 30px 60px rgba(13, 147, 173, 0.35);
  display: grid;
  place-items: center;
  z-index: 3;
}
.sphere-aqua .sphere-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 86px;
  letter-spacing: -0.03em;
  color: #eafcff;
  text-shadow: 0 6px 22px rgba(8, 80, 96, 0.45);
  user-select: none;
}

.sphere-orange-lg {
  width: 170px;
  height: 170px;
  left: 2%;
  top: 6%;
  background:
    radial-gradient(circle at 34% 30%, #f7a06b 0%, var(--orange-bright) 38%, var(--orange) 66%, #9e3c12 100%);
  box-shadow:
    inset -12px -16px 30px rgba(110, 40, 8, 0.55),
    inset 8px 10px 22px rgba(255, 255, 255, 0.3),
    0 24px 48px rgba(217, 91, 35, 0.32);
  z-index: 2;
  animation-delay: -2.4s;
  animation-duration: 8s;
}

.sphere-orange-sm {
  width: 74px;
  height: 74px;
  left: 56%;
  top: 2%;
  background: radial-gradient(circle at 34% 30%, #f7a06b 0%, var(--orange-bright) 40%, var(--orange) 70%, #9e3c12 100%);
  box-shadow:
    inset -6px -8px 16px rgba(110, 40, 8, 0.5),
    0 14px 30px rgba(217, 91, 35, 0.3);
  z-index: 1;
  animation-delay: -4.2s;
  animation-duration: 6s;
}

.sphere-pale {
  width: 46px;
  height: 46px;
  left: 8%;
  top: 70%;
  background: radial-gradient(circle at 34% 30%, #ffffff 0%, var(--aqua-pale) 45%, #9adfe9 100%);
  box-shadow: inset -4px -6px 12px rgba(13, 147, 173, 0.3), 0 10px 22px rgba(13, 147, 173, 0.22);
  z-index: 4;
  animation-delay: -1.2s;
  animation-duration: 5.5s;
}

.sphere-navy-ring {
  width: 110px;
  height: 110px;
  right: 4%;
  top: 64%;
  border: 3px dashed rgba(22, 41, 74, 0.25);
  background: transparent;
  animation: spin 24s linear infinite;
}
.sphere-navy-ring::after { display: none; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  background: var(--navy);
  overflow: hidden;
  padding: 18px 0;
  margin: 10px 0 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 36s linear infinite;
  direction: ltr; /* keep the loop seamless in RTL mode */
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
}
.marquee-track span:nth-child(even)::after { background: var(--orange); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head .lede { margin-top: 18px; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* ---------- Stats band ---------- */
.stats {
  background: var(--navy);
  color: var(--paper);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  background: radial-gradient(circle at 34% 30%, rgba(37, 182, 207, 0.45), rgba(37, 182, 207, 0.08) 70%);
}
.stats::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle at 34% 30%, rgba(217, 91, 35, 0.4), rgba(217, 91, 35, 0.06) 70%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--white);
  line-height: 1;
  direction: ltr; /* keep "12+" reading correctly in RTL mode */
}
.stat-num .accent-aqua { color: var(--aqua); }
.stat-num .accent-orange { color: var(--orange-bright); }
.stat-label {
  margin-top: 10px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.65);
}

/* ---------- Pillar cards (what we do) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pillar {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.pillar:nth-child(2)::before { background: linear-gradient(90deg, var(--orange-bright), var(--orange)); }
.pillar:nth-child(3)::before { background: linear-gradient(90deg, var(--navy-soft), var(--navy)); }
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--aqua-pale);
  color: var(--aqua-deep);
}
.pillar:nth-child(2) .pillar-icon { background: var(--orange-pale); color: var(--orange); }
.pillar:nth-child(3) .pillar-icon { background: #dde4f0; color: var(--navy); }
.pillar-icon svg { width: 28px; height: 28px; }

.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--ink-soft); font-size: 0.99rem; }

/* ---------- Steps (how it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 86px 22px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--aqua);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--aqua);
  opacity: 0.85;
}
.step:nth-child(even)::before { -webkit-text-stroke-color: var(--orange); }
.step h4 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Partner preview cards ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 26px;
}
.partner-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.partner-card:hover .partner-go { background: var(--orange); transform: translateX(4px); }

.partner-logo-chip {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 22px;
  background: radial-gradient(circle at 32% 28%, #7adcec, var(--aqua-deep));
  box-shadow: inset -5px -7px 14px rgba(8, 80, 96, 0.35);
}
.partner-card:nth-child(2) .partner-logo-chip {
  background: radial-gradient(circle at 32% 28%, #f7a06b, var(--orange));
  box-shadow: inset -5px -7px 14px rgba(110, 40, 8, 0.4);
}
.partner-card:nth-child(3) .partner-logo-chip {
  background: radial-gradient(circle at 32% 28%, #5a7bb5, var(--navy));
  box-shadow: inset -5px -7px 14px rgba(8, 16, 36, 0.45);
}
/* real logo image inside a chip (overrides the gradient) */
.partner-logo-chip.logo-img {
  background: none;
  box-shadow: none;
  width: auto;
  min-width: 64px;
}
.partner-logo-chip.logo-img img { height: 64px; width: auto; }

.partner-card h3 { margin-bottom: 6px; }
.partner-sector {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 14px;
}
.partner-card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 22px; }

.partner-go {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.partner-go svg { width: 17px; height: 17px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -90px;
  bottom: -160px;
  background: radial-gradient(circle at 34% 30%, rgba(37, 182, 207, 0.55), rgba(37, 182, 207, 0.05) 72%);
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: 200px;
  top: -70px;
  background: radial-gradient(circle at 34% 30%, rgba(238, 115, 53, 0.6), rgba(238, 115, 53, 0.05) 72%);
}
.cta-band h2 { color: var(--white); max-width: 18ch; position: relative; z-index: 1; }
.cta-band p { color: rgba(247, 246, 242, 0.72); margin-top: 14px; max-width: 44ch; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 360px at 88% 10%, rgba(37, 182, 207, 0.14), transparent 70%),
    radial-gradient(380px 300px at 4% 90%, rgba(217, 91, 35, 0.09), transparent 70%);
  pointer-events: none;
}
.page-hero .display { max-width: 16ch; }
.page-hero .lede { margin-top: 22px; }

/* ---------- Company cards (products listing) ---------- */
.company-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.company-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.company-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.company-card-logo {
  height: 132px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.company-card-logo img { max-height: 132px; width: auto; }
.company-card-logo .logo-chip {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  background: radial-gradient(circle at 32% 28%, #7adcec, var(--aqua-deep));
  box-shadow: inset -6px -9px 18px rgba(8, 80, 96, 0.35);
}
.logo-chip.tone-orange {
  background: radial-gradient(circle at 32% 28%, #f7a06b, var(--orange));
  box-shadow: inset -6px -9px 18px rgba(110, 40, 8, 0.4);
}
.logo-chip.tone-navy {
  background: radial-gradient(circle at 32% 28%, #5a7bb5, var(--navy));
  box-shadow: inset -6px -9px 18px rgba(8, 16, 36, 0.45);
}
.company-card h3 { margin-bottom: 6px; }
.company-card-desc { color: var(--ink-soft); font-size: 0.97rem; flex: 1; margin-bottom: 22px; }
.card-cta-link {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.96rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.company-card:hover .card-cta-link { color: var(--orange); }
.company-card:hover .card-cta-link .arrow { transform: translateX(5px); }
[dir="rtl"] .card-cta-link .arrow { transform: scaleX(-1); }
[dir="rtl"] .company-card:hover .card-cta-link .arrow { transform: scaleX(-1) translateX(5px); }

/* ---------- Company detail page ---------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
  transition: color 0.2s, transform 0.25s var(--ease-out);
}
.back-link:hover { color: var(--navy); }
.back-link:hover .arrow-back { transform: translateX(-4px); }
.arrow-back { transition: transform 0.25s var(--ease-out); display: inline-block; }
[dir="rtl"] .arrow-back { transform: scaleX(-1); }
[dir="rtl"] .back-link:hover .arrow-back { transform: scaleX(-1) translateX(-4px); }

.detail-head {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.detail-logo {
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.detail-logo img { height: 170px; width: auto; }
.detail-logo.chip {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  background: radial-gradient(circle at 32% 28%, #7adcec, var(--aqua-deep));
  box-shadow: var(--shadow-soft), inset -6px -9px 18px rgba(8, 80, 96, 0.35);
}
.detail-logo.chip.tone-orange { background: radial-gradient(circle at 32% 28%, #f7a06b, var(--orange)); box-shadow: var(--shadow-soft), inset -6px -9px 18px rgba(110, 40, 8, 0.4); }
.detail-logo.chip.tone-navy { background: radial-gradient(circle at 32% 28%, #5a7bb5, var(--navy)); box-shadow: var(--shadow-soft), inset -6px -9px 18px rgba(8, 16, 36, 0.45); }
.detail-meta { flex: 1; min-width: min(300px, 100%); }
.detail-meta h1 { margin-bottom: 6px; }
.detail-meta .partner-sector { margin-bottom: 16px; }
.detail-intro { color: var(--ink-soft); font-size: 1.05rem; max-width: 70ch; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 18px;
  margin-top: 38px;
}
.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.fact-v {
  display: block;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1;
}
.fact-l {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.export-note {
  margin-top: 40px;
  padding: 26px 30px;
  background: var(--paper-warm);
  border-radius: var(--radius);
  border-left: 4px solid var(--aqua);
}
[dir="rtl"] .export-note { border-left: none; border-right: 4px solid var(--aqua); }
.export-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 8px;
}
.export-note p { color: var(--ink); font-size: 1rem; }

/* ---------- Featured own product (GOLD Tuna) ---------- */
.logo-chip.tone-aqua,
.detail-logo.chip.tone-aqua {
  background: radial-gradient(circle at 32% 28%, #7adcec, var(--aqua-deep));
}

.product-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: linear-gradient(135deg, var(--white), var(--aqua-pale));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.product-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.product-feature-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.product-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(217, 91, 35, 0.35);
}
[dir="rtl"] .feature-badge { left: auto; right: 20px; }
.feature-badge.inline {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
}
.product-feature-body {
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-feature-body .partner-sector { margin-bottom: 8px; }
.product-feature-body h2 { margin-bottom: 16px; }
.product-feature-desc { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 22px; max-width: 46ch; }

.variety-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.variety-chips span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--aqua-deep);
  background: rgba(37, 182, 207, 0.12);
  border: 1px solid rgba(37, 182, 207, 0.25);
  border-radius: 999px;
  padding: 7px 15px;
}
/* second chip set (cuts & grades) — orange theme to distinguish */
.variety-chips.cuts span {
  color: var(--orange);
  background: rgba(217, 91, 35, 0.1);
  border-color: rgba(217, 91, 35, 0.28);
}

/* tuna options: two labelled chip groups */
.tuna-options {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
}
.option-group { min-width: 240px; }
.option-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.product-feature:hover .card-cta-link { color: var(--orange); }
.product-feature:hover .card-cta-link .arrow { transform: translateX(5px); }

/* product detail: large product shot + gallery */
.product-shot {
  flex-shrink: 0;
  width: 340px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.product-shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.product-gallery img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.company-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.company-section:nth-of-type(even) { background: var(--paper-warm); }

.company-head {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.company-logo {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--white);
  background: radial-gradient(circle at 32% 28%, #7adcec, var(--aqua-deep));
  box-shadow: var(--shadow-soft), inset -6px -9px 18px rgba(8, 80, 96, 0.35);
}
.company-logo.tone-orange {
  background: radial-gradient(circle at 32% 28%, #f7a06b, var(--orange));
  box-shadow: var(--shadow-soft), inset -6px -9px 18px rgba(110, 40, 8, 0.4);
}
.company-logo.tone-navy {
  background: radial-gradient(circle at 32% 28%, #5a7bb5, var(--navy));
  box-shadow: var(--shadow-soft), inset -6px -9px 18px rgba(8, 16, 36, 0.45);
}
.company-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

.company-meta { flex: 1; min-width: min(280px, 100%); }
.company-meta h2 { margin-bottom: 6px; }
.company-meta .partner-sector { margin-bottom: 14px; }
.company-meta p { color: var(--ink-soft); max-width: 64ch; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
/* optional product photo at the top of a card (bleeds to the card edges) */
.product-card-img {
  margin: -30px -26px 20px;
  background: var(--paper-warm);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  right: -34px;
  top: -34px;
  background: radial-gradient(circle at 34% 30%, rgba(37, 182, 207, 0.22), transparent 72%);
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover::after { transform: scale(1.7); }

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 16px;
}
.product-card h4 { font-size: 1.12rem; margin-bottom: 8px; position: relative; z-index: 1; }
.product-card p { font-size: 0.93rem; color: var(--ink-soft); position: relative; z-index: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--aqua-pale);
  color: var(--aqua-deep);
}
.contact-card:nth-child(2) .contact-icon { background: var(--orange-pale); color: var(--orange); }
.contact-card:nth-child(3) .contact-icon { background: #dde4f0; color: var(--navy); }
.contact-card:nth-child(4) .contact-icon { background: var(--aqua-pale); color: var(--aqua-deep); }
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 1.02rem; margin-bottom: 3px; }
.contact-card p, .contact-card a.contact-value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.contact-card a.contact-value:hover { color: var(--aqua-deep); }

/* form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-soft);
}
.contact-form h3 { margin-bottom: 6px; }
.form-note { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(37, 182, 207, 0.14);
  background: var(--white);
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--aqua-pale);
  color: var(--aqua-deep);
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success.show { display: block; animation: rise 0.5s var(--ease-out) both; }
.form-success.is-error { background: var(--orange-pale); color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(247, 246, 242, 0.72);
  padding: 70px 0 34px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  left: -120px;
  top: -150px;
  background: radial-gradient(circle at 34% 30%, rgba(37, 182, 207, 0.25), transparent 72%);
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 246, 242, 0.12);
}
.footer .brand-text .brand-name { color: var(--white); }
.footer .brand-text .brand-sub { color: rgba(247, 246, 242, 0.5); }
.footer-logo { height: 96px; width: auto; }
.footer-tagline { margin-top: 18px; max-width: 34ch; font-size: 0.95rem; }
.footer h5 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.96rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(247, 246, 242, 0.45);
}

/* ============================================================
   TWO-WAY TRADE (export + import)
   ============================================================ */
.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.trade-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 38px 40px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.trade-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-deep));
}
.trade-card-import::before { background: linear-gradient(90deg, var(--orange-bright), var(--orange)); }
.trade-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.trade-card-import .pillar-icon { background: var(--orange-pale); color: var(--orange); }
.trade-card h3 { margin-bottom: 12px; }
.trade-card > p { color: var(--ink-soft); font-size: 0.99rem; }
.trade-list { margin-top: 22px; display: grid; gap: 11px; }
.trade-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  font-weight: 500;
}
.trade-list li::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #7adcec, var(--aqua-deep));
}
.trade-card-import .trade-list li::before {
  background: radial-gradient(circle at 34% 30%, #f7a06b, var(--orange));
}

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.88rem;
  color: var(--navy);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.lang-toggle:hover {
  border-color: var(--aqua);
  color: var(--aqua-deep);
  transform: translateY(-1px);
}
.lang-toggle .globe { width: 15px; height: 15px; }
/* the Arabic label inside the EN page (and vice versa) needs the other font */
.lang-toggle .lang-label { font-family: var(--font-display), "Cairo", sans-serif; }
html[lang="en"] .lang-toggle .lang-label { font-family: "Cairo", sans-serif; font-weight: 700; }

/* ============================================================
   ARABIC MODE — typography & RTL adjustments
   ============================================================ */
html[lang="ar"] body { font-family: "Cairo", "Segoe UI", sans-serif; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="ar"] .btn, html[lang="ar"] .footer h5, html[lang="ar"] .stat-num,
html[lang="ar"] .lang-toggle {
  font-family: "Cairo", "Segoe UI", sans-serif;
  letter-spacing: 0;
}
html[lang="ar"] .lang-toggle .lang-label { font-family: var(--font-display); font-weight: 650; }

/* Arabic doesn't use letter-spacing or uppercase tracking */
html[lang="ar"] .eyebrow, html[lang="ar"] .stat-label, html[lang="ar"] .partner-sector,
html[lang="ar"] .product-tag, html[lang="ar"] .marquee-track span,
html[lang="ar"] .form-field label, html[lang="ar"] .footer h5 { letter-spacing: 0; }

/* Arabic glyphs are taller — relax sizes and line-height */
html[lang="ar"] .display { font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.35; }
html[lang="ar"] .h2 { line-height: 1.4; }
html[lang="ar"] .lede { line-height: 1.9; }
html[lang="ar"] .underline-orange::after { bottom: -0.05em; }

/* the small note above the hero headline holds English text in AR mode */
[dir="rtl"] .arabic-note { direction: ltr; text-align: right; font-family: var(--font-display); }

/* mirror directional details */
[dir="rtl"] .arrow { display: inline-block; transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(5px); }
[dir="rtl"] .partner-go svg { transform: scaleX(-1); }
[dir="rtl"] .partner-card:hover .partner-go { transform: translateX(-4px); }
[dir="rtl"] .step::before { left: auto; right: 18px; }
[dir="rtl"] .contact-card:hover { transform: translateX(-6px); }

/* keep emails & phone numbers left-to-right inside RTL text */
[dir="rtl"] .contact-value,
[dir="rtl"] a[href^="mailto"],
[dir="rtl"] a[href^="tel"] { direction: ltr; unicode-bidi: embed; display: inline-block; }

@media (max-width: 680px) {
  .lang-toggle { padding: 7px 13px; font-size: 0.82rem; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { height: 380px; max-width: 480px; margin: 0 auto; }
  .pillars, .partners-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .company-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* the bilingual nav needs more room — collapse to hamburger early */
@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 28px 26px;
    box-shadow: var(--shadow-lift);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 1.05rem; }
  .nav-links a.active::after { left: -14px; top: 50%; bottom: auto; transform: translateY(-50%); }
  [dir="rtl"] .nav-links a.active::after { left: auto; right: -14px; }
  .nav-links .btn { margin-top: 10px; }
}

@media (max-width: 680px) {
  .section { padding: 78px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .company-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 32px; }

  /* company detail header stacks and centers */
  .detail-head { flex-direction: column; text-align: center; align-items: center; gap: 22px; }
  .detail-logo img { height: 140px; }
  .detail-intro { font-size: 0.97rem; }
  .fact-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fact { padding: 14px 10px; }
  .fact-v { font-size: 1.4rem; }
  .export-note { padding: 20px 22px; }

  /* featured product + product detail stack */
  .product-feature { grid-template-columns: 1fr; }
  .product-feature-media { min-height: 240px; }
  .product-feature-body { padding: 30px 24px; }
  .product-feature-desc { max-width: none; }
  .variety-chips { justify-content: center; }
  .product-feature .variety-chips { justify-content: flex-start; }
  .product-shot { width: min(280px, 100%); }
  .product-gallery { grid-template-columns: 1fr; gap: 16px; }
  /* footer keeps its desktop columns: logo row, then Site | Get in touch */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-logo { height: 84px; }
  .hero { padding: 56px 0 80px; }
  .hero-art { height: 300px; }
  .sphere-aqua { width: 210px; height: 210px; }
  .sphere-aqua .sphere-letter { font-size: 58px; }
  .brand-logo { height: 48px; }
  .sphere-orange-lg { width: 120px; height: 120px; }

  /* hero buttons stay side by side */
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn {
    flex: 1 1 0;
    justify-content: center;
    padding: 13px 10px;
    font-size: 0.9rem;
  }
  .hero-actions .arrow { display: none; }

  /* "what we do" pillars 2-up (third spans the row) */
  .pillars { gap: 14px; }
  .pillar { padding: 26px 18px 24px; border-radius: 20px; }
  .pillar:last-child { grid-column: 1 / -1; }
  .pillar-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
  .pillar-icon svg { width: 22px; height: 22px; }
  .pillar h3 { font-size: 1.02rem; }
  .pillar p { font-size: 0.86rem; }

  /* export / import cards stay side by side */
  .trade-grid { gap: 14px; }
  .trade-card { padding: 26px 18px 24px; border-radius: 20px; }
  .trade-card .pillar-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
  .trade-card h3 { font-size: 1.02rem; }
  .trade-card > p { font-size: 0.86rem; }
  .trade-list { margin-top: 14px; gap: 8px; }
  .trade-list li { font-size: 0.84rem; gap: 8px; }

  /* partner cards become a swipeable carousel (next card peeks in) */
  .partners-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -28px;
    padding: 4px 28px 20px;
    scrollbar-width: none;
  }
  .partners-grid::-webkit-scrollbar { display: none; }
  .partners-grid .partner-card { flex: 0 0 76%; scroll-snap-align: center; }

  /* steps 2x2: 01-02 then 03-04 */
  .steps { gap: 14px; }
  .step { padding: 60px 16px 22px; }
  .step::before { font-size: 2.4rem; top: 12px; left: 14px; }
  [dir="rtl"] .step::before { left: auto; right: 14px; }
  .step h4 { font-size: 0.98rem; }
  .step p { font-size: 0.85rem; }
}

/* small phones — tighten gutters so text and buttons breathe */
@media (max-width: 420px) {
  .container { padding: 0 20px; }
  .nav-links { padding: 16px 20px 24px; }
  .btn { padding: 14px 24px; font-size: 0.95rem; }
  .btn-ghost { padding: 12px 22px; }
  .cta-band { padding: 48px 24px; }
  .contact-form { padding: 32px 22px; }
  .hero-actions { gap: 12px; }
  .display { font-size: clamp(2.3rem, 11vw, 2.8rem); }
  /* match the carousel's edge bleed to the narrower gutter */
  .partners-grid { margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
  .hero-actions .btn { font-size: 0.85rem; padding: 12px 8px; }
}
