/* ============================================
   بارمان تجارت آسو — Persian RTL Landing
   Brand: teal #004048 · accent #88c040
   ============================================ */

@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF, U+200C-200F, U+0020-007E;
}
@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF, U+200C-200F, U+0020-007E;
}
@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF, U+200C-200F, U+0020-007E;
}
@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF, U+200C-200F, U+0020-007E;
}

:root {
  --brand-teal: #004048;
  --brand-teal-deep: #002f35;
  --brand-teal-soft: #0a5a64;
  --brand-lime: #88c040;
  --brand-lime-dark: #6fa32e;
  --brand-lime-soft: #e8f4d4;
  --ink: #1a2e32;
  --muted: #5a6f74;
  --paper: #f3f7f6;
  --paper-warm: #eef4f2;
  --white: #ffffff;
  --line: rgba(0, 64, 72, 0.12);
  --shadow: 0 18px 50px rgba(0, 48, 56, 0.12);
  --radius: 1.25rem;
  --container: 1180px;
  --header-h: 5.25rem;
  --font: "Vazirmatn", "Tahoma", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html[lang="en"] {
  --font: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  font-size: 1rem;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

address {
  font-style: normal;
}

.footer-contact address ul {
  list-style: none;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.65rem 1rem;
  background: var(--brand-lime);
  color: var(--brand-teal-deep);
  font-weight: 800;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.products-strip,
.about,
.process,
.featured,
.why,
.partners,
.cta-band,
.bridge,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-lime);
  color: var(--brand-teal-deep);
  box-shadow: 0 10px 28px rgba(136, 192, 64, 0.35);
}

.btn-primary:hover {
  background: #95cb4c;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--brand-teal);
  border-color: var(--brand-teal);
}

.btn-outline:hover {
  background: var(--brand-teal);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 48, 56, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* Internal pages — header always readable over light content */
body.page .site-header,
body.single .site-header,
body.blog .site-header,
body.archive .site-header,
body.search .site-header,
body.error404 .site-header {
  background: rgba(0, 36, 42, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}

body.page .site-header.is-scrolled,
body.single .site-header.is-scrolled,
body.blog .site-header.is-scrolled,
body.archive .site-header.is-scrolled,
body.search .site-header.is-scrolled,
body.error404 .site-header.is-scrolled {
  background: rgba(0, 48, 56, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Search — keep title below fixed header even before pages.css loads */
body.search .dt-search-hero {
  padding-top: calc(var(--header-h) + 2.75rem);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo picture,
.logo img {
  width: clamp(9rem, 16vw, 11.5rem);
  height: auto;
  max-height: none;
  aspect-ratio: 623 / 238;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-text strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.logo-text span {
  color: var(--brand-lime);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 1.6rem;
}

.nav-main a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.2s ease;
}

.nav-main a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand-lime);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}

.nav-main a:hover,
.nav-main a.is-active {
  color: var(--white);
}

.nav-main a:hover::after,
.nav-main a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  direction: ltr;
}

.header-phone small {
  display: block;
  color: var(--brand-lime);
  font-size: 0.7rem;
  font-weight: 600;
}

.lang-switch {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.lang-switch:hover {
  color: var(--brand-teal-deep);
  background: var(--brand-lime);
  border-color: var(--brand-lime);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  inset-inline: 0.55rem;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 0.85rem; }
.menu-toggle span:nth-child(2) { top: 1.3rem; }
.menu-toggle span:nth-child(3) { top: 1.75rem; }

.menu-toggle.is-open span:nth-child(1) {
  top: 1.3rem;
  transform: rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) {
  top: 1.3rem;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture,
.cta-band-bg picture,
.footer-map picture,
.strip-item picture,
.feature-media picture,
.about-visual-main picture,
.about-visual-side picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(0, 28, 33, 0.82) 0%, rgba(0, 48, 56, 0.55) 42%, rgba(0, 48, 56, 0.22) 100%),
    linear-gradient(to top, rgba(0, 24, 28, 0.55) 0%, transparent 40%);
}

.hero-shell {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  padding-block: calc(var(--header-h) + 3rem) 5rem;
}

.hero-panel {
  max-width: 36rem;
  padding: 2rem 1.85rem 1.85rem;
  border-radius: 1.35rem;
  background: rgba(0, 36, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: fadeUp 0.85s var(--ease) both;
}

.hero-label {
  display: inline-block;
  margin-bottom: 0.95rem;
  color: var(--brand-lime);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 2px solid rgba(136, 192, 64, 0.55);
  padding-bottom: 0.2rem;
}

.hero h1 {
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-brand {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  color: #fff;
}

.hero-lead {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-desc {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.55rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.7rem 1.45rem;
  border-radius: 0.75rem;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  background: var(--brand-lime);
  color: var(--brand-teal-deep);
  box-shadow: 0 12px 28px rgba(136, 192, 64, 0.4);
}

.hero-btn-primary:hover {
  background: #97cd4e;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
  background: #fff;
  color: var(--brand-teal-deep);
  border-color: #fff;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta li {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
  padding-inline-start: 0.9rem;
}

.hero-meta li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand-lime);
}

.brand-mark {
  display: none;
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.8rem;
  height: 2.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.45rem;
  z-index: 2;
}

.hero-scroll span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--brand-lime);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(1.2rem); opacity: 0; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-block: 1.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border-radius: 1.15rem;
  padding: 1.15rem;
  box-shadow: 0 16px 40px rgba(0, 48, 56, 0.1);
  border: 1px solid rgba(0, 64, 72, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.65rem;
}

.trust-icon {
  width: 2.7rem;
  height: 2.7rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  color: var(--brand-teal);
  background: linear-gradient(145deg, rgba(136, 192, 64, 0.25), rgba(136, 192, 64, 0.08));
}

.trust-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.trust-item strong {
  display: block;
  color: var(--brand-teal);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding-block: 5.5rem;
  position: relative;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--brand-lime-dark);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  color: var(--brand-teal);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Products strip ---------- */
.products-strip {
  background: var(--white);
  margin-top: 2.25rem;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding-bottom: 1.5rem;
}

.products-strip .container {
  padding-block: 2.5rem 1rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.strip-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 18rem;
  isolation: isolate;
  display: block;
  color: inherit;
}

.strip-badge {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(136, 192, 64, 0.2);
  color: var(--brand-lime);
  font-size: 0.72rem;
  font-weight: 800;
}

.strip-more {
  display: inline-flex;
  margin-top: 0.65rem;
  color: var(--brand-lime);
  font-size: 0.82rem;
  font-weight: 700;
}

.strip-item:hover .strip-more {
  text-decoration: underline;
}

.strip-item picture,
.feature-media picture {
  position: absolute;
  inset: 0;
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}

.strip-item:hover img {
  transform: scale(1.08);
}

.strip-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 40, 46, 0.88) 0%, rgba(0, 64, 72, 0.2) 60%);
}

