/* ============================================================
   DMINTERACT — Premium Corporate CSS
   Color palette: white (dominant) · grey (secondary) · brand-red (accent)
   Black used for text only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

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

:root {
  --black:    #0a0a0a;
  --white:    #ffffff;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-300: #d1d1d1;
  --grey-500: #888888;
  --grey-700: #444444;
  --grey-900: #1a1a1a;
  --brand-red: #c41230;
  --font-main: 'Inter', 'DM Sans', -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --max-w: 1400px;
  --section-pad: 120px 40px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-main); }

/* ─── Typography ───────────────────────────────────────────── */
.display-xl  { font-size: clamp(3rem, 7vw, 7rem);   font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; }
.display-lg  { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }
.display-md  { font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.heading-lg  { font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }
.heading-md  { font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 600; line-height: 1.25; }
.body-lg     { font-size: clamp(1rem, 1.2vw, 1.25rem); font-weight: 400; line-height: 1.7; }
.body-md     { font-size: 1rem; font-weight: 400; line-height: 1.7; }
.label       { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.text-grey   { color: var(--grey-500); }
.text-white  { color: var(--white); }

/* ─── Layout Utilities ─────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section     { padding: var(--section-pad); }
.section-sm  { padding: 80px 40px; }
.grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4      { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.gap-8       { gap: 8px; }
.gap-16      { gap: 16px; }
.gap-24      { gap: 24px; }
.gap-40      { gap: 40px; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mt-40       { margin-top: 40px; }
.mt-60       { margin-top: 60px; }
.mb-8        { margin-bottom: 8px; }
.mb-16       { margin-bottom: 16px; }
/* bg-black → brand-red accent background (used for CTA sections) */
.bg-black    { background: var(--brand-red); color: var(--white); }
.bg-grey     { background: var(--grey-100); }
.bg-white    { background: var(--white); }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--brand-red); color: var(--white);
}
.btn-primary:hover { background: #a30e26; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,18,48,0.28); }
.btn-outline {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--brand-red); color: var(--white); border-color: var(--brand-red); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--brand-red); }
.btn-red { background: var(--brand-red); color: var(--white); }
.btn-red:hover { background: #a30e26; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,18,48,0.3); }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn svg { width: 16px; height: 16px; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo-img { height: 38px; width: auto; display: block; }

.nav-logo img { height: 36px; width: auto; }
.nav-logo { display: flex; align-items: center; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  opacity: 0.8; transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--brand-red); transition: var(--transition-fast);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Live Chat button in nav (opens tawk.to) */
.nav-live-chat {
  background: transparent;
  border: 1.5px solid var(--grey-200);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-live-chat:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .nav-live-chat { display: none; }
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: currentColor; transition: var(--transition-fast);
}

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  transform: translateX(100%); transition: var(--transition);
  padding: 40px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 18px 0; font-size: 1.5rem; font-weight: 600;
  border-bottom: 1px solid var(--grey-200); color: var(--black);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--grey-100);
}
.hero-media {
  position: absolute; inset: 0;
  background: var(--grey-100);
}
/* VIDEO PLACEHOLDER — replace src with actual video later */
.hero-video-placeholder {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  padding-top: 100px;
}
.hero-label {
  display: inline-block;
  color: var(--grey-500);
  margin-bottom: 24px;
}
.hero-title {
  color: var(--black);
  max-width: 800px;
  margin-bottom: 28px;
}
.hero-subtitle {
  color: var(--grey-500);
  max-width: 520px;
  margin-bottom: 48px;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); z-index: 2;
  animation: scrollBounce 2s infinite;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── Brand Statement ──────────────────────────────────────── */
.brand-statement {
  padding: 140px 40px;
  text-align: center;
  background: var(--white);
}
.brand-statement .eyebrow {
  color: var(--brand-red);
  margin-bottom: 24px;
  display: block;
}
.brand-statement h2 {
  max-width: 900px;
  margin: 0 auto 32px;
}
.brand-statement p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--grey-500);
}

