:root {
  --primary: #4a90d2;
  --primary-rgb: 74,144,210;
  --primary-dark: #35699c;
  --primary-light: #9cc6ee;
  --accent: #e8912e;
  --accent-rgb: 232,145,46;
  --accent-dark: #c77a1e;
  --navy: #0b2540;
  --navy-light: #13345a;
  --ink: #17233b;
  --muted: #5c6b80;
  --bg-light: #f4f8fa;
  --border: #e4ebf0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 37, 64, 0.08);
  font-size: 16px;
}

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

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--bg-light); transform: translateY(-2px); }

/* Section tags */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-tag-light { color: var(--primary-light); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 2.1rem; }

/* Topbar */
.topbar { background: var(--navy); color: #cdd9e6; font-size: 0.85rem; }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px;
}
.topbar-contact { display: flex; align-items: center; gap: 16px; }
.topbar-contact a { color: #cdd9e6; }
.topbar-contact a:hover { color: var(--primary); }
.topbar .divider { width: 1px; height: 12px; background: #3a4d64; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #cdd9e6; font-size: 0.75rem;
}
.topbar-social a:hover { background: var(--primary); color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,37,64,0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  position: relative;
}
.logo img { height: 42px; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-weight: 600; font-size: 0.95rem; color: var(--navy); position: relative; padding: 6px 0; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.header-cta { white-space: nowrap; }

/* Products mega menu (hover dropdown, TP-Link style) */
.nav-item { display: inline-flex; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-item > a i { font-size: 0.65rem; transition: transform 0.2s ease; }
.nav-item.has-mega:hover > a i { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 3px solid var(--primary);
  box-shadow: 0 30px 60px rgba(11,37,64,0.16);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 90;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-menu-grid {
  max-width: 1200px; margin: 0 auto; padding: 10px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.mega-menu-item {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mega-menu-item img {
  width: 84px; height: 84px; object-fit: contain; flex-shrink: 0;
  mix-blend-mode: multiply;
}
.mega-menu-item h4 { font-size: 0.98rem; margin-bottom: 4px; color: var(--navy); transition: color 0.2s ease; }
.mega-menu-item span { font-size: 0.82rem; color: var(--muted); }
.mega-menu-item:hover h4 { color: var(--primary); }
.mega-menu-item:nth-child(4n) { border-right: none; }
.mega-menu-item:nth-child(n+5) { border-bottom: none; }
.mega-menu-viewall-icon {
  width: 84px; height: 84px; border-radius: 50%; background: var(--bg-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.6rem;
}
@media (max-width: 900px) {
  .mega-menu { display: none; }
}
.nav-toggle {
  display: none; background: none; border: none; font-size: 1.4rem; color: var(--navy); cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #eef3f6 0%, #dfe9ef 45%, #cfe0ea 100%);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0;
}
.hero-glow-1 {
  width: 480px; height: 480px; top: -120px; right: -60px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),0.28) 0%, rgba(var(--primary-rgb),0) 70%);
}
.hero-glow-2 {
  width: 380px; height: 380px; bottom: -140px; right: 20%;
  background: radial-gradient(circle, rgba(11,37,64,0.12) 0%, rgba(11,37,64,0) 70%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px;
  padding: 90px 24px;
  position: relative; z-index: 1;
}
.hero .eyebrow {
  display: inline-block; color: var(--primary);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 { font-size: 3rem; color: var(--navy); margin-bottom: 20px; text-transform: uppercase; }
.hero p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 34px; flex-wrap: wrap; }
.btn-link {
  background: none; border: none; padding: 0; color: var(--navy); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-link i { color: var(--primary); font-size: 0.8rem; transition: transform 0.25s ease; }
.btn-link:hover { color: var(--primary); }
.btn-link:hover i { transform: translateX(4px); }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-badges span { color: var(--muted); font-size: 0.9rem; }
.hero-badges i { color: var(--primary); margin-right: 6px; }

.hero-media {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  animation: heroFloat 5s ease-in-out infinite;
  padding: 20px;
}
.hero-media-base {
  max-width: 88%;
  filter: drop-shadow(0 30px 40px rgba(11,37,64,0.25));
}
.hero-media-shadow {
  position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%);
  width: 60%; height: 24px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(11,37,64,0.22) 0%, rgba(11,37,64,0) 75%);
  animation: heroShadow 5s ease-in-out infinite;
}

@keyframes heroShadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(0.82); opacity: 0.55; }
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-media { animation: none; }
}

/* Hero carousel (multi-product showcase, TP-Link style) */
.hero-carousel { padding: 0; }
.hero-slides {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.8s ease;
  background: linear-gradient(135deg, #eef3f6 0%, #dfe9ef 45%, #cfe0ea 100%);
}
.hero-slide.active {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.hero-slide .hero-inner { width: 100%; }

.hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
  background: rgba(11,37,64,0.06);
  padding: 8px 12px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(11,37,64,0.3); border: none; padding: 0; cursor: pointer;
  transition: all 0.25s ease;
}
.hero-dot:hover { background: rgba(11,37,64,0.55); }
.hero-dot.active { background: var(--primary); width: 26px; border-radius: 6px; }

@media (max-width: 960px) {
  .hero-slides { min-height: 760px; }
}
@media (max-width: 720px) {
  .hero-slides { min-height: 860px; }
  .hero-dots { bottom: 14px; }
}

/* Consultation overlap bar */
.consult-wrap {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-bottom: 60px;
  background: transparent;
}
.consult-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(11,37,64,0.14);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.consult-text h3 { font-size: 1.5rem; margin-bottom: 8px; }
.consult-text p { color: var(--muted); }
.consult-btn { white-space: nowrap; }

/* Trust strip (styled like the former stats bar) */
.trust-strip-wrap { background: var(--primary); }
.trust-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex: 1;
  min-width: 180px;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: #fff; font-size: 1.4rem; }

/* Stats */
.stats { background: var(--primary); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 40px 24px; text-align: center;
}
.stat-item { color: #fff; border-right: 1px solid rgba(255,255,255,0.25); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800; }
.stat-label { font-size: 0.9rem; opacity: 0.9; }

/* About */
.about { padding: 100px 0; background: #fff; }
.about-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media-small {
  position: absolute; bottom: -30px; right: -30px;
  width: 55%; border: 6px solid #fff;
}
.about-text h2 { font-size: 2.1rem; margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.check-list { margin: 20px 0 28px; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--ink); font-weight: 500; }
.check-list i { color: var(--primary); }

/* About v2 (hexagon image + floating stat badges + feature grid) */
.about-v2-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about-v2-media { position: relative; }
.about-hex-wrap {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.about-hex-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.about-hex-img:hover { transform: scale(1.04); filter: brightness(1.04); }
.about-badge {
  position: absolute;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 16px 34px rgba(11,37,64,0.28);
  min-width: 150px;
  animation: heroFloat 5s ease-in-out infinite;
}
.about-badge strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; color: var(--primary); line-height: 1.2;
}
.about-badge span { font-size: 0.82rem; color: #c9d6e3; }
.about-badge-top { top: 2%; right: -6%; }
.about-badge-bottom { bottom: 2%; left: -6%; animation-delay: 0.6s; }

/* About image lightbox */
.about-lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(11,37,64,0.86);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}
.about-lightbox.active { opacity: 1; visibility: visible; }
.about-lightbox img {
  max-width: 90vw; max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.85);
  transition: transform 0.35s ease;
}
.about-lightbox.active img { transform: scale(1); }

.section-tag-line {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--primary); font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; font-size: 0.8rem; margin-bottom: 14px;
}
.section-tag-line::before {
  content: ""; display: inline-block; width: 22px; height: 2px; background: var(--primary);
}
.about-v2-text h2 { font-size: 2.1rem; margin-bottom: 18px; }
.about-v2-text p { color: var(--muted); margin-bottom: 14px; }
.about-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0 28px; }
.about-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-bottom: 30px;
}
.about-feature-item { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-light); color: var(--navy-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.about-feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature-item p { color: var(--muted); font-size: 0.86rem; margin-bottom: 0; }

/* Products */
.products { padding: 100px 0; background: var(--bg-light); }
.products-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(11,37,64,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: block;
  flex: 1 1 250px;
  max-width: 270px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11,37,64,0.14);
  border-color: transparent;
}
.product-card-media {
  aspect-ratio: 4 / 3;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  overflow: hidden;
}
.product-card-media img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-body {
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border-top: 1px solid var(--border);
}
.product-card-body h3 { font-size: 0.98rem; }
.product-card-body span { color: var(--primary); font-size: 0.85rem; font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.product-card-body span i { font-size: 0.75rem; transition: transform 0.25s ease; }
.product-card:hover .product-card-body span i { transform: translateX(3px); }
.products-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 36px; }

/* Category quick-jump strip */
.category-jump {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 56px;
}
.category-jump a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border);
  color: var(--navy); font-size: 0.88rem; font-weight: 600;
  transition: all 0.2s ease;
}
.category-jump a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.category-jump a i { color: var(--primary); font-size: 0.8rem; }
.category-jump a:hover i { color: #fff; }

/* Category product blocks */
.category-block { margin-bottom: 56px; scroll-margin-top: 110px; }
.category-block-head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 14px; margin-bottom: 24px;
}
.category-block-head h3 {
  font-size: 1.25rem; display: flex; align-items: center; gap: 10px; margin: 0;
}
.category-block-head h3 i { color: var(--primary); font-size: 1.05rem; }
.category-view-btn {
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
}
.category-view-btn i { font-size: 0.72rem; transition: transform 0.2s ease; }
.category-view-btn:hover i { transform: translateX(3px); }

