:root {
  --primary: #00145b;
  --primary-2: #061f75;
  --primary-soft: #eef2ff;
  --secondary: #e76a34;
  --secondary-2: #cf5420;
  --secondary-soft: #fff0e9;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-tint: #f2f5f9;
  --border: #dfe6ef;
  --border-strong: #cbd5e1;
  --text: #142033;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --success: #1b8a5a;
  --danger: #c0392b;
  --shadow-sm: 0 8px 22px rgba(0, 20, 91, 0.08);
  --shadow: 0 18px 45px rgba(0, 20, 91, 0.12);
  --shadow-lg: 0 30px 80px rgba(0, 20, 91, 0.16);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 6px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Backward-compatible aliases used by the existing homepage markup. */
  --gold: var(--secondary);
  --gold-light: #ff9a68;
  --gold-dark: var(--secondary-2);
  --dark: var(--primary);
  --dark-2: #06206e;
  --dark-3: var(--surface-soft);
  --dark-4: var(--surface);
  --dark-5: var(--surface-tint);
  --mid: var(--muted);
  --light-1: var(--muted);
  --light-2: var(--text);
  --light-3: var(--border);
  --accent: var(--secondary);
  --accent-2: var(--primary);
  --red: var(--danger);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--secondary); color: var(--white); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

.topbar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar a { color: rgba(255,255,255,0.86); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--secondary); }
.topbar-left, .topbar-right { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-sep { color: rgba(255,255,255,0.28); }
.topbar-badge {
  background: var(--secondary);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s var(--ease);
}
.header.has-topbar { top: 37px; }
.header.scrolled {
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 3%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  /* width: 42px;
  height: 42px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -1px;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  box-shadow: 0 12px 28px rgba(0,20,91,0.16); */
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.12em;
  color: var(--primary);
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--secondary);
  display: block;
  margin-top: 3px;
  text-transform: uppercase;
  font-weight: 700;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions-top { gap: 10px; }
.header-actions-bottom { margin-left: auto; display:flex; align-items:center; gap:12px; }
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-row.header-top-row { align-items: center; }
.header-row.header-bottom-row { align-items: center; }

.header-row.header-bottom-row > nav,
.header-row > nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
}
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
}
nav a:hover, nav a.active { color: var(--secondary); background: var(--secondary-soft); }
nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
.header-row.header-bottom-row > nav, .header-row > nav {
    padding-left: 5%;
}
.site-search {
  position: relative;
  flex: 1 1 250px;
  max-width: 40%;
  min-width: 210px;
}
.site-search-field {
  position: relative;
  width: 100%;
}
.site-search-field > i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 13px;
  pointer-events: none;
  transition: color 0.2s;
}
.site-search input {
  width: 100%;
  height: 42px;
  color: var(--text);
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,20,91,0.16);
  border-radius: 10px;
  padding: 10px 40px 10px 38px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.site-search input::placeholder { color: var(--muted-2); }
.site-search:hover input {
  border-color: rgba(0,20,91,0.28);
  background: var(--white);
}
.site-search:focus-within input {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(231,106,52,0.12), 0 12px 28px rgba(0,20,91,0.08);
  transform: translateY(-1px);
}
.site-search:focus-within .site-search-field > i { color: var(--primary); }
.site-search-toggle,
.site-search-clear {
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.site-search-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border);
}
.site-search-toggle:hover,
.site-search-toggle:focus-visible,
.mobile-menu-btn:hover,
.mobile-menu-btn:focus-visible {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}
.site-search-clear {
  display: flex;
  position: absolute;
  right: 7px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
  pointer-events: none;
}
.site-search.has-value .site-search-clear {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}
.site-search-clear:hover,
.site-search-clear:focus-visible {
  color: var(--secondary);
  background: var(--secondary-soft);
}