.strip-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem;
  color: var(--white);
}

.strip-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.strip-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.strip-body .price-hint {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--brand-lime);
  font-weight: 700;
  font-size: 0.82rem;
}

/* ---------- About / Mission ---------- */
.about {
  background:
    radial-gradient(circle at 85% 20%, rgba(136, 192, 64, 0.12), transparent 35%),
    linear-gradient(180deg, var(--white) 0%, var(--paper-warm) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--brand-teal);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.about-copy > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.value-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-right: 0;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0.9rem;
  border: 1px solid rgba(0, 64, 72, 0.07);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 48, 56, 0.08);
}

.value-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  color: var(--brand-teal);
  background: var(--brand-lime-soft);
}

.value-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.value-item h3 {
  color: var(--brand-teal);
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.value-item p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.about-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-side {
  position: absolute;
  inset-inline-end: -1rem;
  top: 1.5rem;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 14px 35px rgba(0, 48, 56, 0.2);
  animation: floatY 5.2s ease-in-out infinite;
}

.about-visual-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-float {
  position: absolute;
  inset-inline-start: -1.25rem;
  bottom: 2rem;
  background: var(--brand-teal);
  color: var(--white);
  padding: 1.35rem 1.5rem;
  border-radius: 1.1rem;
  box-shadow: 0 16px 40px rgba(0, 48, 56, 0.35);
  min-width: 10.5rem;
  animation: floatY 4.5s ease-in-out infinite;
}

.stat-float-alt {
  inset-inline-start: auto;
  inset-inline-end: 8%;
  bottom: auto;
  top: 42%;
  background: var(--white);
  color: var(--brand-teal);
  border: 1px solid rgba(0, 64, 72, 0.08);
  animation-delay: 0.6s;
}

.stat-float-alt strong {
  color: var(--brand-lime-dark);
}

.stat-float strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand-lime);
  line-height: 1;
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.stat-float span {
  font-size: 0.88rem;
  font-weight: 600;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Process ---------- */
.process {
  background: var(--brand-teal);
  color: var(--white);
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 192, 64, 0.18), transparent 70%);
  top: -8rem;
  inset-inline-end: -6rem;
  pointer-events: none;
}

