:root {
  --icl-blue: #05b8d5;
  --icl-blue-dark: #009fc6;
  --icl-navy: #06294a;
  --icl-ink: #082b49;
  --icl-muted: #34516a;
  --icl-soft: #f4f8fb;
  --white: #fff;
  --line: rgba(6, 41, 74, .14);
  --shadow: 0 24px 70px rgba(6, 41, 74, .18);
  --container: 1480px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Barlow, Arial, sans-serif;
  color: var(--icl-ink);
  background: #fff;
  font-size: 18px;
  line-height: 1.45;
}
html[dir="rtl"] body {
  font-family: "Noto Kufi Arabic", Barlow, Arial, sans-serif;
  text-align: right;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 20, 36, .74), rgba(0, 20, 36, 0));
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 44px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}
.topbar-links { display: flex; align-items: center; gap: 18px; }
.lang-link { color: rgba(255,255,255,.72); font-weight: 800; }
.lang-link.is-active { color: var(--icl-blue); }
.navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 46px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 160px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand img { max-height: 58px; width: auto; }
.brand-mark {
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 5px 18px 5px 18px;
  transform: skewX(-17deg);
  background: var(--icl-blue);
  color: #fff;
  font-weight: 900;
}
.brand-mark + span { font-weight: 900; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.nav-menu > a,
.nav-item > a { position: relative; padding: 18px 0; }
.nav-menu > a::after,
.nav-item > a::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 10px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--icl-blue);
  transition: width .25s ease;
}
.nav-menu > a:hover::after,
.nav-item > a:hover::after,
.nav-menu .is-active::after { width: 100%; }
.mobile-only-nav { display: none !important; }
.mobile-lang-links {
  margin-top: 8px;
  padding: 10px 8px 4px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mobile-lang-links .lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}
.mobile-lang-links .lang-link.is-active {
  background: rgba(255,255,255,.18);
}
.menu-toggle {
  display: none;
  margin-inline-start: auto;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
}
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: 100%;
  inset-inline-start: -220px;
  width: min(920px, 88vw);
  padding: 26px;
  display: grid;
  grid-template-columns: .78fr 1.2fr;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: .24s ease;
  border-radius: 0 0 28px 28px;
  background: rgba(255,255,255,.97);
  color: var(--icl-navy);
  box-shadow: var(--shadow);
}
.has-mega:hover .mega-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-copy span,
.eyebrow,
.footer-cta > div > span {
  display: block;
  color: var(--icl-blue);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.mega-copy span { font-size: 18px; text-transform: uppercase; letter-spacing: .08em; }
.mega-copy strong { display: block; font-size: 30px; line-height: 1.04; font-weight: 900; }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mega-grid a {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--icl-soft);
  transition: transform .2s ease, background .2s ease;
}
.mega-grid a:hover { transform: translateY(-4px); background: #e8f8fb; }
.mega-grid small { color: var(--icl-blue); font-weight: 900; }
.mega-grid span { font-size: 17px; font-weight: 800; }
.icl-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--icl-navy);
}
.hero-video,
.icl-hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icl-hero::before {
  content: '';
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2200&q=90') center/cover no-repeat;
}
.hero-video { z-index: 1; }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(1,21,38,.84) 0%, rgba(1,21,38,.58) 34%, rgba(1,21,38,.12) 72%, rgba(1,21,38,.35) 100%),
    linear-gradient(0deg, rgba(1,21,38,.38), transparent 38%);
}
.icl-hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 150px 44px 82px;
  max-width: none;
}
.icl-hero .eyebrow {
  font-size: clamp(24px, 2.3vw, 40px);
  color: var(--icl-blue);
  margin-bottom: 18px;
}
h1, h2, h3 { margin: 0; color: var(--icl-navy); font-weight: 900; letter-spacing: -.025em; line-height: .98; }
.icl-hero h1 {
  color: #fff;
  width: min(780px, 62vw);
  font-size: clamp(56px, 6.7vw, 116px);
  text-shadow: 0 18px 60px rgba(0,0,0,.26);
}
.icl-hero p {
  width: min(680px, 54vw);
  margin: 24px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(20px, 1.45vw, 27px);
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: var(--icl-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(0, 184, 213, .26);
  cursor: pointer;
}
.btn:hover { background: var(--icl-blue-dark); }
.btn-ghost,
.btn-outline {
  background: transparent;
  color: #fff;
  border: 3px solid var(--icl-blue);
  box-shadow: none;
}
.btn-outline { color: var(--icl-blue-dark); background: #fff; }
.scroll-cue {
  position: absolute;
  inset-inline-start: 44px;
  bottom: 28px;
  z-index: 4;
  width: 54px;
  height: 54px;
  border: 3px solid var(--icl-blue);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 36px rgba(6,41,74,.14);
}
.scroll-cue::before {
  content: '';
  position: absolute;
  inset: 14px;
  background: var(--icl-navy);
  clip-path: polygon(50% 0, 62% 37%, 100% 50%, 62% 63%, 50% 100%, 38% 63%, 0 50%, 38% 37%);
}
.icl-split {
  max-width: 1920px;
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.icl-split-copy { padding: 70px 40px 70px max(60px, calc((100vw - var(--container)) / 2 + 44px)); }
.icl-split-copy h2,
.icl-section-copy h2,
.focus-copy h2,
.icl-products-list h2 { font-size: clamp(42px, 4.6vw, 76px); line-height: 1.02; color: var(--icl-navy); }
.icl-split-copy p,
.icl-section-copy p,
.focus-copy p {
  max-width: 640px;
  margin: 22px 0 34px;
  color: var(--icl-ink);
  font-size: clamp(20px, 1.6vw, 25px);
  font-weight: 600;
  line-height: 1.22;
}
.icl-split-media { position: relative; min-height: 760px; }
.slash,
.slash-photo,
.field-photo,
.segment-card,
.focus-photo-card { clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%); }
.slash-blue {
  position: absolute;
  left: 9%;
  top: 22%;
  width: 115px;
  height: 680px;
  background: var(--icl-blue);
  transform: rotate(0deg);
  border-radius: 28px;
  z-index: 1;
}
.slash-photo.main {
  position: absolute;
  left: 24%;
  top: 8%;
  width: 48%;
  height: 82%;
  z-index: 3;
  border-radius: 30px;
  background: var(--image) center/cover no-repeat;
}
.field-photo {
  position: absolute;
  right: -7%;
  bottom: 0;
  width: 57%;
  height: 64%;
  z-index: 2;
  background: var(--image) center/cover no-repeat;
}
.icl-segments {
  max-width: none;
  margin: 0;
  padding: 104px 0 116px;
  background:
    radial-gradient(1200px 360px at 10% -20%, rgba(22,139,194,.20), rgba(22,139,194,0) 60%),
    linear-gradient(180deg, #f3f8fc 0%, #ecf4fa 100%);
}

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

.segments-head {
  margin-left: 0;
  max-width: 980px;
}

.segments-head h2 {
  font-size: clamp(56px, 6vw, 98px);
  line-height: .96;
}

.segments-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-panel {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #0a314f;
  box-shadow: 0 18px 40px rgba(6,41,74,.18);
  transition: transform .2s ease;
}

.service-panel:hover {
  transform: translateY(-6px);
}

.service-panel-image-wrap {
  position: absolute;
  inset: 0;
}

.service-panel-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,23,38,.08) 18%, rgba(3,23,38,.85) 86%);
}

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-panel-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px 22px;
  display: grid;
  gap: 8px;
}