.header-actions { display: flex; gap: 12px; align-items: center; }
.header-cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,20,91,0.18);
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.header-cart-link:hover,
.header-cart-link:focus-visible {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-1px);
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}
.cart-count.is-empty { background: var(--muted-2); }
.btn-outline,
.btn-primary,
.btn-hero-primary,
.btn-hero-secondary,
.product-btn,
.form-submit,
.checkout-submit,
.footer-newsletter button,
.page-cta,
.sort-select {
  min-height: 42px;
}
.btn-outline,
.btn-primary,
.btn-hero-primary,
.btn-hero-secondary,
.page-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}
.btn-outline,
.btn-hero-secondary {
  color: var(--primary);
  border: 1px solid rgba(0,20,91,0.22);
  padding: 10px 20px;
  background: var(--white);
}
.btn-outline:hover,
.btn-hero-secondary:hover {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(231,106,52,0.22);
}
.btn-primary,
.btn-hero-primary,
.page-cta,
.form-submit,
.footer-newsletter button {
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 24px;
  box-shadow: 0 10px 24px rgba(0,20,91,0.14);
      background: #df6938;
}
.footer-newsletter button:hover {
    background: #04082c !important;
    border: 1px solid #d7683b;
}
.btn-primary:hover,
.btn-hero-primary:hover,
.page-cta:hover,
.form-submit:hover,
.footer-newsletter button:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(231,106,52,0.24);
}
.mobile-menu-btn {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s var(--ease);
}
.mobile-menu-btn[aria-expanded="true"] {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
    z-index: 6;
    opacity: 0.050;
    filter: saturate(0.9) contrast(1.04);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 42%, rgba(255,255,255,0.62) 100%),
    radial-gradient(circle at 78% 25%, rgba(231,106,52,0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(247,249,252,0.86) 48%, rgba(238,242,255,0.72) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(0,20,91,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,20,91,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-shaft {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.78;
}
.hero-shaft-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,20,91,0.08), transparent);
}
.shaft-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0,20,91,0.22) 20%, rgba(231,106,52,0.2) 80%, transparent);
}
.shaft-rail-1 { left: 20%; }
.shaft-rail-2 { right: 20%; }
.shaft-rail-3 { left: 50%; }
.elevator-car {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  animation: elevatorRide 8s ease-in-out infinite;
}
.elevator-car-body {
  /* background: var(--white); */
  border: 1px solid rgba(0,20,91,0.16);
  height: 200px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
/* background-image: url('../images/life_style_working_48.jpg'); */

}
.elevator-door {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: calc(50% - 4px);
  background: linear-gradient(160deg, #f8fafc, #e9eef8);
  border: 1px solid var(--border);
}
.elevator-door-l { left: 4px; border-radius: 4px 0 0 4px;
background-image: url('../images/life_style_working_48.jpg');
 background-size: cover;
    background-position: left;
}
.elevator-door-r { right: 4px; border-radius: 0 4px 4px 0; 
  background-image: url('../images/life_style_working_48.jpg');
    background-size: cover;
    background-position: right;
}
.elevator-button-panel {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.e-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
}
.e-btn.lit {
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(231,106,52,0.55);
}
@keyframes elevatorRide {
  0% { top: 70%; }
  40% { top: 25%; }
  60% { top: 25%; }
  100% { top: 70%; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 32px 0px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}
.eyebrow-line,
.section-label-line { width: 32px; height: 2px; background: var(--secondary); }
.eyebrow-text,
.section-label-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
}
.hero-title {
  font-family: var(--font-display);
     font-size: clamp(56px, 8vw, 92px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 0;
    color: var(--primary);
    max-width: 700px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}
.hero-title em,
.section-title em { font-style: normal; color: var(--secondary); }
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}
.hero-desc strong,
.about-content p strong { color: var(--primary); font-weight: 700; }
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s var(--ease) 0.8s both;
}
.btn-hero-primary,
.btn-hero-secondary { padding: 16px 34px; }
.hero-trust {
  display: flex;
  gap: 34px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 1s both;
}
.trust-divider { width: 1px; height: 42px; background: var(--border); }
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.trust-num span { color: var(--secondary); }
.trust-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
}
.hero-cert {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  animation: fadeInUp 0.8s var(--ease) 1.2s both;
}
.cert-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
  font-weight: 700;
}
.cert-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.ticker {
  background: var(--primary);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--primary);
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* Section cadence: alternate light/tinted, with two dark anchors
   (stats band + components) for rhythm and contrast. */
.about,
.services,
.products,
.why,
.components,
.partners,
.contact { position: relative; overflow: hidden; }
.about,
.products,
.contact { background: var(--surface-soft); }
.services,
.why,
.partners { background: var(--white); }
.components { background: var(--primary); }
.about::before,
.why::before,
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,20,91,0.12), transparent);
}
.about-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual-main {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary-soft), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.about-visual-main img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,20,91,0.55) 100%);
}
.about-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 164px;
  height: 164px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.accent-num {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}
.accent-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}
.about-certified,
.why-feature,
.cert-badge,
.contact-info-item,
.contact-form-wrap,
.service-card,
.product-card,
.comp-item,
.comparison-table,
.info-card,
.faq-item,
.value-card,
.team-card,
.stat-card,
.gallery-main,
.spec-card,
.trust-card,
.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.about-certified {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.certified-icon,
.service-icon,
.why-feature-icon,
.comp-icon,
.contact-info-icon,
.info-icon,
.value-icon,
.trust-icon {
  width: 46px;
  height: 46px;
  background: var(--secondary-soft);
  border: 1px solid rgba(231,106,52,0.16);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.certified-text { font-size: 13px; color: var(--muted); }
.certified-text strong { color: var(--primary); display: block; font-size: 14px; }
.about-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-markets,
.cert-grid,
.footer-social,
.product-action,
.detail-actions,
.faq-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.market-badge,
.product-category,
.detail-badge,
.faq-pill,
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.market-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  color: var(--primary);
}
.market-badge i { color: var(--secondary); }

.stats-band {
  background: var(--primary);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 28px 24px;
  background: var(--primary);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  padding: 34px 30px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before,
.product-card::before,
.why-feature::before,
.comp-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover,
.product-card:hover,
.why-feature:hover,
.comp-item:hover {
  transform: translateY(-4px);
  border-color: rgba(231,106,52,0.32);
  box-shadow: var(--shadow);
}
.service-card:hover::before,
.product-card:hover::before,
.why-feature:hover::before,
.comp-item:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--secondary);
  margin-bottom: 20px;
}
.service-card:hover .service-icon,
.why-feature:hover .why-feature-icon,
.comp-item:hover .comp-icon,
.contact-info-item:hover .contact-info-icon,
.value-card:hover .value-icon {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.service-name,
.why-feature-title,
.comp-name,
.product-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}
.service-name { font-size: 23px; margin-bottom: 12px; }
.service-desc,
.why-feature-desc,
.comp-sub,
.product-ranges { font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--secondary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.products-filter,
.shop-toolbar,
.faq-search {
  display: flex;
  gap: 8px;
  background: var(--surface-soft);
  padding: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.filter-btn,
.faq-pill {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
  border: none;
  padding: 9px 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover,
.faq-pill.active,
.faq-pill:hover {
  background: var(--primary);
  color: var(--white);
}
.products-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.topbar-right a {
    font-weight: 700;
}
.product-card {
  overflow: hidden;
  transition: all 0.35s var(--ease);
  position: relative;
  cursor: default;
}
.product-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-soft), var(--surface-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,20,91,0.18);
  position: relative;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-inner { position: absolute; inset: 0; transition: transform 0.5s var(--ease); }
.product-card:hover .product-img-inner { transform: scale(1.05); }

/* Featured-first: a wide hero card that breaks the uniform grid.
   Spans 2 of 3 columns and lays out image + info horizontally, so the
   catalog opens with one anchor product instead of a flat 8-up grid. */
.product-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}
.product-card--featured .product-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 300px;
}
.product-card--featured .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}
.product-card--featured .product-name { font-size: clamp(22px, 2.4vw, 30px); }
.product-card--featured .product-ranges { font-size: 15px; margin-bottom: 6px; max-width: 42ch; }
.product-card--featured .product-action { margin-top: 12px; }
.product-badge,
.detail-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: capitalize;
  padding: 5px 10px;
  border-radius: 999px;
}
section.products .product-img i {
    display: none;
}
.badge-new { background: var(--primary); color: var(--white); }
.badge-hot { background: var(--secondary); color: var(--white); }
.product-info { padding: 20px; }
.product-category {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}
.product-name { font-size: 18px; margin-bottom: 8px; }
.product-btn {
  flex: 1;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.product-btn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}