.process .eyebrow {
  color: var(--brand-lime);
}

.process .section-head h2 {
  color: var(--white);
}

.process .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step {
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.process-step:hover {
  background: rgba(136, 192, 64, 0.1);
  border-color: rgba(136, 192, 64, 0.45);
  transform: translateY(-4px);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--brand-lime);
  color: var(--brand-teal-deep);
  font-weight: 900;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.process-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  color: var(--brand-lime);
  background: rgba(136, 192, 64, 0.12);
}

.process-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

/* ---------- Featured products ---------- */
.featured {
  background: var(--paper);
}

.feature-list {
  display: grid;
  gap: 2.5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 48, 56, 0.06);
}

.feature-row:nth-child(even) .feature-media {
  order: 2;
}

.feature-media {
  min-height: 20rem;
  position: relative;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.feature-row:hover .feature-media img {
  transform: scale(1.05);
}

.feature-badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 64, 72, 0.88);
  color: var(--brand-lime);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.feature-body {
  padding: 2.25rem 2rem;
}

.feature-body h3 {
  font-size: 1.55rem;
  color: var(--brand-teal);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.feature-body > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.include-list {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.include-list li {
  position: relative;
  padding-inline-start: 1.4rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.include-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-lime);
}

/* ---------- Why us ---------- */
.why {
  background:
    linear-gradient(135deg, rgba(0, 64, 72, 0.04), transparent),
    var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.why-item {
  padding: 1.6rem 1.4rem 1.5rem;
  border-top: 3px solid var(--brand-lime);
  background: var(--paper);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: var(--brand-lime-soft);
  color: var(--brand-teal);
}

.why-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  color: var(--brand-teal);
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Partners ---------- */
.partners {
  background: var(--paper-warm);
}

.partners-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border-radius: 1.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.partner-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  background: var(--brand-teal);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.partner-chip svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-lime);
}

.partners-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--brand-teal);
  font-weight: 900;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.partners-copy p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.partners-aside-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-inline: auto 0;
  margin-bottom: 0.85rem;
  color: var(--brand-lime);
}

.partners-aside-icon svg {
  width: 100%;
  height: 100%;
}

.partners-aside {
  text-align: center;
  padding: 2rem 1.5rem;
  background:
    linear-gradient(160deg, var(--brand-teal) 0%, var(--brand-teal-soft) 100%);
  color: var(--white);
  border-radius: 1.15rem;
}