.service-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.2vw, 42px);
  line-height: .98;
  text-shadow: 0 10px 24px rgba(0,0,0,.45);
}

.service-panel p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.service-panel-1 { grid-column: span 8; min-height: 420px; }
.service-panel-2 { grid-column: span 4; min-height: 420px; }
.service-panel-3 { grid-column: span 4; min-height: 360px; }
.service-panel-4 { grid-column: span 4; min-height: 360px; }
.service-panel-5 { grid-column: span 4; min-height: 360px; }
.service-panel-6 { grid-column: span 12; min-height: 340px; }

.products-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.products-category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background: #d9edf3;
  box-shadow: 0 12px 32px rgba(6,41,74,.08);
  transition: transform .2s ease;
}

.products-category-card:hover {
  transform: translateY(-6px);
}

.products-category-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 25, 45, .86)), var(--image) center/cover no-repeat;
}

.products-category-card strong {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 8px 22px rgba(0,0,0,.45);
}

.page-segments {
  padding: 86px max(44px, calc((100vw - var(--container)) / 2 + 44px)) 116px;
}

.page-segments .icl-section-copy {
  margin-left: 0;
}

.product-groups {
  max-width: none;
  margin: 0;
  background: var(--icl-soft);
  padding: 94px max(44px, calc((100vw - var(--container)) / 2 + 44px));
}

.product-groups-head {
  max-width: 920px;
}

.product-groups-head h2 {
  margin: 8px 0 0;
  color: var(--icl-navy);
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.02;
}