.current-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.old-price {
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 700;
}
.discount-badge {
  background: var(--secondary-soft);
  color: var(--secondary);
  border: 1px solid rgba(231,106,52,0.16);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 800;
}
.product-cart-btn.added,
[data-add-to-cart].added {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  font-weight: 700;
}
.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.why::after {
  content: 'FUTURE';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 230px;
  font-weight: 900;
  color: rgba(0,20,91,0.035);
  letter-spacing: 0;
  pointer-events: none;
}
.why-grid { grid-template-columns: 1fr 1.15fr; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}
.why-feature { padding: 26px; position: relative; overflow: hidden; transition: all 0.3s var(--ease); }
.why-feature-title { font-size: 18px; margin-bottom: 8px; }
.why-certs { margin-top: 48px; }
.cert-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
}
.cert-badge {
  padding: 11px 16px;
  align-items: center;
  box-shadow: none;
}
.cert-badge i { color: var(--secondary); }
.cert-badge span { font-size: 13px; color: var(--primary); font-weight: 700; }
.why-visual { position: relative; z-index: 1; }
.comparison-table { overflow: hidden; }
.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.comparison-header {
  background: var(--primary);
  border-bottom: 1px solid var(--border);
}
.comparison-header-cell {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.comparison-header-cell.highlight {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.comparison-row { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: var(--surface-soft); }
.comparison-cell {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
}
.comparison-cell.feature { color: var(--text); font-weight: 600; }
.comparison-cell.highlight { background: var(--primary-soft); justify-content: center; }
.check { color: var(--secondary); font-size: 16px; }
.cross { color: var(--muted-2); font-size: 16px; }

.components-title-area { text-align: center; margin-bottom: 56px; }
.components-title-area .section-label { justify-content: center; }
.components-title-area .section-title { margin: 0 auto; }
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.comp-item {
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.comp-name { font-size: 17px; margin-bottom: 4px; }

/* partners section styles consolidated further down to avoid duplication */

.contact-grid { align-items: start; }
.contact-info-items {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  transition: all 0.25s var(--ease);
}
.contact-info-item:hover { transform: translateY(-3px); border-color: rgba(231,106,52,0.3); }
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 800;
}
.contact-info-value { font-size: 15px; color: var(--primary); font-weight: 700; }
.contact-info-value a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--secondary); }
.contact-form-wrap { padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: capitalize;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select,
.faq-search input,
.sort-select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.faq-search input:focus,
.sort-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(231,106,52,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.faq-search input::placeholder { color: var(--muted-2); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  width: 100%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer {
  background: #000a2c;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-main { padding: 68px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.45fr;
  gap: 52px;
}
.footer .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 20px 0 24px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--secondary); }
.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.footer-newsletter input:focus { border-color: var(--secondary); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.48); }
.footer-newsletter button {
  width: 100%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.footer-newsletter p { font-size: 11px; color: rgba(255,255,255,0.54); margin-top: 10px; line-height: 1.5; }
.footer-newsletter p a { color: var(--secondary); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.58); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--secondary); }

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--secondary); }