.products-mega-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.product-item {
  background: #f6f8fa; border-radius: 14px; border: 1px solid var(--border);
  overflow: hidden; display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(11,37,64,0.12);
  border-color: transparent;
}
.product-item-media {
  aspect-ratio: 1 / 1;
  background: #f6f8fa;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.product-item-media img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.02);
  transition: transform 0.3s ease;
}
.product-item:hover .product-item-media img { transform: scale(1.05); }
.product-item-body { padding: 10px 14px 16px; text-align: center; }
.product-item-body h4 {
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  margin: 0; line-height: 1.35;
}

@media (max-width: 992px) {
  .products-mega-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .products-mega-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Product category modal */
.product-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11,37,64,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.product-modal-overlay.active { opacity: 1; visibility: visible; }
.product-modal {
  background: #fff; border-radius: var(--radius);
  width: 100%; max-width: 880px; max-height: 86vh;
  overflow-y: auto; position: relative;
  padding: 40px 36px 32px;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.product-modal-overlay.active .product-modal { transform: translateY(0); }
.product-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-light); border: 1px solid var(--border);
  color: var(--navy); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.product-modal-close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.product-modal-head { margin-bottom: 22px; padding-right: 40px; }
.product-modal-head h3 { font-size: 1.4rem; margin-bottom: 6px; }
.product-modal-head p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.product-modal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 26px;
}
.product-modal-grid .product-item { pointer-events: none; }
.product-modal-footer { text-align: center; }
@media (max-width: 720px) {
  .product-modal { padding: 30px 20px 26px; }
  .product-modal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Features / Why Choose Baynet */
.features { background: var(--navy); padding: 100px 0; color: #fff; }
.features .section-head { text-align: left; margin: 0 0 48px; max-width: 100%; }
.light-heading { color: #fff; font-size: 2.1rem; }
.skills-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.skills-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.skill-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px;
  background: rgba(var(--primary-rgb),0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  margin-bottom: 16px;
}
.skill-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.skill-card p { color: #a9bacc; font-size: 0.9rem; }

.skills-bars { display: flex; flex-direction: column; gap: 26px; padding-top: 8px; }
.bar-item { width: 100%; }
.bar-label {
  display: flex; justify-content: space-between; margin-bottom: 10px;
  font-weight: 600; color: #fff; font-size: 0.95rem;
}
.bar-pct { color: var(--primary); }
.bar-track {
  width: 100%; height: 8px; border-radius: 6px;
  background: rgba(255,255,255,0.12); overflow: hidden;
}
.bar-fill {
  height: 100%; width: 0%; border-radius: 6px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 1.4s ease;
}
.skills-bars .btn { align-self: flex-start; margin-top: 8px; }

/* Support / Warranty */
.support { padding: 100px 0; background: var(--bg-light); }
.support-inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center;
}
.support-media {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius); padding: 50px;
  box-shadow: var(--shadow); min-height: 320px;
}
.support-media img { max-width: 82%; filter: drop-shadow(0 24px 30px rgba(11,37,64,0.18)); }
.support-glow {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb),0.18) 0%, rgba(var(--primary-rgb),0) 70%);
  z-index: 0;
}
.support-person {
  position: relative; z-index: 1; width: 220px;
  animation: heroFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 24px rgba(11,37,64,0.16));
}
.support-person svg { width: 100%; height: auto; display: block; }
.support-bubble {
  position: absolute; top: 14%; right: 6%; z-index: 2;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: heroFloat 5.5s ease-in-out infinite;
  animation-delay: 0.3s;
}
.support-bubble i {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(var(--primary-rgb),0.12); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.support-bubble strong { display: block; color: var(--navy); font-size: 1rem; line-height: 1.3; }
.support-bubble span { display: block; color: var(--muted); font-size: 0.78rem; white-space: nowrap; }
@media (max-width: 640px) {
  .support-bubble { right: -10px; top: 10px; padding: 10px 14px; }
}
.support-text h2 { font-size: 2rem; margin-bottom: 16px; }
.support-text p { color: var(--muted); margin-bottom: 20px; }
.accordion { border-top: 1px solid var(--border); margin-bottom: 28px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; padding: 18px 0; font-weight: 600; font-size: 1rem;
  color: var(--navy); cursor: pointer; font-family: inherit; text-align: left;
}
.accordion-trigger i { color: var(--primary); transition: transform 0.25s ease; font-size: 0.85rem; }
.accordion-item.active .accordion-trigger i { transform: rotate(90deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.active .accordion-panel { max-height: 200px; }
.accordion-panel p { padding-bottom: 18px; color: var(--muted); font-size: 0.95rem; }

/* Services */
.services { padding: 100px 0; background: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--bg-light); border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.service-card a { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card a i { font-size: 0.75rem; transition: transform 0.25s ease; }
.service-card a:hover i { transform: translateX(4px); }

/* CTA */
.cta { background: var(--primary); padding: 70px 0; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.cta p { color: #e5f7fb; margin-bottom: 28px; }

/* Newsletter */
.newsletter { padding: 90px 0; background: #fff; }
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--bg-light); border-radius: var(--radius); padding: 50px;
}
.newsletter h2 { font-size: 1.9rem; margin-bottom: 12px; }
.newsletter p { color: var(--muted); }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-form input {
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.95rem;
  font-family: inherit;
}
.newsletter-form input:focus { outline: 2px solid var(--primary); }
.newsletter-form button { align-self: flex-start; border: none; }
.newsletter-view-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
}
.newsletter-view-link i { font-size: 0.75rem; transition: transform 0.25s ease; }
.newsletter-view-link:hover i { transform: translateX(4px); }

/* Footer */
.site-footer { background: var(--navy); color: #a9bacc; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px;
  padding: 70px 24px 50px;
}
.footer-logo { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col p, .footer-col a { display: block; margin-bottom: 12px; font-size: 0.9rem; color: #a9bacc; }
.footer-col i { color: var(--primary); margin-right: 8px; width: 16px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; padding: 20px 24px;
  font-size: 0.85rem; color: #7f92a8;
}

/* Inner page hero / breadcrumb */
.page-hero {
  background: linear-gradient(135deg, #eef3f6 0%, #dfe9ef 45%, #cfe0ea 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  top: -160px; right: -100px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),0.22) 0%, rgba(var(--primary-rgb),0) 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-about {
  background: var(--bg-light);
}
.page-hero-products {
  background-image: linear-gradient(90deg, rgba(240,244,247,0.94) 0%, rgba(240,244,247,0.88) 28%, rgba(240,244,247,0.5) 45%, rgba(240,244,247,0) 60%), url("assets/products-hero-bg.webp");
  background-size: cover;
  background-position: center;
}
.page-hero-products::before { display: none; }
.page-hero-products .page-hero-inner {
  width: 34%;
  max-width: 460px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 4%;
}
.page-hero-products p { max-width: 100%; }
@media (max-width: 860px) {
  .page-hero-products .page-hero-inner { max-width: 100%; }
  .page-hero-products p { max-width: 100%; }
}

/* What's New hero + scrolling ticker */
.page-hero-whatsnew {
  padding-bottom: 0;
  background-image: linear-gradient(90deg, rgba(240,244,247,0.95) 0%, rgba(240,244,247,0.9) 35%, rgba(240,244,247,0.55) 48%, rgba(240,244,247,0) 60%), url("assets/whatsnew-hero-bg.webp");
  background-size: cover;
  background-position: center;
}
.page-hero-whatsnew::before { display: none; }
.page-hero-whatsnew .page-hero-inner {
  padding-bottom: 40px;
  width: 40%;
  max-width: 500px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 4%;
}
.page-hero-whatsnew p { max-width: 100%; }
@media (max-width: 860px) {
  .page-hero-whatsnew .page-hero-inner { width: 100%; max-width: 100%; padding-left: 0; }
}
.hero-ticker {
  position: relative; z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(11,37,64,0.1);
  background: rgba(255,255,255,0.55);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.hero-ticker-track {
  display: inline-flex;
  width: max-content;
  gap: 48px;
  animation: heroTickerScroll 26s linear infinite;
}
.hero-ticker-track span {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.92rem; color: var(--navy);
  white-space: nowrap;
}
.hero-ticker-track span i { color: var(--primary); font-size: 0.85rem; }
@keyframes heroTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ticker-track { animation: none; }
}

/* Waving robot mascot */
.hero-robot {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 280px;
  max-height: 100%;
  z-index: 2;
  animation: robotRiseIn 1s cubic-bezier(0.25, 0.8, 0.3, 1.2) forwards,
             robotIdle 3s ease-in-out 1s infinite;
}
@media (max-width: 1100px) {
  .hero-robot { width: 220px; right: 4%; }
}
@keyframes robotRiseIn {
  0% { transform: translateY(150px); opacity: 0; }
  65% { transform: translateY(-10px); opacity: 1; }
  85% { transform: translateY(4px); }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes robotIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.robot-wave-arm {
  transform-origin: 152px 116px;
  animation: armWave 1.8s ease-in-out infinite;
}
@keyframes armWave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-28deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-16deg); }
}
@media (max-width: 720px) {
  .hero-robot { display: none; }
}
.page-hero h1 { font-size: 2.4rem; margin-bottom: 10px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.7rem; color: #9db1c2; }
.breadcrumb span { color: var(--primary); }
.page-hero p { color: var(--muted); max-width: 680px; margin-bottom: 22px; }
.hero-fact-row { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-fact-row span { display: flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 600; font-size: 0.9rem; }
.hero-fact-row i { color: var(--primary); }

/* Mission & Vision */
.mv-section { padding: 90px 0 20px; background: #fff; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { border-radius: var(--radius); padding: 44px; }
.mv-dark { background: var(--navy); }
.mv-teal { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.mv-card i { font-size: 2rem; color: #fff; margin-bottom: 20px; display: block; }
.mv-card h3 { color: #fff; margin-bottom: 14px; font-size: 1.4rem; }
.mv-card p { color: rgba(255,255,255,0.85); }

/* Timeline (simple single-column, year-marker style) */
.timeline-section { padding: 100px 0; background: #fff; }
.timeline-section .section-head { text-align: left; margin: 0 0 56px; max-width: 100%; }
.timeline { position: relative; max-width: 720px; margin: 0; padding-top: 6px; }
.timeline-item {
  position: relative; display: flex; align-items: flex-start; gap: 28px;
  padding-bottom: 56px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item.in-view { opacity: 1; transform: translateY(0); }
.timeline-dot {
  position: relative; flex-shrink: 0;
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 2px solid var(--primary);
  color: var(--primary); font-weight: 800; font-size: 0.68rem; line-height: 1.15;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
/* Connector: drawn only in the gap below each dot, so it never crosses a circle */
.timeline-item:not(:last-child) .timeline-dot::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  width: 2px; height: 56px; background: var(--border);
  transform: translateX(-50%);
}
.timeline-item:last-child .timeline-dot { background: var(--primary); color: var(--navy); border-color: var(--primary); }
.timeline-year { display: none; }
.timeline-content { padding-top: 6px; }
.timeline-content h3 { margin: 0 0 10px; font-size: 1.15rem; }
.timeline-content p { color: var(--muted); font-size: 0.94rem; max-width: 540px; }

/* Values (staggered icon cards) */
.values-icons { padding: 100px 0; background: var(--bg-light); }
.values-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-icon-card {
  background: #fff; border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.value-icon-card:hover { transform: translateY(-6px); }
.value-icon-card:nth-child(even) { margin-top: 28px; }
.value-icon-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-icon-card p { color: var(--muted); font-size: 0.9rem; }

/* Certifications */
.cert-section { padding: 100px 0; background: var(--navy); }
.cert-badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 20px; }
.cert-badge {
  width: 190px; text-align: center; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 36px 20px;
}
.cert-badge i {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(var(--primary-rgb),0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.cert-badge span { display: block; color: #fff; font-weight: 800; font-size: 1.3rem; margin-bottom: 6px; }
.cert-badge small { color: #a9bacc; font-size: 0.82rem; }

/* About page */
.about-story { padding: 100px 0; background: #fff; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.about-story-inner:last-child { margin-bottom: 0; }
.about-story-inner.reverse .about-story-media { order: 2; }
.about-story-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-story-text h2 { font-size: 1.8rem; margin-bottom: 16px; }
.about-story-text p { color: var(--muted); }
.values-grid { padding: 100px 0; background: var(--bg-light); }
.values-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.value-card img { height: 150px; width: 100%; object-fit: cover; }
.value-card-body { padding: 20px; }
.value-card-body h3 { font-size: 1.02rem; margin-bottom: 8px; }
.value-card-body p { color: var(--muted); font-size: 0.88rem; }

/* Buy page */
.buy-section { padding: 90px 0; background: #fff; }
.map-embed { width: 100%; height: 380px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); margin: 40px 0 70px; }
.region-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.region-tab {
  padding: 10px 22px; border-radius: 30px; font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--border); color: var(--muted); cursor: pointer;
  transition: all 0.2s ease;
}
.region-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.distributor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.distributor-card {
  background: var(--bg-light); border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.distributor-card img { height: 40px; width: auto; align-self: flex-start; margin-bottom: 6px; }
.distributor-card h3 { font-size: 1.15rem; }
.distributor-card p { color: var(--muted); font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.distributor-card p i { color: var(--primary); width: 16px; }
.distributor-card a.see-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: 6px; }

/* Newsletter page */
.news-hero-card {
  background: var(--bg-light); border-radius: var(--radius); padding: 48px;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: center;
  margin-bottom: 70px;
}
.news-hero-card img { border-radius: var(--radius); width: 100%; box-shadow: var(--shadow); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.news-card img { height: 170px; width: 100%; object-fit: cover; }
.news-card-body { padding: 22px; }
.news-card-tag { color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.news-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.news-card p { color: var(--muted); font-size: 0.88rem; }

/* Contact — how it works / process section */
.contact-process { padding: 100px 0; background: #fff; }
.contact-process-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.contact-process-visual { position: relative; min-height: 380px; }
.contact-process-visual-main {
  position: absolute; top: 0; right: 0; width: 78%; height: 320px;
  border-radius: 24px; background: linear-gradient(160deg, var(--navy) 0%, #123a5e 100%);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 30px 60px rgba(11,37,64,0.25);
}
.contact-process-visual-main i { font-size: 3rem; color: var(--primary); }
.contact-process-visual-main span { font-weight: 600; font-size: 1rem; }
.contact-process-visual-badge {
  position: absolute; left: 0; bottom: 0; width: 60%;
  background: #fff; border-radius: 18px; padding: 26px 20px;
  box-shadow: 0 20px 44px rgba(11,37,64,0.18); border: 1px solid var(--border);
  text-align: center;
}
.contact-process-visual-badge strong { display: block; font-size: 2.2rem; color: var(--primary); }
.contact-process-visual-badge span { color: var(--muted); font-size: 0.85rem; font-weight: 600; }

.heading-highlight { background: rgba(var(--primary-rgb),0.14); color: var(--primary); padding: 2px 12px; border-radius: 8px; }
.contact-process-content h2 { font-size: 2.1rem; margin-bottom: 14px; }
.contact-process-content > p { color: var(--muted); margin-bottom: 30px; max-width: 520px; }
.process-steps { display: flex; flex-direction: column; margin-bottom: 32px; }
.process-step { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--border); }
.process-step:first-child { border-top: none; padding-top: 0; }
.process-step-num { font-weight: 800; color: var(--accent); font-size: 0.95rem; flex-shrink: 0; width: 30px; }
.process-step h4 { font-size: 1rem; margin-bottom: 4px; }
.process-step p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Contact channels (dark, 3-card) */
.contact-channels { background: var(--navy); padding: 90px 0; }
.contact-channels .section-head { margin-bottom: 44px; }
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.channel-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: transform 0.25s ease;
}
.channel-card:hover { transform: translateY(-6px); }
.channel-icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(var(--primary-rgb),0.14); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.channel-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.channel-card p { color: #a9bacc; font-size: 0.88rem; margin-bottom: 16px; }
.channel-card a { color: var(--primary); font-weight: 700; }
.channel-card a:hover { text-decoration: underline; }
.channel-card-highlight { background: var(--accent); border-color: var(--accent); }
.channel-card-highlight .channel-icon { background: rgba(255,255,255,0.2); color: #fff; }
.channel-card-highlight h3 { color: #fff; }
.channel-card-highlight p { color: rgba(255,255,255,0.85); }
.channel-card-highlight a { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
  .contact-process-grid { grid-template-columns: 1fr; }
  .contact-process-visual { min-height: 320px; margin-bottom: 20px; }
  .channels-grid { grid-template-columns: 1fr; }
}

/* Contact page hero — photo background with dark scrim */
.page-hero-contact {
  background-image: linear-gradient(90deg, rgba(6,16,28,0.55) 0%, rgba(6,16,28,0.4) 38%, rgba(6,16,28,0.15) 50%, rgba(6,16,28,0) 60%), url("assets/contact-hero-bg.webp");
  background-size: cover;
  background-position: center;
}
.page-hero-contact::before { display: none; }
.page-hero-contact .breadcrumb, .page-hero-contact .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero-contact .breadcrumb span { color: var(--primary-light); }
.page-hero-contact .breadcrumb i { color: rgba(255,255,255,0.4); }
.page-hero-contact h1 { color: #fff; }
.page-hero-contact p { color: rgba(255,255,255,0.82); }
.page-hero-contact .page-hero-inner {
  width: 42%;
  max-width: 520px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 4%;
}
@media (max-width: 860px) {
  .page-hero-contact .page-hero-inner { width: 100%; max-width: 100%; padding-left: 0; }
}

/* Contact page — minimal, airy layout */
.contact-section { padding: 100px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }

.contact-info-card {
  display: flex; flex-direction: column; gap: 28px;
  padding-top: 6px;
}
.contact-info-card h3 { font-size: 1.7rem; margin: 0; }
.contact-info-block {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 22px; border-bottom: 1px solid var(--border);
}
.contact-info-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-info-block i {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--bg-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.contact-info-block h4 { color: var(--navy); font-size: 0.98rem; margin-bottom: 4px; }
.contact-info-block p, .contact-info-block a { color: var(--muted); font-size: 0.92rem; }
.contact-info-block a { text-decoration: underline; text-underline-offset: 3px; }
.contact-info-block a:hover { color: var(--primary); }
.contact-info-social { display: flex; gap: 12px; margin-top: 4px; }
.contact-info-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-light);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all 0.2s ease; text-decoration: none;
}
.contact-info-social a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.contact-form-card { padding: 0; }
.contact-form-card h3 { font-size: 1.7rem; margin-bottom: 4px; }
.contact-form-card .form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 26px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 6px 2px 10px; border: none; border-bottom: 2px solid var(--border);
  border-radius: 0; font-family: inherit;
  font-size: 0.95rem; background: transparent; color: var(--navy);
  transition: border-color 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 46px; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-bottom-color: var(--primary);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #a9b6c2; }
.form-field.full { grid-column: 1 / -1; }
.contact-form-card button[type="submit"] {
  border-radius: 999px; background: var(--navy); padding: 13px 32px; font-size: 0.9rem;
}
.contact-form-card button[type="submit"]:hover { background: var(--primary-dark); }

/* Live map section */
.map-section { padding: 0 0 100px; background: #fff; }
.map-section .section-head { margin-bottom: 32px; }
.map-section .map-embed { height: 420px; margin: 0; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero h1 { font-size: 2.3rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media-small { display: none; }
  .about-v2-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-hex-wrap { max-width: 340px; }
  .about-badge { padding: 12px 16px; min-width: 120px; }
  .about-badge strong { font-size: 1.3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .consult-card { flex-direction: column; text-align: center; }
  .trust-strip { justify-content: center; }
  .trust-item { border-right: none; min-width: 45%; }
  .skills-grid { grid-template-columns: 1fr; gap: 40px; }
  .skills-icons { grid-template-columns: 1fr 1fr; }
  .support-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-inner.reverse .about-story-media { order: 0; }
  .values-cards { grid-template-columns: repeat(2, 1fr); }
  .distributor-grid { grid-template-columns: 1fr; }
  .news-hero-card { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-icon-grid { grid-template-columns: 1fr 1fr; }
  .value-icon-card:nth-child(even) { margin-top: 0; }
  .cert-badges { gap: 20px; }
}

@media (max-width: 760px) {
  .timeline-dot { width: 46px; height: 46px; font-size: 0.6rem; }
  .timeline-item:not(:last-child) .timeline-dot::after { height: 40px; }
  .timeline-item { gap: 16px; padding-bottom: 40px; }
}

@media (max-width: 720px) {
  .topbar-contact span:last-child { display: none; }
  .topbar .divider { display: none; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav a { padding: 14px 24px; border-top: 1px solid var(--border); }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 1.9rem; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 50px 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .skills-icons { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .consult-card { padding: 28px 24px; }
  .values-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.8rem; }
  .values-icon-grid { grid-template-columns: 1fr; }
  .cert-badges { flex-direction: column; align-items: center; }
  .hero-fact-row { gap: 16px; }
  .about-features-grid { grid-template-columns: 1fr; }
  .about-badge-top { top: -6%; right: 2%; }
  .about-badge-bottom { bottom: -6%; left: 2%; }
}