.product-groups-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-group-card {
  position: relative;
  min-height: 460px;
  background: #fff;
  border: 1px solid rgba(6,41,74,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(6,41,74,.16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-group-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(6,41,74,.2);
}

.product-group-image-wrap {
  height: 250px;
}

.product-group-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-group-content {
  padding: 18px 22px 22px;
  background: #fff;
}

.product-group-content h3 {
  margin: 0;
  color: var(--icl-navy);
  font-size: clamp(34px, 2.2vw, 42px);
  line-height: 1.05;
}

.product-group-content p {
  margin: 10px 0 0;
  color: var(--icl-muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.pg-nav {
  display: none;
}
.icl-focus {
  max-width: var(--container);
  margin: 0 auto;
  padding: 78px 44px 110px;
  display: grid;
  grid-template-columns: .96fr .98fr;
  gap: 72px;
  align-items: center;
}
.focus-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.focus-photo-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}
.focus-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(5, 32, 55, .85)), var(--image) center/cover no-repeat;
}
.focus-photo-card strong {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  max-width: none;
  color: #fff;
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 8px 22px rgba(0,0,0,.45);
}
.focus-copy .eyebrow { font-size: clamp(34px, 3.5vw, 54px); }
.focus-copy h2 { max-width: 680px; margin-bottom: 16px; }
.how-steps {
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.how-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(6,41,74,.08);
}
.how-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(10,111,168,.16), rgba(104,173,87,.16));
  color: var(--icl-blue-dark);
  font-size: 21px;
}
.how-step h3 {
  margin: 2px 0 6px;
  color: var(--icl-navy);
  font-size: 28px;
  line-height: 1.04;
}
.how-step p {
  margin: 0;
  color: var(--icl-muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.34;
}
.icl-products-list {
  background: var(--icl-soft);
  padding: 94px max(44px, calc((100vw - var(--container)) / 2 + 44px));
}
.icl-section-copy.narrow { margin-left: 0; }
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.why-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 28px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(6,41,74,.08);
  box-shadow: 0 10px 28px rgba(6,41,74,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(6,41,74,.12); }
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(10,111,168,.15), rgba(104,173,87,.14));
  color: var(--icl-blue-dark);
  font-size: 20px;
}
.why-card h3 {
  margin: 2px 0 0;
  color: var(--icl-navy);
  font-size: 29px;
  line-height: 1.03;
}
.why-card p {
  margin: 0;
  color: var(--icl-muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.34;
}
.page-hero {
  padding: 180px max(44px, calc((100vw - var(--container)) / 2 + 44px)) 82px;
  background: linear-gradient(135deg, var(--icl-navy), #064065);
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(58px, 6vw, 104px); }
.page-hero p { max-width: 820px; color: rgba(255,255,255,.9); font-size: 24px; font-weight: 600; }
.content-shell,
.product-detail,
.product-showcase { padding: 82px max(44px, calc((100vw - var(--container)) / 2 + 44px)); }
.rich-content { max-width: 980px; font-size: 20px; color: var(--icl-ink); font-weight: 500; line-height: 1.55; }
.rich-content h2,
.rich-content h3 { margin-top: 32px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 36px; align-items: start; }
.contact-layout .rich-content { max-width: none; }
.contact-form {
  position: sticky;
  top: 132px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce6df;
  box-shadow: 0 14px 40px rgba(6, 47, 79, .07);
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--icl-navy);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfdbe3;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--icl-ink);
  font: inherit;
  box-shadow: none;
}
.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(120, 200, 40, .18);
  border-color: var(--tarmagen-green);
}
.contact-form .btn {
  width: fit-content;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(10, 111, 168, .18);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.contact-info-card {
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  color: var(--icl-ink);
  background: #fff;
  border: 1px solid #dce6df;
  box-shadow: 0 12px 34px rgba(6, 47, 79, .06);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-info-card:hover,
.contact-info-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(106, 168, 79, .55);
  box-shadow: 0 18px 42px rgba(6, 47, 79, .1);
}
.contact-info-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--icl-blue);
  background: #eef7f3;
}
.contact-info-card strong {
  color: var(--icl-ink);
  font-size: 18px;
}
.contact-info-card em {
  color: var(--icl-muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact-address-grid {
  display: grid;
  gap: 16px;
  margin-top: 0;
}
.contact-address-card {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: 18px 24px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce6df;
  box-shadow: 0 10px 28px rgba(6, 47, 79, .055);
}
.contact-address-card > span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef7f3;
  color: var(--icl-blue-dark);
  font-size: 13px;
  font-weight: 800;
}
.contact-address-card h2 {
  margin: 0;
  max-width: 820px;
  color: var(--icl-navy);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}
.contact-address-card > span,
.contact-address-card h2 {
  grid-column: 1 / -1;
}
.contact-address-card dl {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 7px 18px;
  margin: 0;
  color: var(--icl-ink);
  font-size: 16px;
  line-height: 1.45;
}
.contact-address-card dt {
  color: var(--icl-muted);
  font-weight: 750;
}
.contact-address-card dd {
  margin: 0;
  font-weight: 650;
}
.contact-address-card address {
  font-style: normal;
  white-space: pre-line;
}
.contact-address-card a {
  color: var(--icl-blue-dark);
  font-weight: 900;
  text-decoration: none;
}
.contact-address-card a:hover,
.contact-address-card a:focus-visible {
  color: var(--tarmagen-green);
}
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: #fff; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card { padding: 22px; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: 0 15px 42px rgba(6,41,74,.08); }
.card-image, .detail-image { background: var(--image) center/cover no-repeat; }
.card-image { height: 240px; border-radius: 22px; margin-bottom: 22px; }
.solution-card h3 { font-size: 30px; }
.solution-card p { color: var(--icl-muted); font-weight: 600; }
.product-detail { display: grid; grid-template-columns: minmax(360px, .9fr) 1fr; gap: 54px; }
.product-detail-no-image { grid-template-columns: 1fr; }
.detail-image { min-height: 560px; border-radius: 34px; clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%); }
.site-footer { background: var(--icl-navy); color: rgba(255,255,255,.74); padding: 60px max(44px, calc((100vw - var(--container)) / 2 + 44px)); }
.footer-cta { display: flex; justify-content: space-between; gap: 34px; align-items: center; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-cta h2 { max-width: 850px; color: #fff; font-size: clamp(34px, 4vw, 62px); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 34px; padding: 44px 0; }
.footer-grid h3,
.footer-grid h4 { color: #fff; }
.footer-grid a { display: block; margin: 10px 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; font-size: 15px; }

html[dir="rtl"] .navbar,
html[dir="rtl"] .topbar,
html[dir="rtl"] .footer-cta {
  direction: rtl;
}

html[dir="rtl"] .nav-menu,
html[dir="rtl"] .topbar-links,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer-socials {
  direction: rtl;
}

html[dir="rtl"] .mega-menu {
  inset-inline-start: auto;
  inset-inline-end: -220px;
}

html[dir="rtl"] .mega-grid a,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .quote-form,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(1,21,38,.84) 0%, rgba(1,21,38,.58) 34%, rgba(1,21,38,.12) 72%, rgba(1,21,38,.35) 100%),
    linear-gradient(0deg, rgba(1,21,38,.38), transparent 38%);
}

html[dir="rtl"] .icl-hero h1,
html[dir="rtl"] .icl-hero p {
  margin-left: auto;
}

html[dir="rtl"] .slash,
html[dir="rtl"] .slash-photo,
html[dir="rtl"] .field-photo,
html[dir="rtl"] .segment-card,
html[dir="rtl"] .focus-photo-card {
  transform: scaleX(-1);
}

html[dir="rtl"] .contact-address-card dl {
  direction: rtl;
}

html[dir="rtl"] .icl-split {
  direction: ltr;
}

html[dir="rtl"] .icl-split-copy {
  direction: rtl;
  text-align: right;
  padding: 70px max(60px, calc((100vw - var(--container)) / 2 + 44px)) 70px 40px;
  justify-self: end;
}

html[dir="rtl"] .icl-split-copy p {
  margin-left: 0;
  margin-right: 0;
}

html[dir="rtl"] .modern-media {
  margin-left: 0;
  margin-right: auto;
  padding: 8px 12px 8px 0;
}

html[dir="rtl"] .split-photo-main {
  left: 0;
  right: auto;
}

html[dir="rtl"] .split-photo-float {
  right: 58px;
  left: auto;
}

html[dir="rtl"] .trust-grid div {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

@media (max-width: 1220px) {
  .icl-focus { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .site-header { position: absolute; }
  .topbar { display: none; }
  .navbar {
    position: relative;
    padding: 16px 20px;
    min-height: 82px;
    gap: 18px;
  }
  .brand { min-width: 0; }
  .brand img { max-height: 48px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 8px;
    white-space: nowrap;
  }
  .nav-menu {
    display: none;
    position: absolute;
    inset-inline: 20px;
    top: calc(100% + 8px);
    max-height: calc(100vh - 112px);
    overflow: auto;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(6,41,74,.98);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > a,
  .nav-item > a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 12px;
    border-radius: 10px;
  }
  .nav-menu > a::after,
  .nav-item > a::after {
    display: none;
  }
  .nav-menu > a:hover,
  .nav-item > a:hover,
  .nav-menu .is-active {
    background: rgba(255,255,255,.1);
  }
  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 4px 0 8px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    box-shadow: none;
  }
  .mega-copy strong { color: #fff; font-size: 22px; }
  .mega-copy span { color: var(--tarmagen-sky); font-size: 13px; }
  .mega-grid { grid-template-columns: 1fr; gap: 8px; }
  .mega-grid a {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.09);
  }
  .mega-grid a:hover { transform: none; background: rgba(255,255,255,.14); }
  .mega-grid span { color: #fff; font-size: 15px; }
  html[dir="rtl"] .nav-menu,
  html[dir="rtl"] .hero-actions {
    flex-direction: column;
  }
  html[dir="rtl"] .mega-menu {
    inset-inline-end: auto;
  }
  html[dir="rtl"] .icl-split {
    direction: rtl;
  }
  html[dir="rtl"] .icl-split-copy {
    padding-left: 22px;
    padding-right: 22px;
    justify-self: stretch;
  }
  html[dir="rtl"] .modern-media {
    margin: 0 auto;
    padding: 8px 0 0;
  }
  html[dir="rtl"] .split-photo-main,
  html[dir="rtl"] .split-photo-float {
    left: auto;
    right: auto;
  }
  .icl-hero-content { padding: 130px 22px 70px; }
  .icl-hero h1,
  .icl-hero p { width: 100%; }
  .icl-split,
  .icl-focus,
  .contact-layout,
  .product-detail { grid-template-columns: 1fr; }
  .contact-form {
    position: static;
  }
  .icl-split-copy,
  .icl-focus,
  .product-groups,
  .icl-products-list,
  .content-shell,
  .product-detail,
  .product-showcase { padding-left: 22px; padding-right: 22px; }
  .icl-segments { padding-left: 0; padding-right: 0; }
  .icl-segments .icl-section-copy { padding-left: 22px; padding-right: 22px; }
  .icl-split-media { min-height: 520px; }
  .segments-editorial,
  .products-categories-grid,
  .product-groups-grid,
  .why-choose-grid,
  .cards-grid,
  .contact-info-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .focus-card-stack { grid-template-columns: 1fr; }
  .focus-photo-card {
    width: min(400px, 100%);
    height: 300px;
    min-height: 300px;
    margin: 0 auto;
    clip-path: none;
    border-radius: 20px;
  }
  .service-panel {
    width: min(400px, 100%);
    margin: 0 auto;
    min-height: 300px;
    height: 300px;
    border-radius: 20px;
  }
  .service-panel-1,
  .service-panel-2,
  .service-panel-3,
  .service-panel-4,
  .service-panel-5,
  .service-panel-6 {
    grid-column: 1;
    min-height: 300px;
  }
  .service-panel-image-wrap {
    height: 300px;
  }
  .products-category-card {
    width: min(400px, 100%);
    min-height: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 20px;
  }
  .contact-info-card {
    width: min(400px, 100%);
    min-height: 160px;
    margin: 0 auto;
    border-radius: 20px;
  }
  .contact-address-card {
    width: min(400px, 100%);
    margin: 0 auto;
    padding: 22px;
    border-radius: 20px;
    grid-template-columns: 1fr;
  }
  .contact-address-card dl {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 16px;
  }
  .contact-address-card dt {
    margin-top: 8px;
  }
  .detail-image {
    width: min(400px, 100%);
    min-height: 300px;
    height: 300px;
    margin: 0 auto;
    clip-path: none;
    border-radius: 20px;
  }
  .products-category-card strong {
    font-size: 30px;
    left: 18px;
    right: 18px;
    bottom: 16px;
  }
  .page-segments {
    padding: 70px 22px 84px;
  }
  .product-groups {
    padding: 70px 22px 84px;
  }
  .product-groups-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .product-group-card {
    width: min(400px, 100%);
    min-height: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }
  .pg-nav {
    display: none;
  }
  .product-group-image-wrap {
    height: 300px;
  }
  .footer-cta { flex-direction: column; align-items: flex-start; }
}

/* Tarmagen brand refinement */
:root {
  --icl-blue: #0a6fa8;
  --icl-blue-dark: #074f7c;
  --icl-navy: #062f4f;
  --icl-ink: #082f4f;
  --icl-muted: #42647a;
  --icl-soft: #eef7f3;
  --tarmagen-green: #6aa84f;
  --tarmagen-sky: #168bc2;
  --line: rgba(6, 47, 79, .16);
  --shadow: 0 24px 70px rgba(6, 47, 79, .2);
}

.site-header {
  background: linear-gradient(180deg, rgba(3, 23, 38, .72), rgba(3, 23, 38, .12) 72%, rgba(3, 23, 38, 0));
}

.brand {
  min-width: 188px;
}

.brand img {
  max-height: 88px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.32));
}

.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
}