body.mobile-nav-open { overflow: hidden; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1990;
  background: rgba(0,20,91,0.42);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(90vw, 410px);
  height: 100vh;
  height: 100dvh;
  z-index: 2000;
  background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 70px rgba(0,20,91,0.18);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s var(--ease), visibility 0.3s var(--ease);
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.mobile-nav h2 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.mobile-nav-close {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 42px;
  font-size: 18px;
  transition: all 0.2s var(--ease);
}
.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  background: var(--secondary);
  border-color: var(--secondary);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible,
.mobile-nav-links a.active,
.mobile-nav-links a[aria-current="page"] {
  color: var(--secondary);
  background: var(--secondary-soft);
  border-color: rgba(231,106,52,0.18);
  transform: translateX(-2px);
}
.mobile-nav-search .site-search {
  display: block;
  flex: none;
  max-width: none;
  min-width: 0;
}
.mobile-nav-search .site-search-toggle { display: none; }
.mobile-nav-search .site-search-field {
  position: relative;
  inset: auto;
  width: 100%;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-nav-search .site-search input { box-shadow: none; }
.mobile-nav-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.mobile-nav-actions .btn-outline,
.mobile-nav-actions .btn-primary {
  width: 100%;
  min-height: 46px;
}
.mobile-nav-actions .header-cart-link {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-nav-actions .header-cart-link::after { content: 'Cart'; }

/* Inner pages */
.page-hero {
  position: relative;
  padding: 168px 0 78px;
  background:
    radial-gradient(circle at 82% 30%, rgba(231,106,52,0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 56%, #eef2ff 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,20,91,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,20,91,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { color: var(--secondary); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--primary);
  letter-spacing: 0;
  max-width: 820px;
}
.page-title em { color: var(--secondary); font-style: normal; }
.page-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-top: 22px;
}
.page-band { background: var(--surface-soft); }

.shop-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 104px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-title,
.toolbar-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.filter-group { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
}
.filter-option input { accent-color: var(--secondary); }
.shop-content { min-width: 0; }
.shop-toolbar {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 14px;
}
.shop-toolbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.search-field {
  min-width: min(100%, 280px);
  position: relative;
}
.search-field i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
}
.search-field input { padding-left: 38px; }
.sort-select { width: auto; min-width: 190px; color: var(--primary); font-weight: 700; }
.empty-state {
  display: none;
  text-align: center;
  padding: 60px 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.empty-state.visible { display: block; }
.empty-state i { font-size: 42px; color: var(--secondary); margin-bottom: 14px; }
.empty-state h3 { font-family: var(--font-display); color: var(--primary); font-size: 28px; }
.empty-state p { color: var(--muted); margin-top: 6px; }
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.cart-items,
.checkout-form,
.checkout-summary {
  display: grid;
  gap: 16px;
}
.cart-item,
.checkout-panel,
.cart-summary-card,
.checkout-products {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 110px 148px 110px 42px;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
.cart-item img,
.checkout-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.cart-item-main span,
.checkout-product span {
  display: block;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-item-main h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 24px;
  line-height: 1.05;
  margin: 4px 0;
}
.cart-item-main p { color: var(--muted); font-size: 13px; }
.cart-unit,
.cart-line-total {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 900;
  font-size: 20px;
}
.cart-remove {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--danger);
  cursor: pointer;
  transition: all 0.2s;
}
.cart-remove:hover {
  background: var(--danger);
  border-color: var(--danger);
  color: var(--white);
}
.cart-summary { position: sticky; top: 104px; }
.cart-summary-card { padding: 22px; }
.cart-summary-card h3,
.checkout-panel h2 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 16px;
}
.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.summary-row strong { color: var(--primary); }
.summary-row.discount strong { color: var(--success); }
.summary-total {
  border-bottom: none;
  color: var(--primary);
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 900;
}
.cart-summary-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.cart-summary-actions .btn-outline,
.cart-summary-actions .btn-primary { width: 100%; }
.btn-primary.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.cart-clear {
  border: none;
  background: transparent;
  color: var(--danger);
  font-weight: 800;
  cursor: pointer;
  padding: 8px;
}
.cart-empty .btn-primary {
  display: inline-flex;
  margin-top: 18px;
  text-decoration: none;
}
.checkout-panel { padding: 24px; }
.checkout-form.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-bottom: 10px;
  cursor: pointer;
}
.payment-option input { margin-top: 4px; accent-color: var(--secondary); }
.payment-option strong { color: var(--primary); display: block; }
.payment-option small { color: var(--muted); }
.checkout-submit { width: 100%; margin-top: 10px; }
.form-status { min-height: 22px; margin-top: 12px; font-weight: 800; }
.checkout-products {
  padding: 14px;
  display: grid;
  gap: 12px;
}
.checkout-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.checkout-product strong {
  color: var(--primary);
  display: block;
  line-height: 1.2;
}
.checkout-product b {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: start;
}
.product-gallery { display: grid; gap: 16px; }
.gallery-main {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-soft), var(--surface-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-main i { font-size: 120px; color: rgba(0,20,91,0.16); }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(231,106,52,0.1);
}
.detail-info .detail-badge {
  position: static;
  background: var(--secondary-soft);
  color: var(--secondary);
  margin-bottom: 16px;
}
.detail-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--primary);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.detail-text { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.price-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.price-label { color: rgba(255,255,255,0.72); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; }
.price-value { font-family: var(--font-display); font-size: 34px; font-weight: 900; line-height: 1; }
.stock { color: #8ff0bf; font-weight: 800; font-size: 13px; }
.detail-old-price {
  color: rgba(255,255,255,0.58);
  margin-top: 8px;
  font-weight: 700;
  text-decoration: line-through;
}
.detail-old-price span {
  text-decoration: none;
  color: #8ff0bf;
  margin-left: 8px;
}
.detail-stock-wrap { text-align: right; display: grid; gap: 6px; }
.sku { color: rgba(255,255,255,0.66); font-size: 12px; font-weight: 700; }
.detail-commerce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  margin-bottom: 18px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--secondary);
  font-weight: 800;
}
.product-rating span { color: var(--primary); margin-left: 6px; }
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.quantity-control button {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--surface-soft);
  color: var(--primary);
  cursor: pointer;
  font-weight: 900;
  transition: all 0.2s;
}
.quantity-control button:hover {
  background: var(--secondary);
  color: var(--white);
}
.quantity-control input {
  width: 54px;
  height: 38px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  outline: none;
  font-weight: 800;
  color: var(--primary);
}
.detail-actions { margin-bottom: 26px; }
.detail-actions .btn-primary,
.detail-actions .btn-outline { padding: 14px 24px; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.spec-card { padding: 16px; box-shadow: none; }
.spec-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.spec-value { color: var(--primary); font-weight: 800; margin-top: 4px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-card { padding: 18px; text-align: center; }
.trust-icon { margin: 0 auto 10px; }
.trust-card strong { display: block; color: var(--primary); font-family: var(--font-display); font-size: 17px; }
.trust-card span { color: var(--muted); font-size: 13px; }

.story-grid,
.values-grid,
.team-grid,
.contact-card-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}
.story-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.story-panel {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow);
}
.story-panel .section-title { color: var(--white); }
.story-panel p { color: rgba(255,255,255,0.76); margin-top: 18px; line-height: 1.75; }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.value-card { padding: 28px; transition: all 0.25s var(--ease); }
.value-card:hover { transform: translateY(-4px); border-color: rgba(231,106,52,0.3); box-shadow: var(--shadow); }
.value-card h3,
.team-card h3,
.info-card h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 24px;
  margin: 16px 0 8px;
}
.value-card p,
.team-card p,
.info-card p { color: var(--muted); line-height: 1.7; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { padding: 24px; text-align: center; }
.stat-card strong { display: block; font-family: var(--font-display); font-size: 44px; color: var(--primary); line-height: 1; }
.stat-card span { color: var(--muted); font-weight: 700; }
.team-grid { grid-template-columns: repeat(3, 1fr); }
.team-card { padding: 26px; }
.team-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.contact-card-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 34px; }
.info-card { padding: 24px; transition: all 0.25s var(--ease); }
.info-card:hover { transform: translateY(-4px); border-color: rgba(231,106,52,0.3); box-shadow: var(--shadow); }
.map-card {
  min-height: 360px;
  display: grid;
  place-items: center;
  /* background:
    linear-gradient(rgba(0,20,91,0.86), rgba(0,20,91,0.86)),
    linear-gradient(135deg, var(--primary-soft), var(--surface-soft)); */
background:  transparent;
  color: var(--white);
  text-align: center;
  padding: 0;
}
.map-card i { color: var(--secondary); font-size: 46px; margin-bottom: 12px; }
.map-card h3 { font-family: var(--font-display); font-size: 34px; }
.map-card p { color: rgba(255,255,255,0.78); max-width: 460px; margin: 8px auto 0; }

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
}
.faq-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 104px;
}
.faq-search {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 18px;
}
.faq-search i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
}
.faq-search input { padding-left: 38px; }
.faq-categories { flex-direction: column; }
.faq-pill { width: 100%; justify-content: flex-start; border-radius: var(--radius); }
.faq-list { display: grid; gap: 14px; }
.faq-item { overflow: hidden; box-shadow: none; }
.faq-question {
  width: 100%;
  border: none;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-question i { color: var(--secondary); transition: transform 0.25s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.75;
}

/* MY ACCOUNT PAGE */
.account-page { background: var(--surface-soft); }
.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.account-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.account-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.account-menu-title {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.account-nav {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
      align-items: flex-start;
}
.account-nav a.account-nav-link {
    width: 100%;
}
.account-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  font-size: 14px;
  font-weight: 600;
}
.account-nav-link i {
  width: 18px;
  color: var(--secondary);
}
.account-nav-link:hover,
.account-nav-link.active {
  color: var(--primary);
  background: var(--primary-soft);
  border-left-color: var(--secondary);
}
.account-menu-divider {
  height: 1px;
  background: var(--border);
}
.account-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--danger);
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.account-logout-btn:hover {
  background: rgba(192, 57, 43, 0.08);
}
.account-logout-btn i {
  width: 18px;
}