.partners-aside strong {
  display: block;
  font-size: 2.8rem;
  color: var(--brand-lime);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.partners-aside p {
  font-weight: 600;
  opacity: 0.9;
}

/* ---------- CTA / Contact ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-teal-deep);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 4.5rem;
}

.cta-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 0.85rem;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.cta-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.cta-phone {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.cta-phone span {
  color: var(--brand-lime);
  font-size: 0.85rem;
  font-weight: 700;
}

.cta-phone a {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.35;
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.quote-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  padding: 1.6rem;
}

.quote-form h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--brand-lime);
}

.form-grid select option {
  color: var(--ink);
}

.form-grid textarea {
  min-height: 6rem;
  resize: vertical;
}

.quote-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

/* ---------- Bridge (white separator before footer) ---------- */
.bridge {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(136, 192, 64, 0.1), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(0, 64, 72, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
  padding-block: 4.75rem;
  border-top: 1px solid var(--line);
}

.bridge-decor {
  position: absolute;
  inset-inline-end: -4rem;
  top: 10%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 1px solid rgba(136, 192, 64, 0.22);
  pointer-events: none;
}

.bridge-decor::before,
.bridge-decor::after {
  content: "";
  position: absolute;
  inset: 1.6rem;
  border-radius: 50%;
  border: 1px dashed rgba(0, 64, 72, 0.12);
}

.bridge-decor::after {
  inset: 3.2rem;
  border-style: solid;
  border-color: rgba(136, 192, 64, 0.16);
}

.bridge-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
  position: relative;
}

.bridge-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: var(--brand-teal);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.bridge-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.bridge-item {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 64, 72, 0.08);
  border-radius: 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 48, 56, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.bridge-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-lime), var(--brand-teal));
  opacity: 0.85;
}

.bridge-item:hover {
  transform: translateY(-5px);
  border-color: rgba(136, 192, 64, 0.35);
  box-shadow: 0 16px 40px rgba(0, 48, 56, 0.08);
}

.bridge-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
  border-radius: 0.9rem;
  color: var(--brand-teal);
  background:
    linear-gradient(145deg, rgba(136, 192, 64, 0.22), rgba(136, 192, 64, 0.06));
}

.bridge-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.bridge-item h3 {
  color: var(--brand-teal);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.bridge-item > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  min-height: 3.6rem;
}

.bridge-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-lime-soft);
  color: var(--brand-teal);
  font-size: 0.78rem;
  font-weight: 700;
}

.bridge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.bridge-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-teal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bridge-links a:hover {
  background: var(--brand-teal-soft);
  transform: translateY(-1px);
}

.bridge-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.bridge-markets li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 64, 72, 0.14);
  color: var(--brand-teal);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(243, 247, 246, 0.9);
}

.bridge-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 64, 72, 0.08);
  position: relative;
}

.bridge-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.bridge-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-teal);
  font-size: 0.9rem;
  font-weight: 700;
}

.bridge-trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-lime-dark);
  flex-shrink: 0;
}

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

  .bridge-item > p {
    min-height: 0;
  }

  .bridge-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #001c21;
  color: rgba(255, 255, 255, 0.78);
  padding-block: 4rem 2rem;
}

.footer-map {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: brightness(1.1) saturate(0.75);
  mix-blend-mode: screen;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 28, 33, 0.75) 0%,
    rgba(0, 28, 33, 0.45) 45%,
    rgba(0, 28, 33, 0.85) 100%
  );
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand picture,
.footer-brand img {
  width: clamp(10rem, 20vw, 12rem);
  height: auto;
  max-height: none;
  aspect-ratio: 623 / 238;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 22rem;
  line-height: 1.85;
}