.icl-hero .eyebrow,
.eyebrow,
.mega-grid small,
.lang-link.is-active,
.topbar-links a:hover,
.footer-cta > div > span {
  color: var(--tarmagen-sky);
}

.btn {
  background: linear-gradient(135deg, var(--tarmagen-sky), var(--icl-blue));
  box-shadow: 0 18px 45px rgba(10, 111, 168, .28);
}

.btn:hover,
.btn:focus-visible {
  background: linear-gradient(135deg, var(--icl-blue-dark), var(--tarmagen-green));
  color: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--icl-blue);
  border-color: var(--icl-blue);
  color: #fff;
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--tarmagen-green);
  color: #fff;
}

.scroll-cue {
  border-color: var(--tarmagen-sky);
}

.scroll-cue::before {
  background: linear-gradient(135deg, var(--icl-blue), var(--tarmagen-green));
}

.slash-blue {
  background: linear-gradient(180deg, var(--tarmagen-sky), var(--tarmagen-green));
}

.has-mega {
  position: static;
}

.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 104px;
  width: 100vw;
  min-height: 350px;
  padding: 48px max(44px, calc((100vw - var(--container)) / 2 + 44px));
  display: grid;
  grid-template-columns: minmax(250px, 420px) minmax(0, 900px);
  justify-content: center;
  gap: 70px;
  border-radius: 0;
  border: 0;
  background: rgba(239, 242, 238, .86);
  backdrop-filter: blur(16px);
  color: var(--icl-navy);
  box-shadow: 0 40px 90px rgba(6, 47, 79, .18);
  transform: translateY(-10px);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-copy {
  border-right: 3px solid var(--tarmagen-sky);
  padding-right: 56px;
}

.mega-copy strong {
  font-size: clamp(26px, 2.3vw, 42px);
  line-height: 1.08;
}

.mega-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
}

.mega-grid a {
  min-height: 112px;
  border-radius: 0 22px 0 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(6, 47, 79, .1);
}

.mega-grid a:hover,
.mega-grid a:focus-visible {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(6,47,79,.12);
}

.site-footer {
  background: linear-gradient(135deg, #04243d, #073a5d 55%, #102f2e);
}

.footer-grid a {
  position: relative;
  width: fit-content;
  color: rgba(255,255,255,.76);
  transition: color .2s ease, transform .2s ease;
}

.footer-grid a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--tarmagen-sky), var(--tarmagen-green));
  transition: right .22s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  transform: translateX(6px);
}

.footer-grid a:hover::after,
.footer-grid a:focus-visible::after {
  right: 0;
}

@media (max-width: 980px) {
  .brand img { max-height: 66px; }
  .mega-menu {
    position: static;
    width: 100%;
    min-height: 0;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 18px;
    background: rgba(255,255,255,.96);
  }
  .mega-copy {
    border-right: 0;
    border-bottom: 2px solid var(--tarmagen-sky);
    padding-right: 0;
    padding-bottom: 18px;
  }
  .mega-grid { grid-template-columns: 1fr; }
}

/* Header logo readability pass */
.brand {
  min-width: 230px;
}

.brand img {
  max-height: 118px;
  width: auto;
  transform: scale(1.45);
  transform-origin: left center;
  filter:
    drop-shadow(0 2px 0 rgba(255,255,255,.5))
    drop-shadow(0 12px 24px rgba(0,0,0,.42));
}

.navbar {
  min-height: 108px;
}

.mega-menu {
  top: 126px;
}

.btn,
.btn:visited,
.btn:hover,
.btn:focus-visible,
.btn-outline,
.btn-outline:visited,
.btn-outline:hover,
.btn-outline:focus-visible,
.btn-ghost,
.btn-ghost:visited,
.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-whatsapp,
.btn-whatsapp:visited,
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  color: #fff;
}

.btn-outline {
  background: var(--icl-blue);
  border-color: var(--icl-blue);
}

@media (max-width: 980px) {
  .brand { min-width: 176px; }
  .brand img {
    max-height: 88px;
    transform: scale(1.28);
  }
  .navbar { min-height: 84px; }
}

/* Dual logo sticky header */
.site-header {
  position: fixed;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--icl-navy);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(6,47,79,.12);
}

.site-header.is-scrolled .topbar {
  max-height: 0;
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
}

.topbar {
  max-height: 44px;
  transition: max-height .25s ease, padding .25s ease, opacity .2s ease;
}

.site-header.is-scrolled .nav-menu,
.site-header.menu-open .nav-menu,
.site-header.is-scrolled .brand,
.site-header.menu-open .brand {
  color: var(--icl-navy);
}