/* ─── Solutions Grid ───────────────────────────────────────── */
.solutions-section { padding: 80px 40px 120px; background: var(--grey-100); }
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  display: block; color: var(--brand-red);
  margin-bottom: 16px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background: var(--grey-300);
}
.solution-card {
  position: relative; overflow: hidden;
  background: var(--white);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}
.solution-card:hover .solution-card-img { transform: scale(1.05); }
.solution-card:hover .solution-card-overlay { opacity: 1; }
.solution-card:hover .solution-card-arrow { transform: translateX(4px); }
.solution-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.solution-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(196,18,48,0.85) 0%, rgba(0,0,0,0.05) 60%);
  opacity: 0.65;
  transition: var(--transition);
}
.solution-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  color: var(--white);
  z-index: 2;
}
.solution-card-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.6; margin-bottom: 8px;
}
.solution-card-title {
  font-size: 1.25rem; font-weight: 700;
  line-height: 1.25; margin-bottom: 12px;
}
.solution-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.solution-card-arrow { transition: var(--transition-fast); }

/* ─── Feature Split ────────────────────────────────────────── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.feature-split-media { position: relative; overflow: hidden; background: var(--grey-100); display: flex; align-items: center; justify-content: center; }
.feature-split-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 32px; box-sizing: border-box;
  transition: transform 0.8s ease;
}
.feature-split-media:hover img { transform: scale(1.03); }
.feature-split-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px;
}
.feature-split-body.bg-black { background: var(--brand-red); }
.feature-split-body .eyebrow { color: var(--brand-red); margin-bottom: 20px; }
.feature-split-body h2 { margin-bottom: 24px; }
.feature-split-body p { margin-bottom: 40px; color: var(--grey-500); }
.feature-split-body.bg-black p { color: rgba(255,255,255,0.75); }

/* Override inline black feature-split bodies → light grey */
.feature-split-body[style*="background:var(--black)"] {
  background: var(--grey-100) !important;
}
.feature-split-body[style*="background:var(--black)"] h2 {
  color: var(--black) !important;
}
.feature-split-body[style*="background:var(--black)"] p {
  color: var(--grey-500) !important;
}
.feature-split-body[style*="background:var(--black)"] .section-eyebrow {
  color: var(--brand-red) !important;
}

/* ─── Stats Strip ──────────────────────────────────────────── */
.stats-strip {
  background: var(--grey-100);
  padding: 80px 40px;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--brand-red); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--grey-500); font-weight: 500; }
.stat-divider { width: 1px; background: var(--grey-300); }

/* ─── Product Showcase ─────────────────────────────────────── */
.products-section { padding: 120px 40px; background: var(--white); }
.products-scroll-track {
  display: flex; gap: 24px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 40px;
  scroll-snap-type: x mandatory;
}
.products-scroll-track::-webkit-scrollbar { display: none; }
.product-card {
  flex: 0 0 360px; scroll-snap-align: start;
  background: var(--grey-100); border-radius: 16px;
  overflow: hidden; transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.product-card-media {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--grey-200);
  display: flex; align-items: center; justify-content: center;
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.05); }
.product-card-body { padding: 28px; }
.product-card-cat { color: var(--grey-500); margin-bottom: 8px; }
.product-card-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.product-card-desc { font-size: 0.9rem; color: var(--grey-500); line-height: 1.6; margin-bottom: 20px; }
.product-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--brand-red);
  transition: var(--transition-fast);
}
.product-card-link:hover { gap: 10px; }

