:root {
  --primary: #1bb0ce;
  --primary-dark: #0e8fab;
  --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(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-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: #6fd8ec; }

.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;
}
.logo img { height: 42px; }
.main-nav { display: flex; 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; }
.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(27,176,206,0.28) 0%, rgba(27,176,206,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; }
}

/* 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); }

/* Products */
.products { padding: 100px 0; background: var(--bg-light); }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.25s ease;
  display: block;
}
.product-card:hover { transform: translateY(-6px); }
.product-card img { height: 170px; width: 100%; object-fit: cover; }
.product-card-body { padding: 18px; display: flex; align-items: center; justify-content: space-between; }
.product-card-body h3 { font-size: 1rem; }
.product-card-body span { color: var(--primary); font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.products-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 36px; }

/* 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(27,176,206,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), #6fd8ec);
  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(27,176,206,0.18) 0%, rgba(27,176,206,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(27,176,206,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(27,176,206,0.22) 0%, rgba(27,176,206,0) 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-about {
  background: var(--bg-light);
}

/* 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 */
.timeline-section { padding: 100px 0; background: #fff; overflow: hidden; }
.timeline { position: relative; max-width: 880px; margin: 0 auto; padding-top: 6px; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 6px; width: 2px;
  background: var(--border); transform: translateX(-50%);
}
.timeline-progress {
  position: absolute; left: 50%; top: 0; width: 2px; height: 0%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  transform: translateX(-50%); transition: height 0.2s ease-out; z-index: 1;
}
.timeline-item {
  position: relative; width: 50%; padding: 0 54px 64px; box-sizing: border-box;
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; transform: translateX(-36px); }
.timeline-item:nth-child(even) { left: 50%; text-align: left; transform: translateX(36px); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item.in-view { opacity: 1; transform: translateX(0); }
.timeline-dot {
  position: absolute; top: -6px; width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 2px solid var(--primary); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
  box-shadow: 0 0 0 6px #fff;
}
.timeline-dot::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(27,176,206,0.4); animation: dotPulse 2.4s ease-out infinite;
}
.timeline-item:nth-child(2) .timeline-dot::after { animation-delay: 0.3s; }
.timeline-item:nth-child(3) .timeline-dot::after { animation-delay: 0.6s; }
.timeline-item:nth-child(4) .timeline-dot::after { animation-delay: 0.9s; }
@keyframes dotPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.timeline-item:nth-child(odd) .timeline-dot { right: -21px; }
.timeline-item:nth-child(even) .timeline-dot { left: -21px; }
.timeline-year { color: var(--primary); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; }
.timeline-content {
  display: inline-block; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.timeline-content:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11,37,64,0.12); }
.timeline-content h3 { margin: 8px 0 10px; font-size: 1.1rem; }
.timeline-content p { color: var(--muted); font-size: 0.9rem; }

/* 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(27,176,206,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 page */
.contact-section { padding: 90px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.contact-info-card h3 { color: #fff; font-size: 1.3rem; }
.contact-info-block { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-block i {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(27,176,206,0.18); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.contact-info-block h4 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-block p, .contact-info-block a { color: #a9bacc; font-size: 0.9rem; }
.contact-form-card { background: var(--bg-light); border-radius: var(--radius); padding: 40px; }
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field textarea {
  padding: 13px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit;
  font-size: 0.95rem; background: #fff;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--primary); }
.form-field.full { grid-column: 1 / -1; }

/* 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; }
  .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::before, .timeline-progress { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%; left: 0; text-align: left; padding: 0 0 48px 60px;
    transform: translateX(24px) !important;
  }
  .timeline-item.in-view { transform: translateX(0) !important; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: 0; right: auto; top: -6px; }
}

@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; }
}