.site-header.is-scrolled .nav-menu > a,
.site-header.is-scrolled .nav-item > a,
.site-header.menu-open .nav-menu > a,
.site-header.menu-open .nav-item > a {
  color: var(--icl-navy);
}

.brand {
  position: relative;
  min-width: 220px;
  width: 220px;
  height: 64px;
  flex: 0 0 220px;
  overflow: visible;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  min-width: 200px;
  width: 220px;
  height: auto;
  max-height: none;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: opacity .22s ease, transform .22s ease;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.24));
}

.brand-logo-color {
  opacity: 0;
  filter: none;
}

.site-header.is-scrolled .brand-logo-white,
.site-header.menu-open .brand-logo-white {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-color,
.site-header.menu-open .brand-logo-color {
  opacity: 1;
}

.navbar {
  min-height: 88px;
}

.site-header.is-scrolled .navbar {
  min-height: 84px;
}

.mega-menu {
  top: 126px;
}

.site-header.is-scrolled .mega-menu {
  top: 84px;
}

@media (max-width: 980px) {
  .brand {
    min-width: 200px;
    width: 200px;
    height: 58px;
    flex-basis: 200px;
  }

  .brand-logo {
    min-width: 200px;
    width: 200px;
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    min-height: 78px;
  }
}

/* Header alignment + clean logo fix */
.navbar {
  justify-content: space-between;
  gap: 28px;
}

.nav-menu {
  margin-left: auto;
  justify-content: flex-end;
}

.brand {
  min-width: 230px;
  width: 230px;
  height: 64px;
  flex: 0 0 230px;
}

.brand-logo {
  min-width: 200px;
  width: 230px;
  transform: translateY(-50%) scale(1) !important;
  filter: none !important;
  opacity: 1;
}

.brand-logo-white {
  opacity: 1;
}

.brand-logo-color {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-white,
.site-header.menu-open .brand-logo-white {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-color,
.site-header.menu-open .brand-logo-color {
  opacity: 1;
}

@media (max-width: 980px) {
  .navbar {
    justify-content: flex-start;
  }

  .nav-menu {
    margin-left: 0;
  }

  .brand {
    min-width: 200px;
    width: 200px;
    height: 56px;
    flex-basis: 200px;
  }

  .brand-logo {
    width: 200px;
    min-width: 200px;
  }
}

/* Sticky header: make mega menu fully opaque */
.site-header.is-scrolled .mega-menu,
.site-header.menu-open .mega-menu {
  background: #ffffff;
  backdrop-filter: none;
}

/* Prevent hover gap flicker between Products link and mega menu */
.has-mega {
  position: relative;
}

.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -28px;
  right: -28px;
  height: 56px;
  background: transparent;
}

@media (max-width: 980px) {
  .has-mega::after {
    display: none;
  }
}

/* Blog pages */
.blog-hero h1 { max-width: 980px; }
.blog-list-wrap,
.blog-detail-wrap {
  padding: 78px max(44px, calc((100vw - var(--container)) / 2 + 44px));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(6,47,79,.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(6,47,79,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-cover {
  display: block;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(6,47,79,.04), rgba(6,47,79,.38)), var(--image) center/cover no-repeat;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-body time {
  color: var(--icl-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-card-body h2 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.02;
}

.blog-card-body p {
  margin: 0;
  color: var(--icl-muted);
  font-size: 18px;
  line-height: 1.45;
}

.blog-read {
  display: inline-block;
  margin-top: 18px;
  color: var(--icl-blue);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.blog-read:hover { color: var(--icl-blue-dark); }

.blog-detail-cover {
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(6,47,79,.08), rgba(6,47,79,.35)), var(--image) center/cover no-repeat;
}

.blog-meta-row {
  margin: 22px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--icl-muted);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.blog-meta-row a {
  color: var(--icl-blue);
  font-weight: 800;
}

.blog-meta-row a:hover { color: var(--icl-blue-dark); }

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .blog-list-wrap,
  .blog-detail-wrap {
    padding-left: 22px;
    padding-right: 22px;
  }
  .blog-grid { grid-template-columns: 1fr; }
}

/* Hero CTA upgrades */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebc5b);
  border-color: #25d366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .34);
}



.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: linear-gradient(135deg, #1fa855, #178b43);
  color: #fff !important;
}

.quote-btn {
  cursor: pointer;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
}

.quote-modal.is-open {
  display: block;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 36, .62);
  backdrop-filter: blur(3px);
}

.quote-modal-dialog {
  position: relative;
  width: min(620px, calc(100vw - 32px));
  margin: min(12vh, 80px) auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(6,47,79,.3);
  padding: 28px;
}

.quote-modal-dialog h2 {
  margin: 0;
  color: var(--icl-navy);
  font-size: clamp(30px, 3vw, 44px);
}

.quote-modal-dialog p {
  margin: 10px 0 18px;
  color: var(--icl-muted);
  font-size: 17px;
}

.quote-close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--icl-navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--icl-navy);
}

.quote-form input,
.quote-form textarea {
  border: 1px solid rgba(6,47,79,.2);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
}

.quote-form button {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 980px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .quote-modal-dialog {
    margin-top: 76px;
    padding: 22px;
  }
}

/* Force WhatsApp CTA style */
.hero-actions .btn-whatsapp,
.hero-actions a.btn.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebc5b) !important;
  border: 2px solid #25d366 !important;
  color: #ffffff !important;
}

.hero-actions .btn-whatsapp:hover,
.hero-actions .btn-whatsapp:focus-visible,
.hero-actions a.btn.btn-whatsapp:hover,
.hero-actions a.btn.btn-whatsapp:focus-visible {
  background: linear-gradient(135deg, #1fa855, #178b43) !important;
  border-color: #1fa855 !important;
  color: #ffffff !important;
}

.hero-actions .btn-whatsapp i.fa-whatsapp {
  font-size: 20px;
  line-height: 1;
  flex: 0 0 20px;
}

.footer-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  transition: background .2s ease, border-color .2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.6);
}

.footer-cta .btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebc5b);
  border: 2px solid #25d366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .34);
}