.footer-col h4 {
  color: var(--brand-lime);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact li {
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
}

.footer-contact a {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom-copy {
  display: grid;
  gap: 0.35rem;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.footer-credit a {
  color: var(--brand-lime);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: var(--brand-lime);
  border-color: var(--brand-lime);
  color: var(--brand-teal-deep);
}

.socials svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (min-width: 1100px) {
  .header-phone {
    display: block;
  }
}

@media (max-width: 980px) {
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .feature-row,
  .partners-panel,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-media {
    order: 0;
  }

  .about-visual-main {
    aspect-ratio: 16 / 11;
    max-width: 34rem;
    margin-inline: auto;
  }

  .stat-float {
    inset-inline-start: 1rem;
  }

  .process-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-main {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(0, 36, 42, 0.97);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-main.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-main a {
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-actions .btn {
    display: none;
  }

  .header-actions .header-cta {
    display: none;
  }

  .hero-shell {
    padding-block: calc(var(--header-h) + 2.5rem) 4rem;
  }

  .hero-panel {
    padding: 1.5rem 1.25rem 1.35rem;
  }
}

@media (max-width: 640px) {
  .strip-grid,
  .values,
  .process-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 4rem;
  }

  .feature-body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .feature-media {
    min-height: 14rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Floating UX controls ---------- */
.float-wa,
.back-top {
  position: fixed;
  z-index: 1100;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}

.float-wa {
  inset-inline-start: 1.25rem;
  bottom: 1.25rem;
  background: #25d366;
  color: #fff;
}

.float-wa:hover,
.back-top:hover {
  transform: translateY(-3px) scale(1.04);
}

.float-wa svg,
.back-top svg {
  width: 1.35rem;
  height: 1.35rem;
}

.back-top {
  inset-inline-end: 1.25rem;
  bottom: 1.25rem;
  background: var(--brand-teal);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.toast {
  position: fixed;
  z-index: 1200;
  inset-inline-end: 1.25rem;
  bottom: 5.2rem;
  max-width: min(90vw, 22rem);
  padding: 0.95rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--brand-teal);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.7;
  box-shadow: 0 14px 35px rgba(0, 48, 56, 0.3);
  border: 1px solid rgba(136, 192, 64, 0.35);
}

.toast[hidden] {
  display: none;
}

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

  .about-visual-side {
    width: 36%;
    top: auto;
    bottom: 28%;
  }

  .stat-float-alt {
    display: none;
  }
}

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

  .hero-scroll {
    display: none;
  }

  .about-visual-side {
    display: none;
  }
}

/* ============================================
   Mobile-first hardening
   ============================================ */
.nav-mobile-cta {
  display: none;
}

html[dir="ltr"] .hero-btn-primary span {
  display: inline-block;
  transform: scaleX(-1);
}

html[dir="ltr"] .hero-panel {
  margin-inline-start: 0;
}

html[dir="ltr"] .include-list li {
  padding-inline-start: 1.4rem;
}

html[dir="ltr"] .value-item,
html[dir="ltr"] .bridge-item::before {
  /* logical properties already handle most RTL/LTR */
}

@media (max-width: 820px) {
  :root {
    --header-h: 4.5rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header {
    background: rgba(0, 36, 42, 0.94);
    backdrop-filter: blur(12px);
  }

  .logo picture,
  .logo img {
    width: 8.25rem;
  }

  .header-actions .header-cta {
    display: none;
  }

  .lang-switch {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
  }

  .nav-main {
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1.1rem 1.4rem;
  }

  .nav-main a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }

  .nav-mobile-cta {
    display: flex !important;
    justify-content: center;
    margin-top: 0.85rem;
    border-bottom: 0 !important;
    border-radius: 0.75rem;
    background: var(--brand-lime);
    color: var(--brand-teal-deep) !important;
    font-weight: 800;
  }

  .nav-mobile-cta::after {
    display: none !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-shell {
    width: min(100% - 1.25rem, var(--container));
    padding-block: calc(var(--header-h) + 1.25rem) 2.5rem;
  }

  .hero-panel {
    max-width: none;
    width: 100%;
    padding: 1.25rem 1.1rem 1.15rem;
    border-radius: 1.1rem;
  }

  .hero-brand {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-desc {
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero-btn {
    width: 100%;
    min-height: 3rem;
  }

  .hero-meta {
    gap: 0.45rem 0.85rem;
  }

  .trust-bar {
    padding-block: 1rem 0;
  }

  .trust-grid {
    gap: 0.65rem;
    padding: 0.85rem;
    border-radius: 1rem;
  }

  .trust-item {
    padding: 0.7rem 0.55rem;
    border-radius: 0.75rem;
    background: var(--paper);
  }

  .products-strip {
    margin-top: 1.25rem;
    border-radius: 1rem;
    padding-bottom: 1rem;
  }

  .products-strip .container {
    padding-block: 1.5rem 0.5rem;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .section-head h2 {
    font-size: 1.45rem;
  }

  .strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .strip-item {
    min-height: 14.5rem;
    border-radius: 0.85rem;
  }

  .strip-body {
    padding: 0.9rem;
  }

  .strip-body h3 {
    font-size: 0.95rem;
  }

  .strip-body p,
  .strip-more {
    font-size: 0.75rem;
  }

  .about-grid {
    gap: 1.75rem;
  }

  .stat-float {
    inset-inline-start: 0.75rem;
    bottom: 0.85rem;
    padding: 0.95rem 1rem;
    min-width: 8.5rem;
  }

  .stat-float strong {
    font-size: 1.8rem;
  }

  .process-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .process-step,
  .why-item {
    padding: 1.2rem 1.1rem;
  }

  .feature-row {
    border-radius: 1.1rem;
  }

  .feature-media {
    min-height: 12.5rem;
  }

  .feature-body {
    padding: 1.25rem 1.1rem 1.4rem;
  }

  .feature-body h3 {
    font-size: 1.25rem;
  }

  .partners-panel {
    padding: 1.35rem 1.15rem;
    border-radius: 1.1rem;
  }

  .partner-names {
    gap: 0.55rem;
  }

  .partner-chip {
    font-size: 0.8rem;
    padding: 0.55rem 0.85rem;
  }

  .cta-band .container {
    padding-block: 3rem;
    gap: 1.5rem;
  }

  .cta-phones {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: none;
  }

  .cta-copy h2 {
    font-size: 1.45rem;
  }

  .quote-form {
    padding: 1.2rem;
  }

  .bridge {
    padding-block: 3.25rem;
  }

  .bridge-grid {
    gap: 0.9rem;
  }

  .bridge-item {
    padding: 1.25rem 1.1rem 1.2rem;
  }

  .bridge-bottom .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer {
    padding-block: 3rem 6.5rem;
  }

  .float-wa,
  .back-top {
    width: 3rem;
    height: 3rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .float-wa {
    inset-inline-start: calc(0.85rem + env(safe-area-inset-left, 0px));
  }

  .back-top {
    inset-inline-end: calc(0.85rem + env(safe-area-inset-right, 0px));
  }

  .toast {
    inset-inline: 0.85rem;
    bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px));
    max-width: none;
  }
}

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

  .strip-item {
    min-height: 15.5rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta li {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   WordPress / DT Company extensions
   ============================================ */

.nav-main .menu,
.nav-main > ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main li {
  position: relative;
  list-style: none;
}

.nav-main .sub-menu {
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 0.5rem);
  min-width: 13rem;
  background: var(--brand-teal-deep);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 50;
}

.nav-main li:hover > .sub-menu,
.nav-main li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-main .sub-menu a {
  display: block;
  padding: 0.55rem 1rem;
  white-space: nowrap;
}

.nav-main .sub-menu .sub-menu {
  inset-inline-start: 100%;
  top: 0;
}

.nav-main .has-children > a {
  padding-inline-end: 1.1rem;
}

.nav-main .submenu-toggle {
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.75;
}

.custom-logo-link img,
.logo .custom-logo {
  max-width: 160px;
  height: auto;
}

.dt-internal .dt-page-hero {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 1rem;
  background: linear-gradient(180deg, var(--brand-teal-deep), var(--brand-teal));
  color: var(--white);
}

.dt-internal .dt-page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 0.35rem;
}

.dt-breadcrumbs {
  font-size: 0.82rem;
  line-height: 1.5;
}

.dt-breadcrumbs #breadcrumbs {
  margin: 0;
  padding: 0;
}

/* Breadcrumbs on dark banner / hero */
.dt-page-banner .dt-breadcrumbs,
.dt-page-hero .dt-breadcrumbs {
  padding: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.dt-page-banner .dt-breadcrumbs a,
.dt-page-hero .dt-breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dt-page-banner .dt-breadcrumbs a:hover,
.dt-page-hero .dt-breadcrumbs a:hover {
  color: var(--brand-lime);
}

.dt-page-banner .dt-breadcrumbs .breadcrumb_last,
.dt-page-hero .dt-breadcrumbs .breadcrumb_last {
  color: var(--brand-lime);
  font-weight: 600;
}

.dt-page-content {
  padding-block: 2.5rem 4rem;
}

.dt-content-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .dt-content-wrap:has(.dt-sidebar) {
    grid-template-columns: 1fr 320px;
  }
}

.dt-page-article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.dt-page-article :where(h2, h3, h4) {
  color: var(--brand-teal);
  margin-top: 1.5rem;
}

.dt-page-article :where(p, ul, ol) {
  margin-top: 0.75rem;
}

.dt-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  background: var(--paper);
}

.error-card {
  width: min(100%, 34rem);
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 1.75rem;
}

.error-card img {
  width: 11rem;
  height: auto;
  margin-inline: auto;
}

.error-card p.code {
  margin-top: 1.25rem;
  font-weight: 800;
  color: var(--brand-lime-dark);
  letter-spacing: 0.08em;
}

.error-card h1 {
  margin: 0.4rem 0 0.75rem;
  font-size: 1.6rem;
  color: var(--brand-teal);
}

.error-card p {
  color: var(--muted);
}

.error-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .nav-main .menu,
  .nav-main > ul {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
  }

  .nav-main .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding-inline-start: 1rem;
    display: none;
  }

  .nav-main li.sub-open > .sub-menu {
    display: block;
  }
}

/* LTR / English layout fixes */
html[lang="en"],
body.dt-dir-ltr {
  direction: ltr;
}

body.dt-dir-ltr .hero-btn-primary span,
body.dt-dir-ltr .hero-scroll span {
  transform: scaleX(-1);
}

body.dt-dir-ltr .header-phone {
  text-align: left;
}

body.dt-dir-ltr .nav-main a {
  font-size: 0.84rem;
  white-space: nowrap;
}

body.dt-dir-ltr .nav-main .menu,
body.dt-dir-ltr .nav-main > ul {
  gap: 1rem;
}

@media (min-width: 821px) {
  .nav-main .menu,
  .nav-main > ul {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
}

@media (min-width: 821px) and (max-width: 1280px) {
  body.dt-dir-ltr .header-inner {
    gap: 0.85rem;
  }

  body.dt-dir-ltr .logo picture,
  body.dt-dir-ltr .logo img {
    width: 7.75rem;
  }

  body.dt-dir-ltr .nav-main a {
    font-size: 0.78rem;
  }

  body.dt-dir-ltr .nav-main .menu,
  body.dt-dir-ltr .nav-main > ul {
    gap: 0.65rem;
  }

  body.dt-dir-ltr .header-cta {
    font-size: 0.82rem;
    padding-inline: 0.85rem;
  }
}

body.dt-dir-ltr .stat-float {
  inset-inline-start: auto;
  inset-inline-end: -1.25rem;
}

body.dt-dir-ltr .stat-float-alt {
  inset-inline-start: -1.25rem;
  inset-inline-end: auto;
}

body.dt-dir-ltr .feature-row:nth-child(even) {
  direction: ltr;
}

body.dt-dir-ltr .section-head.center,
body.dt-dir-ltr .error-card,
body.dt-dir-ltr .dt-page-article {
  text-align: left;
}