.account-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.account-tab {
  display: none;
  padding: 36px 32px;
}
.account-tab.active {
  display: block;
}
.account-tab-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.account-tab-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

/* DASHBOARD */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.dashboard-card {
  background: var(--primary-soft);
  border: 1px solid rgba(0, 20, 91, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s var(--ease);
}
.dashboard-card:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.dashboard-card-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 22px;
  flex-shrink: 0;
}
.dashboard-card-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.dashboard-card-value {
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.dashboard-section h3 {
  font-family: var(--font-display);
  color: var(--primary);
}
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.quick-action-btn:hover {
  background: var(--primary-soft);
  border-color: var(--secondary);
  transform: translateY(-2px);
}
.quick-action-btn i {
  font-size: 24px;
  color: var(--secondary);
}

/* PROFILE */
.profile-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.profile-avatar {
  font-size: 80px;
  color: var(--secondary);
  flex-shrink: 0;
}
.profile-info {
  flex: 1;
}
.profile-info-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.profile-info-row:last-child {
  border-bottom: none;
}
.profile-info-label {
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 140px;
}
.profile-info-value {
  color: var(--primary);
  font-weight: 700;
}

/* EDIT PROFILE FORM */
.edit-profile-form {
  max-width: 700px;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.form-actions button {
  flex: 1;
  min-height: 46px;
}

/* ORDERS */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-item {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.order-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.order-info {
  flex: 1;
}
.order-id {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.order-date {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.order-status {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.status-completed {
  background: rgba(27, 138, 90, 0.12);
  color: var(--success);
}
.status-pending {
  background: rgba(231, 106, 52, 0.12);
  color: var(--secondary);
}
.order-details {
  padding: 16px 20px;
}
.order-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
}
.order-amount {
  font-weight: 700;
  color: var(--primary);
}
.order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.order-total {
  display: flex;
  gap: 16px;
  color: var(--primary);
  font-weight: 700;
}
.order-action-link {
  color: var(--secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s;
}
.order-action-link:hover {
  color: var(--secondary-2);
}

/* WISHLIST */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.wishlist-item {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.wishlist-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.wishlist-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
}
.wishlist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.wishlist-item:hover .wishlist-img img {
  transform: scale(1.05);
}
.wishlist-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--danger);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 16px;
}
.wishlist-remove:hover {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.wishlist-info {
  padding: 16px;
}
.wishlist-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.wishlist-price {
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--secondary);
}

/* SETTINGS */
.settings-sections {
  display: grid;
  gap: 32px;
}
.settings-section {
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.settings-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}
.settings-section p {
  color: var(--muted);
  font-size: 14px;
}
.settings-section.danger {
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.2);
}
.settings-section.danger h3 {
  color: var(--danger);
}
.settings-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.settings-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  user-select: none;
}
.settings-checkbox input {
  accent-color: var(--secondary);
  cursor: pointer;
}
.settings-checkbox span {
  color: var(--text);
  font-size: 14px;
}
.btn-danger {
  background: var(--danger);
  color: var(--white);
  border: 1px solid var(--danger);
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-danger:hover {
  background: darken(#c0392b, 5%);
  transform: translateY(-2px);
}

/* PARTNERS SLIDER - responsive, overflow-safe marquee
   - The container `.partners-inner` is a clipping box (overflow:hidden).
   - The `.partner-items` row is duplicated via JS to allow a seamless loop.
   - Animation translates the row by -50% so the duplicated half scrolls into view.
   - All elements use box-sizing:border-box to avoid width surprises. */
.partners-inner {
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* critical to prevent horizontal scroll */
  box-sizing: border-box;
}

.partners-inner * { box-sizing: border-box; }

.partner-items {
  display: flex;
  gap: 44px;
  align-items: center;
  flex-wrap: nowrap; /* single-line scroller */
  width: max-content; /* natural width; container will clip */
  animation: partners-marquee 30s linear infinite;
}

.partner-item {
  flex: 0 0 auto; /* never shrink or grow */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-item img { max-height: 60px; width: auto; display: block; }

/* Keyframes: translate -50% to scroll one set of items; duplication handled in JS */
@keyframes partners-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments: reduce gaps and image sizes on smaller screens */
@media (max-width: 1024px) {
  .partner-items { gap: 36px; }
  .partner-item img { max-height: 52px; }
}

@media (max-width: 900px) {
  .partner-items { gap: 20px; }
  .partner-item img { max-height: 48px; }
}

@media (max-width: 480px) {
  .partner-items { gap: 14px; }
  .partner-item img { max-height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .partner-items { animation: none !important; }
}

/* PRODUCT LINKS */

/* Reduce gaps and image sizes on smaller screens to avoid overflow */
@media (max-width: 900px) {
  .partner-items { gap: 20px; }
  .partner-item img { max-height: 48px; }
}

@media (max-width: 480px) {
  .partner-items { gap: 14px; }
  .partner-item img { max-height: 36px; }
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .partner-items { animation: none !important; }
}
.product-name,
.cart-item-main h3 {
  transition: color 0.2s, text-decoration 0.2s;
}
.product-name a,
.cart-item-main h3 a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.product-name a:hover,
.cart-item-main h3 a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Make the wrapping anchor behave like a block-level link covering the whole name area */
.product-name-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-name-link:focus { outline: none; }
.product-name-link:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
.product-name-link:hover .product-name { color: var(--secondary); text-decoration: underline; }

/* HEADER MY ACCOUNT LINK */
.header-my-account-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header-my-account-link:hover,
.header-my-account-link:focus-visible {
  color: var(--secondary);
  background: var(--secondary-soft);
  transform: translateY(-1px);
}

.header-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
}
.header-cart-link:hover,
.header-cart-link:focus-visible {
  color: var(--secondary);
  background: var(--secondary-soft);
  transform: translateY(-1px);
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.is-empty {
  display: none;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  /* ease-out-quint: settles with a confident, premium decel */
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; transform: none; transition: opacity 0.4s ease; }
}

/* RESPONSIVE ACCOUNT PAGE & HEADER */
@media (max-width: 1200px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-actions { grid-template-columns: 1fr; }
  .profile-card { flex-direction: column; text-align: center; }
  .profile-info-row { flex-direction: column; gap: 8px; }
  .wishlist-grid { grid-template-columns: repeat(3, 1fr); }
  .header-my-account-link span { display: none; }
  .header-my-account-link { padding: 8px 10px; }
}

@media (max-width: 900px) {
  .header-my-account-link { display: none; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: 1fr; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-items { gap: 32px; }
}

@media (max-width: 768px) {
  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr !important;
}

.banner-img {
    width: 90%;
}
  .header-row.header-bottom-row {
    display: none;
}
.header-inner {
    padding-top: 3% !important;
}
  .account-tab { padding: 20px; }
  .dashboard-card { gap: 12px; }
  .profile-card { padding: 20px; }
  .edit-profile-form { max-width: 100%; }
  .orders-list { gap: 16px; }
  .wishlist-grid { grid-template-columns: 1fr; }
  .settings-sections { gap: 20px; }
  .partner-items { gap: 24px; }
}

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

@media (max-width: 1100px) {
  .header-inner { gap: 14px; }
  .header-inner nav a { padding: 9px 10px; }
  .site-search { max-width: 260px; min-width: 180px; }
  .header-actions .btn-outline { display: none; }
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .products-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .stat-cards, .contact-card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid, .detail-layout, .shop-layout, .faq-layout { grid-template-columns: 1fr; }
  .shop-sidebar, .faq-panel { position: static; }
  .comparison-table { display: none; }
  .contact-card-grid { margin-bottom: 28px; }
}
@media (max-width: 900px) {
  .header-inner nav,
  .header-actions,
  .header-inner .site-search {
    display: none;
  }
  .mobile-menu-btn { display: flex; }
  .header-inner nav a {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 8px 8px;
  }
  .site-search { max-width: 220px; min-width: 160px; }
  .header-actions .btn-primary { padding-left: 16px; padding-right: 16px; }
  .about-grid, .contact-grid, .story-grid { grid-template-columns: 1fr; gap: 46px; }
  .services-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-shaft { width: 35%; opacity: 0.5; }
  .contact-info-items, .trust-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mobile-nav.open nav.mobile-nav-links {
    text-align: start;
    display: flex;
    align-items: flex-start;
}

.mobile-nav.open nav.mobile-nav-links a {
    font-weight: 600;
}
  .products-filter {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
}
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .topbar { display: none; }
  .header.has-topbar { top: 0; }
  .header { background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--border); }
  .header-inner { padding: 0 20px; height: 68px; }
  .mobile-nav { width: min(92vw, 390px); padding: 22px; }
  .mobile-nav-links a { font-size: 24px; }
  .cart-item {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 12px;
  }
  .cart-unit { display: none; }
  .cart-item .quantity-control,
  .cart-line-total,
  .cart-remove {
    grid-column: 2 / -1;
  }
  .detail-commerce,
  .price-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .detail-stock-wrap { text-align: left; }
  .hero-content { padding: 110px 20px 72px; }
  .hero-trust { gap: 20px; }
  .trust-divider { display: none; }
  .services-grid, .why-features, .comp-grid, .values-grid, .team-grid, .contact-card-grid { grid-template-columns: 1fr; }
  .products-grid, .shop-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row, .spec-grid, .gallery-thumbs { grid-template-columns: 1fr; }
  .hero-cert, .hero-shaft { display: none; }
  .products-header, .shop-toolbar { flex-direction: column; align-items: stretch; }
  .page-hero { padding: 118px 0 58px; }
  .story-panel { padding: 30px; }
  .price-box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .cart-item {
    grid-template-columns: 1fr;
  }
  .cart-item img {
    width: 100%;
    max-height: 220px;
  }
  .cart-item .quantity-control,
  .cart-line-total,
  .cart-remove {
    grid-column: auto;
  }
  .checkout-product {
    grid-template-columns: 52px 1fr;
  }
  .checkout-product b { grid-column: 2; }
  .products-grid, .shop-grid, .stats-grid, .stat-cards { grid-template-columns: 1fr; }
  .product-card--featured { grid-column: auto; grid-template-columns: 1fr; }
  .product-card--featured .product-img { min-height: 220px; }
  .hero-actions, .detail-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary, .detail-actions .btn-primary, .detail-actions .btn-outline { width: 100%; }
  .hero-title { font-size: clamp(48px, 16vw, 64px); }
  .page-title { font-size: clamp(42px, 15vw, 58px); }
  .footer-legal { flex-direction: column; gap: 10px; }
}
 



    .tf-grid-layout.md-col-2 {
        grid-template-columns: 1fr 1fr;
    }
    .box-image_v04 {
    position: relative;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
}
/* Legibility scrim so overlaid copy stays readable over bright photos */
.box-image_v04.type-3::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,20,91,0.82) 0%, rgba(0,20,91,0.32) 38%, transparent 64%);
    pointer-events: none;
}
.box-image_v04.type-3 .box-image_content { z-index: 2; }
.box-image_v04.type-3 .desc { color: rgba(255,255,255,0.9); }
.box-image_img {
    display: inline-flex;
    width: 100%;
}
.box-image_v04 .box-image_img img {
    min-height: 350px;
}
.box-image_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    .box-image_v04.type-3 .box-image_content {
        left: 36px;
        bottom: 36px;
    }
    .box-image_v04.type-3 .title {
    margin-bottom: 4px;
    font-size: clamp(28px, 3.8vw, 40px);
    line-height: clamp(36px, 4.5vw, 48px);
    letter-spacing: 0.05em;
    color: var(--white);
    text-decoration: none;
}
.box-image_v04.type-3 .desc {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.78);
}
.tf-grid-layout {
    display: grid;
    column-gap: 16px;
    row-gap: 24px;
}
.box-image_content {
    position: absolute;
    display: flex;
    align-items: start;
    flex-direction: column;
}
.banner-img {
    width: 98%;
    margin: 2% auto;
}