/* ─── Global Presence ──────────────────────────────────────── */
.presence-section { padding: 120px 40px; background: var(--grey-100); }
.presence-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 64px; background: var(--grey-200);
}
.presence-card {
  padding: 56px 48px; background: var(--white);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.presence-card:hover { background: var(--grey-100); border-color: var(--brand-red); }
.presence-flag { font-size: 3rem; margin-bottom: 24px; }
.presence-country { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.presence-city { color: var(--grey-500); font-size: 0.9rem; margin-bottom: 20px; }
.presence-detail { color: var(--grey-700); font-size: 0.9rem; line-height: 1.8; }

/* ─── Inquiry Section ──────────────────────────────────────── */
.inquiry-section { padding: 120px 40px; background: var(--grey-100); }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.inquiry-form-wrap { }
.form-title { margin-bottom: 8px; }
.form-subtitle { color: var(--grey-500); margin-bottom: 48px; }

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey-700); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  background: var(--white); border: 1.5px solid var(--grey-200);
  border-radius: 10px; font-family: var(--font-main);
  font-size: 0.95rem; color: var(--black);
  transition: var(--transition-fast); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(196,18,48,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-submit { width: 100%; }

.inquiry-info { padding-top: 20px; }
.inquiry-info h3 { margin-bottom: 24px; }
.inquiry-info-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--grey-200);
}
.inquiry-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.inquiry-info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 4px; }
.inquiry-info-value { font-size: 0.95rem; font-weight: 500; line-height: 1.5; }

/* ─── Trust Strip ──────────────────────────────────────────── */
.trust-strip { padding: 64px 40px; background: var(--white); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.trust-items { display: flex; gap: 60px; justify-content: center; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 1.5rem; }
.trust-text { font-size: 0.85rem; font-weight: 600; color: var(--grey-700); }

/* ─── HQ / Global Presence + Map (pre-footer) ───────────────── */
.hq-section {
  padding: 100px 40px;
  background: var(--grey-100);
  border-top: 1px solid var(--grey-200);
}
.hq-section .container { max-width: var(--max-w); margin: 0 auto; }
.hq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: stretch;
}
.hq-info {
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.hq-offices {
  display: grid;
  gap: 16px;
  margin: 24px 0 20px;
}
.hq-office {
  border-left: 3px solid var(--brand-red);
  padding-left: 16px;
}
.hq-office-flag { font-size: 1.4rem; line-height: 1; margin-bottom: 6px; }
/* SVG flag rendering (flag-icons library) — overrides emoji fallback */
.hq-office-flag .fi {
  width: 28px;
  height: 20px;
  border-radius: 2px;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.presence-flag .fi,
.presence-v2-flag .fi {
  width: 56px;
  height: 40px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
/* Inline flags next to phone numbers in footer + contact cards */
.footer-col li .fi,
.inquiry-info .fi {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.hq-office-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.hq-office-address {
  font-size: 0.86rem;
  color: var(--grey-700);
  line-height: 1.6;
  margin-bottom: 6px;
}
.hq-office-phone {
  font-size: 0.85rem;
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.hq-office-phone:hover { opacity: 0.75; }
.hq-trademark {
  font-size: 0.78rem;
  color: var(--grey-500);
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--grey-200);
  font-style: italic;
}
.hq-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  background: var(--grey-200);
  min-height: 580px;
  height: 100%;
  align-self: stretch;
}
.hq-map .leaflet-container { width: 100%; height: 100%; border-radius: 20px; font-family: var(--font-main); }
.hq-map .leaflet-popup-content { font-family: var(--font-main); font-size: 0.85rem; }
@media (max-width: 1024px) {
  .hq-section { padding: 60px 24px; }
  .hq-grid { grid-template-columns: 1fr; gap: 36px; }
  .hq-info { padding-right: 0; }
  .hq-map { height: 360px; }
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--grey-100);
  color: var(--black);
  padding: 80px 40px 40px;
  border-top: 3px solid var(--brand-red);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid var(--grey-200);
}
.footer-brand-desc { color: var(--grey-500); font-size: 0.88rem; line-height: 1.7; margin-top: 20px; max-width: 320px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.85rem; color: var(--grey-700); transition: var(--transition-fast); }
.footer-col ul a:hover { color: var(--brand-red); }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: var(--grey-500); }
.footer-logo img { height: 28px; opacity: 0.8; }

/* ─── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 160px 40px 100px;
  background: linear-gradient(120deg, var(--brand-red) 0%, #1a0307 65%);
  color: var(--white);
  border-bottom: 1px solid var(--grey-200);
  margin-top: 0;
}
.page-hero .container { max-width: var(--max-w); margin: 0 auto; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb .current { color: rgba(255,255,255,0.85); }
.page-hero-label { color: var(--brand-red); display: block; margin-bottom: 16px; }

/* ─── Sticky CTA Bar (with WhatsApp + Contact + inline tawk.to widget) ─── */
/* padding-right reserves room for the tawk.to chat bubble so the pills sit clear of it */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--white); border-top: 1px solid var(--grey-200);
  padding: 14px 96px 14px 32px; transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}