.footer-cta .btn-whatsapp:hover,
.footer-cta .btn-whatsapp:focus-visible {
  background: linear-gradient(135deg, #1fa855, #178b43);
  border-color: #1fa855;
  color: #fff !important;
}

.footer-cta .btn-whatsapp span,
.footer-cta .btn-whatsapp i {
  color: #fff !important;
}

.footer-whatsapp-btn {
  min-height: 62px;
  padding: 0 34px;
  border-radius: 999px;
  border: 2px solid #25d366;
  background: linear-gradient(135deg, #25d366, #1ebc5b);
  color: #fff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .34);
}

.footer-whatsapp-btn i,
.footer-whatsapp-btn span {
  color: #fff !important;
}

.footer-whatsapp-btn i {
  font-size: 20px;
  line-height: 1;
}

.footer-whatsapp-btn:hover,
.footer-whatsapp-btn:focus-visible,
.footer-whatsapp-btn:visited,
.footer-whatsapp-btn:active {
  background: linear-gradient(135deg, #1fa855, #178b43);
  border-color: #1fa855;
  color: #fff !important;
  text-decoration: none;
}


/* Sustainability redesign */
.icl-split-copy {
  max-width: 760px;
}

.icl-split-copy p {
  margin-bottom: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 10px 0 26px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--icl-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.trust-grid i {
  color: #17a34a;
  font-size: 18px;
  flex: 0 0 18px;
}

.modern-media {
  position: relative;
  min-height: 0;
  padding: 8px 0 8px 12px;
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  height: 620px;
}

.split-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #dbeaf4;
  /* box-shadow: 0 14px 36px rgba(6, 47, 79, 0.16); */
  transition: transform .3s ease, box-shadow .3s ease;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 43, 0.04), rgba(4, 26, 43, 0.26));
  pointer-events: none;
}

.split-photo-main {
  position: absolute;
  width: min(74%, 700px);
  height: 560px;
  right: 0;
  top: 26px;
  transform: none;
  z-index: 1;
}

.split-photo-float {
  position: absolute;
  width: min(43%, 360px);
  height: 430px;
  left: 58px;
  top: 90px;
  transform: none;
  z-index: 2;
  border: 15px solid #ffffff;
}

.media-glow {
  display: none;
}

.media-accent {
  display: none;
}

.modern-media:hover .split-photo-main {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(6, 47, 79, 0.2);
}

.modern-media:hover .split-photo-float {
  transform: translateY(-4px);
}

@media (max-width: 1200px) {
  .modern-media {
    max-width: 760px;
    height: 560px;
    padding: 8px 0 8px 8px;
  }
  .split-photo-main {
    width: min(72%, 600px);
    height: 500px;
    top: 24px;
  }
  .split-photo-float {
    width: min(41%, 320px);
    height: 370px;
    left: 36px;
    top: 98px;
  }
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .modern-media {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 8px 0 0;
  }
  .media-glow,
  .media-accent {
    display: none;
  }
  .split-photo-main,
  .split-photo-float {
    position: relative;
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    width: 100%;
    height: 270px;
    left: auto;
    top: auto;
    right: auto;
  }
  .split-photo {
    transform: none !important;
    border-radius: 22px;
  }
  .split-photo-float {
    border: 0;
  }
  .modern-media:hover .split-photo-main,
  .modern-media:hover .split-photo-float {
    box-shadow: 0 20px 50px rgba(6, 47, 79, 0.2);
  }
}

.export-markets-content {
  display: grid;
  gap: 34px;
}

.export-lead {
  max-width: 900px;
}

.export-lead h2 {
  margin-top: 0;
}

.market-map-panel {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 22%, rgba(106, 168, 79, .26), transparent 30%),
    radial-gradient(circle at 80% 72%, rgba(22, 139, 194, .26), transparent 32%),
    linear-gradient(135deg, #062f4f, #0a6fa8);
  box-shadow: 0 24px 70px rgba(6, 47, 79, .18);
}

.market-map-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
}

.market-orbit {
  position: absolute;
  border: 1px dashed rgba(255,255,255,.26);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.market-orbit-1 {
  width: 72%;
  height: 44%;
}

.market-orbit-2 {
  width: 46%;
  height: 70%;
  transform: rotate(34deg);
}

.market-globe {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - 44px));
  min-height: 230px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 13px;
  padding: 28px;
  text-align: center;
  color: #fff;
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}

.market-globe i {
  font-size: 58px;
  color: #a7d46f;
}

.market-globe strong {
  font-size: 28px;
  line-height: 1.1;
}

.market-globe small {
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.45;
}

.market-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.market-region-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(6, 47, 79, .08);
}

.market-region-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: var(--market-accent, rgba(10, 111, 168, .16));
}

.market-region-card h3 {
  position: relative;
  margin: 20px 0 10px;
  font-size: 30px;
  line-height: 1.12;
}

.market-region-card p {
  position: relative;
  margin: 0;
  color: var(--icl-muted);
  font-size: 17px;
  line-height: 1.48;
}

.market-region-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--market-solid, var(--icl-blue));
  box-shadow: 0 12px 28px rgba(6, 47, 79, .16);
}

.market-region-icon i {
  font-size: 25px;
}

.market-region-card.europe {
  --market-solid: #0a6fa8;
  --market-accent: rgba(10, 111, 168, .16);
}

.market-region-card.middle-east {
  --market-solid: #d99b2b;
  --market-accent: rgba(217, 155, 43, .18);
}

.market-region-card.africa {
  --market-solid: #6aa84f;
  --market-accent: rgba(106, 168, 79, .18);
}

.market-region-card.latin-america {
  --market-solid: #c7653b;
  --market-accent: rgba(199, 101, 59, .17);
}

.market-region-card.asia-pacific {
  --market-solid: #168bc2;
  --market-accent: rgba(22, 139, 194, .17);
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .market-map-panel {
    width: min(400px, 100%);
    min-height: 300px;
    margin: 0 auto;
    border-radius: 20px;
  }

  .market-globe {
    width: calc(100% - 32px);
    min-height: 230px;
    padding: 22px;
    border-radius: 18px;
  }

  .market-globe i {
    font-size: 46px;
  }

  .market-globe strong {
    font-size: 24px;
  }

  .market-region-grid {
    grid-template-columns: 1fr;
  }

  .market-region-card,
  .market-region-card.asia-pacific {
    grid-column: auto;
    width: min(400px, 100%);
    min-height: 300px;
    margin: 0 auto;
    border-radius: 20px;
  }
}

.content-shell-export,
.content-shell-wide {
  display: block;
}

.content-shell-export .rich-content,
.content-shell-wide .rich-content {
  max-width: none;
  width: 100%;
}

.export-corporate {
  display: grid;
  gap: 42px;
}

.export-corporate-intro {
  max-width: 1040px;
}

.export-corporate-intro h2 {
  margin-top: 0;
  max-width: 900px;
  color: var(--icl-ink);
}

.export-corporate-intro p {
  max-width: 980px;
  color: var(--icl-muted);
}

.export-network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, .8fr);
  gap: 28px;
  align-items: stretch;
}

.export-map-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  background: #f7faf8;
  border: 1px solid #dce6df;
  box-shadow: 0 18px 52px rgba(6, 47, 79, .08);
}

.export-map-head {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dce6df;
}

.export-map-head span {
  color: var(--tarmagen-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.export-map-head strong {
  max-width: 720px;
  color: var(--icl-ink);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.16;
}

.export-world-map {
  width: 100%;
  height: 100%;
  min-height: 440px;
  align-self: center;
}

.export-world-map path {
  fill: #d9e4dc;
  stroke: #afc4b7;
  stroke-width: 2;
}

.export-marker circle {
  fill: var(--tarmagen-green);
  stroke: #fff;
  stroke-width: 4;
}

.export-marker text {
  fill: var(--icl-ink);
  font-family: Barlow, Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.export-region-list {
  display: grid;
  gap: 12px;
}

.export-region-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  padding: 22px 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce6df;
  box-shadow: 0 12px 34px rgba(6, 47, 79, .06);
}

.export-region-list span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--icl-ink);
  background: #edf5ea;
  border: 1px solid #d5e5cf;
  font-size: 14px;
  font-weight: 900;
}