/* ===================================================================== */
/* === 3D EFFECTS ===                                                    */
/* Decorative, CSS-driven depth. All effects activate only when JS adds  */
/* `has-3d` to <body> (i.e. motion is allowed). With JS off or           */
/* prefers-reduced-motion on, markup falls back to a clean static state. */
/* ===================================================================== */

/* --- 1. Hero: scroll-driven elevator cab + parallax depth --- */
.has-3d .hero { perspective: 1200px; perspective-origin: 75% 40%; }
.has-3d .hero-shaft { transform-style: preserve-3d; }
/* Keep the idle up/down ride (keyframe drives `top`, synced with the dots).
   Scroll only adds a depth push-back via transform — no vertical conflict. */
.has-3d .elevator-car {
  will-change: transform;
  transform: translateX(-50%) translateZ(var(--cab-z, 0px));
  transition: transform 0.12s linear;
}
.has-3d .hero-grid,
.has-3d .hero-bg { will-change: transform; }

/* --- 2. Products: cursor-driven 3D tilt (desktop, fine pointer only) --- */
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .has-3d .product-card {
    transform-style: preserve-3d;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  .has-3d .product-card.is-tilting {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    box-shadow: var(--shadow-lg);
  }
  /* Inner layers lift toward the viewer for parallax depth */
  .has-3d .product-card .product-img { transform: translateZ(28px); transition: transform 0.25s var(--ease); }
  .has-3d .product-card .product-badge { transform: translateZ(46px); transition: transform 0.25s var(--ease); }
  .has-3d .product-card .product-name,
  .has-3d .product-card .product-action { transform: translateZ(18px); transition: transform 0.25s var(--ease); }
  /* Soft moving highlight follows the cursor */
  .has-3d .product-card.is-tilting::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(circle at var(--gx, 50%) var(--gy, 0%), rgba(255,255,255,0.35), transparent 45%);
    z-index: 4;
  }
}