.sticky-cta-actions { display: flex; gap: 12px; align-items: center; }

/* WhatsApp pill (green) */
.sticky-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 50px;
  background: #25D366; color: #fff;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.sticky-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.sticky-whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.sticky-whatsapp-text { display: inline-flex; flex-direction: column; line-height: 1.15; }
.sticky-whatsapp-text strong { font-size: 0.85rem; font-weight: 700; }
.sticky-whatsapp-text small { font-size: 0.68rem; opacity: 0.9; font-weight: 500; margin-top: 1px; }

/* Live Chat pill (outline) — opens tawk.to */
.sticky-chat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 50px;
  background: var(--white); color: var(--black);
  border: 1.5px solid var(--grey-200);
  cursor: pointer; font-weight: 600; font-size: 0.82rem;
  font-family: var(--font-main);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.sticky-chat:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-1px);
}
.sticky-chat svg { width: 16px; height: 16px; fill: currentColor; }

/* Mobile: stack-friendly, drop the "Ready to transform" text.
   Reserve ~72px right padding for the tawk.to chat bubble. */
@media (max-width: 900px) {
  .sticky-cta { padding: 12px 72px 12px 14px; gap: 8px; }
  .sticky-cta-text { display: none; }
  .sticky-cta-actions { width: 100%; justify-content: flex-start; gap: 8px; }
  .sticky-whatsapp { padding: 8px 12px; }
  .sticky-whatsapp-text small { display: none; }
  .sticky-chat { padding: 9px 14px; }
}
@media (max-width: 480px) {
  .sticky-whatsapp-text strong { font-size: 0.78rem; }
  .sticky-chat span { display: none; }
  .sticky-chat { padding: 9px 14px; }
}

/* ─── Global Search ────────────────────────────────────────── */
.nav-search-btn {
  background: transparent;
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition-fast);
  margin-right: 12px;
}
.nav-search-btn:hover { border-color: var(--brand-red); color: var(--brand-red); }
.nav-search-btn svg { width: 16px; height: 16px; }

.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay-inner {
  max-width: 900px; margin: 0 auto; padding: 80px 32px;
}
.search-overlay-close {
  position: absolute; top: 28px; right: 32px;
  background: var(--grey-100); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition-fast);
  color: var(--black);
}
.search-overlay-close:hover { background: var(--brand-red); color: var(--white); transform: rotate(90deg); }
.search-overlay-close svg { width: 18px; height: 18px; }
.search-input-wrap {
  position: relative;
  border-bottom: 2px solid var(--black);
  padding-bottom: 12px;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}