.export-region-list h3 {
  margin: 0 0 8px;
  color: var(--icl-ink);
  font-size: 24px;
  line-height: 1.12;
}

.export-region-list p {
  margin: 0;
  color: var(--icl-muted);
  font-size: 16px;
  line-height: 1.45;
}

.export-map-real {
  min-height: 600px;
}

.export-map-visual {
  position: relative;
  align-self: center;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 10px 0 26px;
}

.export-map-visual img {
  width: 100%;
  max-width: 940px;
  height: auto;
  display: block;
  opacity: .72;
  filter: sepia(.12) saturate(.72) hue-rotate(62deg);
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--icl-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-8px, -8px);
}

.map-pin::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: var(--tarmagen-green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(6, 47, 79, .18);
}

.map-pin.europe { left: 50%; top: 28%; }
.map-pin.middle-east { left: 57%; top: 39%; }
.map-pin.africa { left: 51%; top: 55%; }
.map-pin.latin-america { left: 31%; top: 62%; }
.map-pin.asia-pacific { left: 76%; top: 48%; }

@media (max-width: 1100px) {
  .export-network-layout {
    grid-template-columns: 1fr;
  }

  .export-map-card {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .export-map-card {
    width: min(400px, 100%);
    min-height: 300px;
    margin: 0 auto;
    padding: 22px;
    border-radius: 20px;
  }

  .export-world-map {
    min-height: 260px;
  }

  .export-map-visual {
    min-height: 250px;
    padding: 6px 0 16px;
  }

  .map-pin {
    font-size: 12px;
  }

  .map-pin::before {
    width: 9px;
    height: 9px;
    flex-basis: 9px;
    border-width: 2px;
  }

  .export-marker text {
    font-size: 20px;
  }

  .export-region-list article {
    width: min(400px, 100%);
    min-height: 0;
    margin: 0 auto;
    grid-template-columns: 42px 1fr;
    padding: 20px;
    border-radius: 20px;
  }
}

.manufacturing-page {
  display: grid;
  gap: 34px;
}

.manufacturing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: 34px;
  align-items: stretch;
}

.manufacturing-intro h2 {
  max-width: 880px;
  margin-top: 0;
  color: var(--icl-ink);
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 1.05;
}

.manufacturing-intro p {
  max-width: 960px;
  color: var(--icl-muted);
}

.manufacturing-assurance {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 340px;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 47, 79, .18), rgba(6, 47, 79, .88)),
    var(--manufacturing-assurance-image) center/cover no-repeat;
  box-shadow: 0 18px 52px rgba(6, 47, 79, .12);
}

.manufacturing-assurance span {
  color: #a7d46f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.manufacturing-assurance strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
}

.manufacturing-assurance p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.45;
}

.manufacturing-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dce6df;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 42px rgba(6, 47, 79, .06);
}

.manufacturing-flow div {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid #dce6df;
}

.manufacturing-flow div:last-child {
  border-right: 0;
}

.manufacturing-flow span {
  color: var(--tarmagen-green);
  font-size: 14px;
  font-weight: 900;
}

.manufacturing-flow strong {
  color: var(--icl-ink);
  font-size: 20px;
  line-height: 1.18;
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.manufacturing-grid article {
  min-height: 360px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce6df;
  box-shadow: 0 14px 38px rgba(6, 47, 79, .06);
}

.manufacturing-grid i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--icl-blue);
  background: #eef7f3;
  font-size: 22px;
}

.manufacturing-grid h3 {
  margin: 0 0 10px;
  color: var(--icl-ink);
  font-size: 27px;
  line-height: 1.12;
}

.manufacturing-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--icl-blue-dark);
  font-size: 17px;
  line-height: 1.3;
}

.manufacturing-grid p {
  margin: 0 0 12px;
  color: var(--icl-muted);
  font-size: 16px;
  line-height: 1.48;
}

.manufacturing-grid p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1160px) {
  .manufacturing-intro,
  .manufacturing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .manufacturing-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manufacturing-flow div:nth-child(2) {
    border-right: 0;
  }

  .manufacturing-flow div:nth-child(1),
  .manufacturing-flow div:nth-child(2) {
    border-bottom: 1px solid #dce6df;
  }
}

@media (max-width: 980px) {
  .manufacturing-intro,
  .manufacturing-grid,
  .manufacturing-flow {
    grid-template-columns: 1fr;
  }

  .manufacturing-assurance,
  .manufacturing-grid article,
  .manufacturing-flow div {
    width: min(400px, 100%);
    margin: 0 auto;
    border-radius: 20px;
  }

  .manufacturing-assurance {
    min-height: 300px;
  }

  .manufacturing-flow {
    gap: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .manufacturing-flow div,
  .manufacturing-flow div:nth-child(1),
  .manufacturing-flow div:nth-child(2) {
    border: 1px solid #dce6df;
    background: #fff;
  }

  .manufacturing-grid article {
    min-height: auto;
  }
}

.catalogue-intro {
  max-width: 980px;
  margin-bottom: 34px;
}

.catalogue-intro h2 {
  margin-top: 0;
  color: var(--icl-ink);
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.08;
}

.catalogue-intro p {
  color: var(--icl-muted);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalogue-card {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--icl-ink);
  background: #fff;
  border: 1px solid #dce6df;
  box-shadow: 0 14px 38px rgba(6, 47, 79, .06);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.catalogue-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #eef7f3;
}

.catalogue-card:hover,
.catalogue-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(106, 168, 79, .55);
  box-shadow: 0 20px 48px rgba(6, 47, 79, .1);
}

.catalogue-index {
  color: var(--tarmagen-green);
  font-size: 14px;
  font-weight: 900;
}

.catalogue-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--icl-blue);
  background: #eef7f3;
  font-size: 23px;
}

.catalogue-card strong {
  position: relative;
  z-index: 1;
  color: var(--icl-ink);
  font-size: 25px;
  line-height: 1.12;
}

.catalogue-card em {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--icl-blue-dark);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-card {
    width: min(400px, 100%);
    min-height: 300px;
    margin: 0 auto;
    border-radius: 20px;
  }
}

.about-page {
  display: grid;
  gap: 36px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .65fr);
  gap: 34px;
  align-items: stretch;
}

.about-intro h2 {
  max-width: 900px;
  margin-top: 0;
  color: var(--icl-ink);
  font-size: clamp(34px, 3.4vw, 60px);
  line-height: 1.05;
}

.about-intro p {
  max-width: 980px;
  color: var(--icl-muted);
}