/* --- 3. Components: rotating VFD drive (CSS cube) --- */
.comp-3d-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  margin: 8px auto 36px;
  perspective: 900px;
}
.comp-3d-cube {
  position: relative;
  width: 130px;
  height: 130px;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(var(--cube-rot, 0deg));
}
.has-3d .comp-3d-cube { animation: compSpin 22s linear infinite; }
@keyframes compSpin {
  from { transform: rotateX(-18deg) rotateY(0deg); }
  to   { transform: rotateX(-18deg) rotateY(360deg); }
}
.comp-3d-stage:hover .comp-3d-cube { animation-play-state: paused; }
.paused-3d { animation-play-state: paused !important; }
.cube-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(160deg, var(--primary-2), var(--primary));
  box-shadow: inset 0 0 22px rgba(0,0,0,0.35);
}
.cube-front  { transform: translateZ(65px); }
.cube-back   { transform: rotateY(180deg) translateZ(65px); }
.cube-right  { transform: rotateY(90deg) translateZ(65px); background: linear-gradient(160deg, #0a1f4d, #06164a); }
.cube-left   { transform: rotateY(-90deg) translateZ(65px); background: linear-gradient(160deg, #0a1f4d, #06164a); }
.cube-top    { transform: rotateX(90deg) translateZ(65px); background: linear-gradient(160deg, #15327e, #0d245f); }
.cube-bottom { transform: rotateX(-90deg) translateZ(65px); background: #06143c; }
/* Faceplate details */
.drive-screen {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  height: 34px;
  border-radius: 3px;
  background: linear-gradient(135deg, #5be3a0, #1b8a5a);
  box-shadow: 0 0 14px rgba(91,227,160,0.55);
}
.drive-vents {
  position: absolute;
  left: 16px; right: 16px; bottom: 30px;
  height: 30px;
  background: repeating-linear-gradient(180deg, transparent 0 4px, rgba(0,0,0,0.35) 4px 6px);
  border-radius: 2px;
}
.drive-brand {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--secondary);
}
/* Heat-sink fins on the sides */
.cube-right .drive-fin, .cube-left .drive-fin {
  position: absolute;
  top: 10%; bottom: 10%;
  width: 6px;
  background: rgba(0,0,0,0.28);
  border-radius: 2px;
}
.cube-right .drive-fin:nth-child(1), .cube-left .drive-fin:nth-child(1) { left: 30%; }
.cube-right .drive-fin:nth-child(2), .cube-left .drive-fin:nth-child(2) { left: 50%; }
.cube-right .drive-fin:nth-child(3), .cube-left .drive-fin:nth-child(3) { left: 70%; }

/* --- 4. "Why us": isometric building (extruded tower) with a glowing cab --- */
.iso-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  margin-bottom: 26px;
  perspective: 900px;
}
/* Tower box: width 96 (x) x height 150 (y) x depth 60 (z) */
.iso-tower {
  position: relative;
  width: 96px;
  height: 150px;
  transform-style: preserve-3d;
  transform: rotateX(60deg) rotateZ(-45deg) translateZ(0);
}
.tower-face {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
/* Front wall (faces the viewer/left) — carries the elevator shaft */
.tower-front {
  width: 96px;
  height: 150px;
  background: linear-gradient(160deg, #33509f, #1a2f6b);
  transform: rotateX(-90deg) rotateY(0deg) translateZ(0);
  transform-origin: bottom;
}
/* Right side wall */
.tower-side {
  width: 60px;
  height: 150px;
  left: 96px;
  background: linear-gradient(160deg, #223a82, #11214f);
  transform: rotateX(-90deg) rotateY(90deg) translateZ(0);
  transform-origin: bottom left;
}
.tower-windows {
  position: absolute;
  inset: 12px 14px;
  background-image:
    linear-gradient(rgba(255,255,255,0.14) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 22px 22px;
}
.tower-shaft {
  position: absolute;
  right: 12px; top: 8px; bottom: 8px;
  width: 18px;
  background: rgba(0,0,0,0.34);
  border-radius: 2px;
  overflow: hidden;
}
.iso-cab {
  position: absolute;
  left: 2px; right: 2px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(160deg, #ffb27d, var(--secondary));
  box-shadow: 0 0 16px rgba(231,106,52,0.85);
}
.has-3d .iso-cab { animation: isoRide 5.5s ease-in-out infinite; }
@keyframes isoRide {
  0%, 100% { top: 6px; }
  50%      { top: calc(100% - 28px); }
}
.iso-ground {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,20,91,0.16), transparent 68%);
  z-index: -1;
}

/* --- 5. Page-wide energy-flow connector (injected by JS) --- */
.energy-rail {
  position: fixed;
  top: 0;
  left: 0;
  width: 3px;
  height: 100vh;
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,20,91,0.12) 12%, rgba(0,20,91,0.12) 88%, transparent);
}
.energy-pulse {
  position: absolute;
  left: -2.5px;
  top: var(--ep, 0%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 12px 2px rgba(231,106,52,0.85);
  transition: top 0.1s linear;
}

@media (max-width: 900px) {
  .comp-3d-stage { height: 180px; }
  .comp-3d-cube { width: 104px; height: 104px; }
  .cube-front { transform: translateZ(52px); }
  .cube-back { transform: rotateY(180deg) translateZ(52px); }
  .cube-right { transform: rotateY(90deg) translateZ(52px); }
  .cube-left { transform: rotateY(-90deg) translateZ(52px); }
  .cube-top { transform: rotateX(90deg) translateZ(52px); }
  .cube-bottom { transform: rotateX(-90deg) translateZ(52px); }
}
@media (max-width: 640px) {
  .energy-rail { display: none; }
}

/* Honor reduced-motion: freeze every 3D animation in a calm static pose */
@media (prefers-reduced-motion: reduce) {
  .comp-3d-cube,
  .iso-cab,
  .elevator-car { animation: none !important; }
  .energy-rail { display: none; }
}

/* ===================================================================== */
/* === EDITORIAL SECTION NUMBERS ===                                     */
/* Auto-number each titled section (01, 02, …) via a counter — no markup */
/* changes, resets per page. The hero uses .hero-eyebrow, so it's skipped*/
/* and numbering begins at the first real section.                       */
/* ===================================================================== */
body { counter-reset: section; }
.section-label { counter-increment: section; }
.section-label::before {
  content: counter(section, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--secondary);
  opacity: 0.85;
}
/* On the dark components band the number reads in light */
.components .section-label::before { color: var(--gold-light); }

/* ===================================================================== */
/* === DARK "CONTROL-ROOM" COMPONENTS SECTION ===                        */
/* The .components background is set to --primary above; this re-skins    */
/* its contents for the dark surface and makes the 3D drive pop.          */
/* ===================================================================== */
.components { color: #fff; }
.components::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.components .container { position: relative; z-index: 1; }
.components .section-title { color: #fff; }
.components .section-desc { color: rgba(255,255,255,0.66); }
.components .comp-item {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}
.components .comp-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(231,106,52,0.45);
  transform: translateY(-4px);
}
.components .comp-name { color: #fff; }
.components .comp-sub { color: rgba(255,255,255,0.58); }
.components .comp-icon {
  background: rgba(231,106,52,0.16);
  border-color: rgba(231,106,52,0.4);
  color: var(--gold-light);
}
/* Make the rotating drive glow against the dark backdrop */
.components .comp-3d-stage { position: relative; }
.components .comp-3d-stage::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231,106,52,0.22), transparent 68%);
  z-index: 0;
}
.components .comp-3d-cube { z-index: 1; filter: drop-shadow(0 22px 38px rgba(0,0,0,0.55)); }
.components .cube-face { border-color: rgba(255,255,255,0.22); }

.cert-badge i {
    margin-right: 5% !important;
}

.cert-badge {
    white-space: nowrap;
}
.partners {
    padding: 3% 0;
}

.partners h2.section-title {
    margin-bottom: 4% !important;
}
.has-3d .hero .container {
    max-width: 100% !important;
    min-width: 100%;
}
.stats-band {
    display: none;
}