.search-input-wrap.focused { border-bottom-color: var(--brand-red); }
.search-input {
  width: 100%; border: none; outline: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  padding: 4px 48px 4px 0;
}
.search-input::placeholder { color: var(--grey-300); font-weight: 600; }
.search-input-icon {
  position: absolute; right: 0; bottom: 16px;
  color: var(--grey-500); pointer-events: none;
}
.search-input-icon svg { width: 24px; height: 24px; }
.search-meta {
  font-size: 0.78rem; font-weight: 600;
  color: var(--grey-500); letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.search-empty {
  text-align: center; padding: 48px 0;
  color: var(--grey-500);
}
.search-empty-title {
  font-size: 1.1rem; font-weight: 600;
  color: var(--black); margin-bottom: 8px;
}
.search-section { margin-bottom: 40px; }
.search-section-title {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--brand-red); margin-bottom: 16px;
}
.search-results-list {
  display: flex; flex-direction: column;
  gap: 6px;
}
.search-result {
  display: flex; gap: 16px; align-items: center;
  padding: 14px 16px; border-radius: 12px;
  text-decoration: none; color: inherit;
  background: transparent; transition: var(--transition-fast);
  border: 1px solid transparent;
}
.search-result:hover {
  background: var(--white);
  border-color: var(--grey-200);
  transform: translateX(4px);
}
.search-result-img {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 8px;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.search-result-img img {
  max-width: 90%; max-height: 90%;
  object-fit: contain;
}
.search-result-body { flex: 1; min-width: 0; }
.search-result-cat {
  font-size: 0.7rem; font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.search-result-name {
  font-size: 0.95rem; font-weight: 600;
  color: var(--black); line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.search-result-arrow {
  flex-shrink: 0;
  color: var(--grey-300);
  transition: var(--transition-fast);
}
.search-result:hover .search-result-arrow { color: var(--brand-red); transform: translateX(4px); }
body.search-open { overflow: hidden; }

@media (max-width: 640px) {
  .nav-search-btn { width: 34px; height: 34px; margin-right: 8px; }
  .nav-search-btn svg { width: 14px; height: 14px; }
  .search-overlay-inner { padding: 60px 20px; }
  .search-overlay-close { top: 16px; right: 16px; width: 38px; height: 38px; }
  .search-input { font-size: 1.4rem; padding-right: 36px; }
  .search-input-icon svg { width: 20px; height: 20px; }
}

/* ─── Floating WhatsApp Button (left side) ─────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 9998;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}
.whatsapp-float-tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent var(--black) transparent transparent;
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }
/* On pages with a sticky CTA bar, the sticky CTA already has WhatsApp inside
   — hide the floating button to avoid duplication. */
.sticky-cta ~ .whatsapp-float { display: none !important; }
@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; left: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float-tooltip { display: none; }
}

/* ─── Floating Scroll-Next Button ──────────────────────────── */
.scroll-next-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-red);
  border: 1.5px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 950;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease,
              border-color 0.3s ease, opacity 0.35s ease, bottom 0.35s ease;
  opacity: 0;
  pointer-events: none;
  padding: 0;
}
.scroll-next-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-next-btn:hover {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 18, 48, 0.28);
}
.scroll-next-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.4s ease;
}
.scroll-next-btn.at-bottom svg { transform: rotate(180deg); }
/* Lift the button above sticky CTA bar when it's visible */
.sticky-cta.visible ~ .scroll-next-btn { bottom: 92px; }

/* Mobile sizing */
@media (max-width: 640px) {
  .scroll-next-btn {
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  }
  .scroll-next-btn svg { width: 18px; height: 18px; }
  .sticky-cta.visible ~ .scroll-next-btn { bottom: 86px; }
}

/* ─── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a { font-size: 0.8rem; color: var(--grey-500); }
.breadcrumb a:hover { color: var(--brand-red); }
.breadcrumb span { font-size: 0.8rem; color: var(--grey-300); }
.breadcrumb .current { color: var(--grey-700); }

/* ─── Product Detail ───────────────────────────────────────── */
.product-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 80vh;
}
.product-hero-media {
  background: var(--grey-100); position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-hero-media img { max-height: 70vh; object-fit: contain; padding: 40px; }
.product-hero-body {
  padding: 80px 60px; display: flex;
  flex-direction: column; justify-content: center;
  background: var(--white);
}
.product-hero-body .cat-label { color: var(--brand-red); display: block; margin-bottom: 12px; }
.product-hero-body h1 { margin-bottom: 24px; }
.product-hero-body .desc { color: var(--grey-500); margin-bottom: 40px; }
.product-cta-group { display: flex; flex-direction: column; gap: 12px; }
.product-cta-divider { display: flex; align-items: center; gap: 16px; color: var(--grey-300); font-size: 0.8rem; }
.product-cta-divider::before, .product-cta-divider::after { content: ''; flex: 1; height: 1px; background: var(--grey-200); }

.specs-section { padding: 80px 40px; background: var(--grey-100); }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--grey-300); margin-top: 40px; }
.spec-row { background: var(--white); padding: 20px 28px; display: flex; gap: 24px; }
.spec-key { font-size: 0.8rem; font-weight: 600; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.08em; flex: 0 0 140px; }
.spec-val { font-size: 0.9rem; color: var(--black); font-weight: 500; }