.about-presence {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 380px;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 47, 79, .08), rgba(6, 47, 79, .9)),
    var(--about-presence-image) center/cover no-repeat;
  box-shadow: 0 18px 52px rgba(6, 47, 79, .12);
}

.about-presence span,
.about-section-head span,
.about-vision span {
  color: var(--tarmagen-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-presence strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
}

.about-presence p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.45;
}

.about-mission {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.about-section-head {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  background: #f7faf8;
  border: 1px solid #dce6df;
}

.about-section-head h3 {
  margin: 0;
  color: var(--icl-ink);
  font-size: 34px;
  line-height: 1.08;
}

.about-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-sector-grid article {
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce6df;
  box-shadow: 0 14px 38px rgba(6, 47, 79, .06);
}

.about-sector-grid i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--icl-blue);
  background: #eef7f3;
  font-size: 22px;
}

.about-sector-grid h4 {
  margin: 0 0 10px;
  color: var(--icl-ink);
  font-size: 26px;
  line-height: 1.12;
}

.about-sector-grid p {
  margin: 0;
  color: var(--icl-muted);
  font-size: 16px;
  line-height: 1.48;
}

.about-vision {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--icl-navy), #0a6fa8);
}

.about-vision h3 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.08;
}

.about-vision p {
  max-width: 980px;
  margin: 0;
  color: rgba(255,255,255,.84);
}

@media (max-width: 1100px) {
  .about-intro,
  .about-mission {
    grid-template-columns: 1fr;
  }

  .about-section-head {
    position: static;
  }
}

@media (max-width: 980px) {
  .about-sector-grid {
    grid-template-columns: 1fr;
  }

  .about-presence,
  .about-section-head,
  .about-sector-grid article,
  .about-vision {
    width: min(400px, 100%);
    margin: 0 auto;
    border-radius: 20px;
  }

  .about-presence {
    min-height: 300px;
  }
}

/* RTL and mobile navigation final pass */
html[dir="rtl"] .nav-menu {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .brand-logo {
  transform-origin: right center;
}

html[dir="rtl"] .mega-copy {
  border-right: 0;
  border-left: 3px solid var(--tarmagen-sky);
  padding-right: 0;
  padding-left: 56px;
}

@media (max-width: 980px) {
  .mobile-only-nav { display: block !important; }
  .site-header.menu-open {
    background: rgba(6, 41, 74, .98);
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    min-height: 78px;
    padding: 14px 20px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-inline-start: auto;
    padding: 9px 15px;
    border-radius: 8px;
    line-height: 1;
  }

  .nav-menu {
    display: none;
    position: absolute;
    inset-inline: 18px;
    top: calc(100% + 8px);
    max-height: calc(100vh - 112px);
    margin: 0;
    overflow: auto;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border-radius: 14px;
    background: rgba(6, 41, 74, .98);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    color: #fff;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .site-header.menu-open .nav-menu,
  .site-header.menu-open .nav-menu > a,
  .site-header.menu-open .nav-item > a,
  .site-header.is-scrolled .nav-menu,
  .site-header.is-scrolled .nav-menu > a,
  .site-header.is-scrolled .nav-item > a {
    color: #fff;
  }

  .nav-menu > a,
  .nav-item > a {
    min-height: 46px;
    padding: 12px;
    border-radius: 10px;
  }

  .mega-menu,
  .site-header.is-scrolled .mega-menu,
  .site-header.menu-open .mega-menu {
    position: static;
    width: 100%;
    min-height: 0;
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 4px 0 8px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mega-copy {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 0 0 12px;
  }

  .mega-copy strong,
  .mega-grid span {
    color: #fff;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mega-grid a {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.09);
  }

  html[dir="rtl"] .nav-menu {
    margin: 0;
  }
}

/* Mobile nav stabilization override */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(3, 20, 36, .56);
  backdrop-filter: blur(2px);
}

.nav-item-head {
  display: block;
}

.submenu-toggle {
  display: none;
}

@media (max-width: 980px) {
  body.mobile-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    z-index: 96;
  }

  .site-header .navbar {
    position: relative;
    z-index: 97;
  }

  .site-header .menu-toggle {
    position: relative;
    z-index: 99;
  }

  /* Keep button readable in both dark and light header states */
  .site-header .menu-toggle {
    color: #fff !important;
    border-color: rgba(255,255,255,.55) !important;
    background: rgba(255,255,255,.08) !important;
  }
  .site-header.is-scrolled .menu-toggle {
    color: var(--icl-navy) !important;
    border-color: rgba(6,47,79,.34) !important;
    background: #fff !important;
  }
  .site-header.menu-open .menu-toggle {
    color: #fff !important;
    border-color: rgba(255,255,255,.62) !important;
    background: rgba(255,255,255,.12) !important;
  }

  /* Prevent logo loss when mobile menu is open on dark header */
  .site-header.menu-open .brand-logo-white {
    opacity: 1 !important;
  }
  .site-header.menu-open .brand-logo-color {
    opacity: 0 !important;
  }
  .site-header.is-scrolled:not(.menu-open) .brand-logo-white {
    opacity: 0 !important;
  }
  .site-header.is-scrolled:not(.menu-open) .brand-logo-color {
    opacity: 1 !important;
  }

  .site-header .nav-menu {
    position: absolute !important;
    inset-inline: 18px !important;
    top: calc(100% + 8px) !important;
    z-index: 98 !important;
    display: none !important;
    max-height: calc(100vh - 112px) !important;
    overflow: auto !important;
    pointer-events: auto !important;
    padding: 10px !important;
    border-radius: 14px !important;
    background: rgba(6, 41, 74, .98) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.28) !important;
    gap: 2px !important;
  }

  .site-header .nav-menu.is-open {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .site-header .nav-menu > a,
  .site-header .nav-item > a {
    min-height: 46px !important;
    padding: 12px !important;
    border-radius: 10px !important;
  }

  .site-header .nav-item-head {
    display: grid;
    grid-template-columns: 1fr 38px;
    align-items: center;
    gap: 8px;
  }

  .site-header .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }

  .site-header .nav-menu > a::after,
  .site-header .nav-item > a::after {
    display: none !important;
  }

  .site-header .mega-menu {
    position: static !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 4px 0 8px !important;
    padding: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .site-header .has-mega.is-open .mega-menu {
    display: grid !important;
  }

  .site-header .mega-copy {
    display: none !important;
  }

  .site-header .mega-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 4px 0 2px !important;
  }

  .site-header .mega-grid a {
    min-height: 0 !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.08) !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .site-header .mega-grid a:hover,
  .site-header .mega-grid a:focus-visible {
    background: rgba(255,255,255,.14) !important;
  }

  .site-header .mega-grid small {
    display: none !important;
  }

  /* Keep sustainability images aligned with other mobile content gutters */
  .modern-media {
    padding-left: 22px !important;
    padding-right: 22px !important;
    box-sizing: border-box;
  }

  .split-photo-main,
  .split-photo-float {
    width: 100% !important;
  }
}