/* ─── Category Page ────────────────────────────────────────── */
.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px; margin-top: 60px;
}

/* ─── About / Contact Pages ────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.value-card { padding: 40px; background: var(--white); border-radius: 16px; border: 1px solid var(--grey-200); }
.value-icon { font-size: 2rem; margin-bottom: 20px; }
.value-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.value-desc { color: var(--grey-500); font-size: 0.9rem; line-height: 1.7; }

/* ─── Video Placeholder ────────────────────────────────────── */
.video-placeholder-section {
  position: relative; overflow: hidden;
  background: var(--grey-100); min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
/* FUTURE VIDEO: replace this div with <video autoplay muted loop playsinline> */
.video-bg-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--grey-100) 0%, var(--white) 50%, var(--grey-100) 100%);
}
.video-bg-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%23c41230" stop-opacity="0.06"/><stop offset="100%25" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><rect width="100" height="100" fill="url(%23g)"/></svg>') center/cover;
}
.video-placeholder-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--black); padding: 40px;
}
.video-play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--grey-300);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px; cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.video-play-btn:hover {
  border-color: var(--brand-red);
  background: var(--brand-red);
  transform: scale(1.08);
}
.video-play-btn:hover svg path { fill: var(--white); }
.video-play-btn svg { margin-left: 4px; }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
}

@media (max-width: 1024px) {
  :root { --section-pad: 80px 24px; }
  .container { padding: 0 24px; }
  .grid-2, .feature-split, .inquiry-grid, .product-hero-grid { grid-template-columns: 1fr; }
  .feature-split-body { padding: 60px 40px; }
  .product-hero-body { padding: 60px 40px; }
  .presence-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 20px; padding-top: 100px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .solutions-grid { grid-template-columns: 1fr; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta { padding: 12px 72px 12px 20px; }
  .sticky-cta-text { display: none; }
  .presence-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; justify-content: flex-start; }
  .page-hero { padding: 120px 20px 60px; }
  .section-sm { padding: 60px 20px; }
  .brand-statement { padding: 80px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .products-scroll-track { gap: 16px; }
  .product-card { flex: 0 0 280px; }
}

/* ─── Notification Toast ───────────────────────────────────── */
.toast {
  position: fixed; bottom: 100px; right: 24px; z-index: 9999;
  background: var(--grey-900); color: var(--white);
  padding: 16px 24px; border-radius: 12px;
  font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateY(20px); opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success::before { content: '✓  '; color: #4ade80; }

/* ─── Site Logo (CSS Text — footer only) ────────────────────── */
.dm-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-main);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
}
.dm-logo-dm { color: var(--brand-red); }
.dm-logo-interact { color: var(--grey-900); }
.footer-logo .dm-logo { font-size: 1.4rem; }
.footer-logo .dm-logo-dm { color: var(--brand-red); }
.footer-logo .dm-logo-interact { color: var(--grey-700); }

/* ─── Hero V2 — Full-Bleed Video Background ─────────────────── */
.hero-v2 {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
}
.hero-v2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 160px 48px 120px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}
.hero-v2-eyebrow {
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 24px;
}
.hero-v2-title {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 18px;
}
.hero-v2-motto {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 22px;
}
.hero-v2-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero-v2-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Showcase column (right side) */
.hero-v2-showcase {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 120px 64px 100px 40px;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: var(--grey-100);
}
.hero-v2-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  border-left: 1px solid var(--grey-200);
  pointer-events: none;
}
/* Full-bleed video background */
.hero-v2-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-v2-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1;
}
.hero-v2-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.showcase-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.showcase-card:hover {
  border-color: var(--brand-red);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(196,18,48,0.1);
}
.showcase-card-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-100);
}
.showcase-card--main .showcase-card-img-wrap { height: 240px; padding: 20px; }
.showcase-card--sm .showcase-card-img-wrap { height: 150px; padding: 16px; }
.showcase-card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.showcase-card:hover .showcase-card-img-wrap img { transform: scale(1.04); }
.showcase-card-label {
  padding: 10px 16px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  border-top: 1px solid var(--grey-200);
}
.showcase-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* Hero V2 responsive */
@media (max-width: 1200px) {
  .hero-v2-content { padding: 140px 60px 100px; }
  .showcase-card--main .showcase-card-img-wrap { height: 210px; }
  .showcase-card--sm .showcase-card-img-wrap { height: 135px; }
}
@media (max-width: 1024px) {
  .hero-v2-content { padding: 120px 48px 80px; }
}
@media (max-width: 768px) {
  .hero-v2-content { padding: 100px 24px 80px; }
  .showcase-card--main .showcase-card-img-wrap { height: 180px; }
  .showcase-card--sm .showcase-card-img-wrap { height: 120px; }
}

/* ============================================================
   LANGUAGE SELECTOR (EN / FR / AR)
   ============================================================ */

/* The selector lives inside .nav-cta (desktop) and the mobile nav (mobile) */
.lang-selector-mount {
  position: relative;
  display: inline-flex;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--grey-200);
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--brand-red); color: var(--brand-red); }
.lang-selector-mount.is-open .lang-toggle { border-color: var(--brand-red); color: var(--brand-red); }
.lang-toggle .fi {
  width: 20px; height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
.lang-toggle .lang-code { letter-spacing: 0.04em; }
.lang-toggle .lang-chevron {
  width: 10px; height: 6px;
  color: var(--grey-500);
  transition: transform 0.25s ease;
}
.lang-selector-mount.is-open .lang-toggle .lang-chevron {
  transform: rotate(180deg);
  color: var(--brand-red);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.10);
  padding: 6px;
  display: none;
  z-index: 1100;
}
.lang-selector-mount.is-open .lang-menu { display: block; }

.lang-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-menu-item:hover { background: var(--grey-100); }
.lang-menu-item.is-active {
  background: rgba(196,18,48,0.06);
  color: var(--brand-red);
  font-weight: 700;
}
.lang-menu-item .fi {
  width: 22px; height: 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

/* Mobile menu version: full-width row */
.mobile-nav .lang-selector-mount {
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
}
.mobile-nav .lang-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.mobile-nav .lang-menu {
  position: relative;
  top: 4px;
  width: 100%;
  box-shadow: none;
  border-radius: 10px;
}

/* ============================================================
   GOOGLE TRANSLATE — hide its banner / tooltip / highlights
   ============================================================ */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
  position: static !important;
}
#google_translate_element { display: none !important; }

/* ============================================================
   RTL ADJUSTMENTS (Arabic)
   ============================================================ */
[dir="rtl"] body { font-family: 'DM Sans', 'Inter', 'Segoe UI', Tahoma, Arial, sans-serif; }
[dir="rtl"] .nav-cta,
[dir="rtl"] .sticky-cta-actions,
[dir="rtl"] .footer-bottom,
[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }
[dir="rtl"] .breadcrumb span { transform: scaleX(-1); display: inline-block; }
[dir="rtl"] .breadcrumb span.current,
[dir="rtl"] .breadcrumb a { transform: none; }
[dir="rtl"] .product-card-link::after,
[dir="rtl"] .big-three-link::after,
[dir="rtl"] .sol-card-link::after,
[dir="rtl"] .product-tile-action::after { transform: scaleX(-1); }
[dir="rtl"] .product-tile-action,
[dir="rtl"] .product-card-link,
[dir="rtl"] .big-three-link,
[dir="rtl"] .sol-card-link { flex-direction: row-reverse; }
[dir="rtl"] .lang-menu { left: 0; right: auto; }
[dir="rtl"] .country-picker-dropdown { left: 0; right: auto; }
[dir="rtl"] .nav-logo { margin-right: 0; margin-left: 24px; }
[dir="rtl"] .footer-col ul { padding: 0; }
[dir="rtl"] ul, [dir="rtl"] ol { padding-right: 1.2em; padding-left: 0; }

/* Responsive — hide flag label text on tight screens, keep flag + chevron */
@media (max-width: 480px) {
  .nav-cta .lang-toggle .lang-code { display: none; }
  .nav-cta .lang-toggle { padding: 6px 10px; }
}
