/* ============================================
   SABOO TECHNOLOGY - Premium Redesign v2
   Distinct Inner Page Styles + Highlights
   ============================================ */

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

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --primary-light: #2a5a8c;
  --accent: #e8a020;
  --accent-hover: #d4900a;
  --accent-soft: #fdf3e0;
  --success: #10b981;
  --danger: #ef4444;
  --text: #1e293b;
  --text-light: #64748b;
  --text-white: #fff;
  --bg: #f1f5f9;
  --bg-white: #fff;
  --bg-light: #eef2f7;
  --bg-warm: #fefbf6;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-accent: 0 8px 30px rgba(232,160,32,0.25);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; overflow-wrap: break-word; word-wrap: break-word; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: 'Inter', sans-serif; color: var(--primary); line-height: 1.25; font-weight: 700; }
h1 { font-size: 2.8rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: 50px;
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  margin-top: 14px;
  border-radius: 3px;
}
.section-title.center { text-align: center; }
.section-title.center::after { margin: 14px auto 0; }

/* ---------- Highlight Text Components ---------- */
.highlight-text {
  background: linear-gradient(120deg, rgba(232,160,32,0.15) 0%, rgba(232,160,32,0.05) 100%);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
}
.highlight-text strong { color: var(--primary); }

.stat-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 4px 14px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.badge-gold { background: linear-gradient(135deg, #f6d365, #fda085); color: #7c2d12; }
.badge-blue { background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; }
.badge-green { background: linear-gradient(135deg, #11998e, #38ef7d); color: #064e3b; }
.badge-dark { background: var(--primary); color: var(--accent); }

mark, .mark {
  background: linear-gradient(120deg, rgba(232,160,32,0.3) 0%, rgba(232,160,32,0.12) 100%);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--primary-dark);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232,160,32,0.4);
  color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--text-white);
  color: var(--primary);
  border-color: var(--text-white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--text-white);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--accent); font-weight: 600; }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.top-bar-item { display: inline; white-space: nowrap; }

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.navbar-logo img { height: 50px; width: auto; }
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-company {
  font-size: 1.3rem;
  font-weight: 800;
  color: #3b4a9a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-tech { color: #e8922d; }
.logo-tagline {
  font-size: 0.78rem;
  font-weight: 400;
  color: #5a6298;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 26px 15px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--primary); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--accent);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 13px 22px;
  font-size: 0.86rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: var(--accent-soft);
  color: var(--primary);
  padding-left: 28px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
  transform-origin: center;
}
/* Animated X when active */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Nav CTA */
.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--primary-dark) !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(232,160,32,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.4);
  color: var(--primary-dark) !important;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, rgba(15,36,64,0.88) 0%, rgba(26,58,92,0.82) 50%, rgba(42,90,140,0.78) 100%),
              url('../images/slide-3.jpg') center/cover no-repeat;
  color: var(--text-white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 8s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 660px; }
.hero h1 {
  color: var(--text-white);
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.12;
}
.hero h1 .highlight { color: var(--accent); display: inline; }
.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.85;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat h3 {
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 800;
}
.hero-stat p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ---------- Page Banner (inner pages) - UNIQUE PER PAGE ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-white);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,160L48,170.7C96,181,192,203,288,192C384,181,480,139,576,138.7C672,139,768,181,864,186.7C960,192,1056,160,1152,149.3C1248,139,1344,149,1392,154.7L1440,160L1440,320L0,320Z"/></svg>') no-repeat bottom center;
  background-size: cover;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  color: var(--text-white);
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-banner .breadcrumb {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.page-banner .breadcrumb a { color: var(--accent); font-weight: 600; }
.page-banner .breadcrumb a:hover { color: #fff; }
.page-banner-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Banner color variants */
.page-banner.banner-green { background: linear-gradient(135deg, #064e3b, #10b981); }
.page-banner.banner-gold { background: linear-gradient(135deg, #78350f, #d97706); }
.page-banner.banner-purple { background: linear-gradient(135deg, #312e81, #7c3aed); }
.page-banner.banner-teal { background: linear-gradient(135deg, #134e4a, #14b8a6); }
.page-banner.banner-red { background: linear-gradient(135deg, #7f1d1d, #dc2626); }
.page-banner.banner-slate { background: linear-gradient(135deg, #1e293b, #475569); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-white); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--primary-dark); color: var(--text-white); }

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(232,160,32,0.2);
}
.product-card-img {
  height: 210px;
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-img .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.product-card-body h3 a { color: var(--primary); }
.product-card-body h3 a:hover { color: var(--accent); }
.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-body .learn-more {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.product-card-body .learn-more:hover { gap: 12px; color: var(--accent-hover); }

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(26,58,92,0.2);
}
.feature-card h3 { font-size: 1.08rem; }
.feature-card p { font-size: 0.9rem; }

/* ---------- Info Boxes (for inner pages) ---------- */
.info-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.info-box:hover { box-shadow: var(--shadow-lg); }
.info-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.info-box-icon.blue { background: #dbeafe; color: #2563eb; }
.info-box-icon.amber { background: #fef3c7; color: #d97706; }
.info-box-icon.green { background: #d1fae5; color: #059669; }
.info-box-icon.purple { background: #ede9fe; color: #7c3aed; }
.info-box h4 { font-size: 1rem; margin-bottom: 6px; }
.info-box p { font-size: 0.88rem; margin: 0; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.stat-card {
  text-align: center;
  background: var(--bg-white);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-card .stat-number .accent { color: var(--accent); }
.stat-card .stat-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ---------- Leader Section (Founder, Director) ---------- */
.leader-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}
.leader-photo {
  position: relative;
}
.leader-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.leader-photo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius);
  z-index: -1;
}
.leader-info h2 { font-size: 1.8rem; margin-bottom: 4px; }
.leader-info .leader-role {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  display: block;
}
.leader-info p { font-size: 0.95rem; line-height: 1.85; }
.leader-info .leader-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 36px;
  margin: 30px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--primary-light));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding: 0 0 28px 20px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border: 3px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232,160,32,0.2);
}
.timeline-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--primary); }
.timeline-item p { font-size: 0.88rem; margin: 0; color: var(--text-light); }

/* ---------- Awards ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.award-card {
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid var(--border);
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--accent); }
.award-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.award-card-img img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.award-card:hover .award-card-img img { transform: scale(1.05); }
.award-card-body { padding: 24px; }
.award-card-body h4 { color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
.award-card-body p { font-size: 0.88rem; margin: 0; }

/* ---------- About Row ---------- */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-image img { width: 100%; }
.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .section-label { margin-bottom: 8px; }
.about-content p { font-size: 0.95rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--text-white); font-size: 2.2rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.08rem; margin-bottom: 32px; }

/* ---------- Contact / Query Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 18px; color: var(--primary); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(26,58,92,0.15);
}
.contact-info-item strong { color: var(--text); display: block; margin-bottom: 2px; }

.form-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-card h2 { font-size: 1.45rem; margin-bottom: 6px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.92rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(42,90,140,0.08);
  background: var(--bg-white);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,160,32,0.4);
}

/* ---------- Content Card (product pages) ---------- */
.page-content { padding: 60px 0; }

.content-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.content-card p, .content-card li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-light);
}
.content-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}
.content-card ul li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.content-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.content-card h2 {
  font-size: 1.55rem;
  margin: 40px 0 18px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.content-card h2:first-of-type { border-top: none; padding-top: 0; }
.content-card h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.content-card h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
}
.content-card img.float-right {
  float: right;
  margin: 0 0 24px 30px;
  border-radius: var(--radius-lg);
  max-width: 300px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--bg-light);
}
.content-card img.float-left {
  float: left;
  margin: 0 30px 24px 0;
  border-radius: var(--radius-lg);
  max-width: 300px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--bg-light);
}

/* Product page sidebar quick-nav */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.product-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.sidebar-nav { }
.sidebar-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 0.86rem;
  color: var(--text-light);
  border-radius: 6px;
  margin-bottom: 4px;
  transition: var(--transition);
  font-weight: 500;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 600;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--text-white);
  text-align: center;
}
.sidebar-cta h4 { color: var(--text-white); margin-bottom: 10px; font-size: 1rem; border: none; padding: 0; }
.sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 16px; }

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: 0.86rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.spec-table th, .spec-table td {
  padding: 12px 16px;
  text-align: left;
}
.spec-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-table td { border-bottom: 1px solid var(--border); }
.spec-table tr:nth-child(even) td { background: var(--bg-light); }
.spec-table tr:hover td { background: #e3eaf3; }
.spec-table tr:last-child td { border-bottom: none; }

/* ---------- Contributions List ---------- */
.contributions-list {
  list-style: none !important;
  padding: 0 !important;
}
.contributions-list li {
  padding: 14px 0 14px 28px !important;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.contributions-list li::before {
  content: '' !important;
  position: absolute;
  left: 0 !important;
  top: 20px !important;
  width: 10px !important;
  height: 10px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 6px rgba(232,160,32,0.3);
}
.contributions-list li:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-about { max-width: 320px; }
.footer-about .footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
  display: block;
  letter-spacing: -0.01em;
}
.footer-about p { font-size: 0.86rem; line-height: 1.75; }

.site-footer h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  align-items: flex-start;
}
.footer-contact-item .label {
  font-weight: 600;
  color: var(--text-white);
  min-width: 52px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===========================================
   RESPONSIVE - Clean Single Pass
   =========================================== */

@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
}

@media (max-width: 992px) {
  /* Nav → hamburger */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: 85%; max-width: 320px;
    height: 100vh; height: 100dvh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 24px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 10000;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-link::after { display: none; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; display: none;
    background: var(--bg-light); border-radius: var(--radius);
    margin: 8px 0; border-top: none; min-width: auto;
  }
  .nav-dropdown a { padding: 11px 18px; }
  .nav-item.dropdown-open .nav-dropdown { display: block; }
  .nav-cta { margin: 20px 0 0; text-align: center; display: block; }

  /* Layout */
  .about-row { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .leader-hero { grid-template-columns: 200px 1fr; gap: 24px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 28px; }
  .hero-stat h3 { font-size: 2rem; }

  /* Table scroll */
  .spec-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 0.78rem; }
  .spec-table th, .spec-table td { padding: 8px 10px; white-space: nowrap; }
}

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body { overflow-x: hidden; }

  /* Typography shrink */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .section-title { font-size: 1.3rem; }
  .page-banner { padding: 35px 0 30px; }
  .page-banner h1 { font-size: 1.5rem; }
  .page-banner-subtitle { font-size: 0.85rem; }

  /* Hero */
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.92rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .hero-stat { display: flex; align-items: center; gap: 12px; }
  .hero-stat h3 { font-size: 1.7rem; margin-bottom: 0; }
  .hero-stat p { margin: 0; }

  /* Sections */
  .section { padding: 40px 0; }
  .page-content { padding: 35px 0; }

  /* Top bar */
  .top-bar { font-size: 0.75rem; padding: 5px 0; }
  .top-bar .container { flex-direction: column; text-align: center; gap: 3px; }
  .top-bar-left { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .top-bar-right { display: none; }

  /* Navbar smaller */
  .navbar .container { height: 60px; }
  .navbar-logo img { height: 40px; }
  .logo-company { font-size: 1.05rem; letter-spacing: 1px; }
  .logo-tagline { font-size: 0.62rem; letter-spacing: 2px; }
  .nav-menu { padding-top: 66px; }

  /* ALL grids → 1 column */
  .products-grid,
  .features-grid,
  .awards-grid,
  .info-grid,
  .product-layout { grid-template-columns: 1fr !important; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-sidebar { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-about { max-width: 100%; }
  .footer-bottom { font-size: 0.7rem; padding: 14px 10px; line-height: 1.6; }
  .site-footer { padding: 40px 0 0; }

  /* Leader → stack */
  .leader-hero { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .leader-photo { max-width: 180px; margin: 0 auto; }
  .leader-photo img { height: auto; }
  .leader-photo::after { display: none; }
  .leader-info .leader-tags { justify-content: center; }

  /* Content card */
  .content-card { padding: 18px; }
  .content-card h2 { font-size: 1.15rem; }
  .content-card h3 { font-size: 0.98rem; display: block; }
  .content-card h3::before { display: inline-block; vertical-align: middle; margin-right: 6px; }
  .content-card p, .content-card li { font-size: 0.88rem; word-break: break-word; }

  /* CRITICAL: kill all floats on mobile */
  [class*="float-"],
  .float-right,
  .float-left,
  img.float-right,
  img.float-left,
  .content-card img.float-right,
  .content-card img.float-left,
  .content-card img[class*="float"] {
    float: none !important;
    display: block !important;
    margin: 12px auto !important;
    max-width: 100% !important;
    width: auto !important;
    border: none !important;
  }

  /* Inline style grids must be 1 col */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Tables must scroll not overflow */
  table { display: block; overflow-x: auto; max-width: 100%; }
  .spec-table { white-space: nowrap; }

  /* About */
  .about-row { grid-template-columns: 1fr; gap: 20px; }
  .about-image::after { display: none; }

  /* Form / Contact */
  .contact-grid { gap: 20px; }
  .form-card { padding: 20px; }
  .contact-info-card { padding: 20px; }
  .form-submit { width: 100%; justify-content: center; }

  /* Highlight */
  .highlight-text { padding: 14px 16px; font-size: 0.9rem; }

  /* Timeline */
  .timeline { padding-left: 26px; }
  .timeline-item { padding-left: 14px; }
  .timeline-item::before { left: -26px; }

  /* CTA */
  .cta-banner { padding: 40px 0; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 0.88rem; }
  .cta-banner .btn-primary { width: 100%; justify-content: center; }

  /* Badges */
  .badge { font-size: 0.66rem; padding: 3px 8px; margin-bottom: 4px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero { padding: 30px 0; }
  .hero h1 { font-size: 1.35rem; }
  .hero p { font-size: 0.85rem; }
  .page-banner { padding: 28px 0 22px; }
  .page-banner h1 { font-size: 1.25rem; }
  .section { padding: 30px 0; }
  .page-content { padding: 28px 0; }
  .content-card { padding: 14px; }
  .content-card h2 { font-size: 1.05rem; }
  .form-card { padding: 14px; }
  .contact-info-card { padding: 14px; }
  .stat-card { padding: 14px 10px; }
  .stat-card .stat-number { font-size: 1.4rem; }
  .stat-card .stat-desc { font-size: 0.68rem; }
  .cta-banner { padding: 30px 0; }
  .cta-banner h2 { font-size: 1.2rem; }
  .top-bar { display: none; }
  .navbar .container { height: 54px; }
  .navbar-logo img { height: 34px; }
  .logo-company { font-size: 0.9rem; letter-spacing: 0.5px; }
  .logo-tagline { font-size: 0.55rem; letter-spacing: 1.5px; }
  .nav-menu { padding-top: 60px; }
}

/* ---------- Hover Color Effects ---------- */

/* Links - smooth accent glow */
a:hover { color: var(--accent); }

/* Nav links - accent underline + color shift */
.nav-link:hover { color: var(--accent) !important; }
.nav-dropdown a:hover {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
}

/* Buttons - glow + lift */
.btn-primary:hover {
  background: linear-gradient(135deg, #f0b840, var(--accent-hover)) !important;
  box-shadow: 0 12px 35px rgba(232,160,32,0.45) !important;
}
.btn-outline-dark:hover {
  background: var(--primary) !important;
  color: var(--text-white) !important;
  box-shadow: 0 8px 25px rgba(26,58,92,0.25);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #f0b840, #e09010) !important;
  box-shadow: 0 8px 25px rgba(232,160,32,0.5) !important;
}

/* Product cards - accent border + shadow bloom */
.product-card:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 16px 50px rgba(232,160,32,0.15) !important;
}
.product-card:hover .product-card-body h3 a { color: var(--accent) !important; }
.product-card:hover .learn-more { color: var(--primary) !important; }

/* Feature cards - gradient top bar + accent shadow */
.feature-card:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 12px 40px rgba(232,160,32,0.12) !important;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  box-shadow: 0 8px 20px rgba(232,160,32,0.3);
}
.feature-card:hover h3 { color: var(--accent); }

/* Info boxes - left accent border + lift */
.info-box:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 10px 35px rgba(232,160,32,0.1) !important;
  transform: translateY(-3px);
}
.info-box:hover h4 { color: var(--accent) !important; }

/* Stat cards - accent bg flip */
.stat-card:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 12px 35px rgba(26,58,92,0.2) !important;
}
.stat-card:hover .stat-number { color: var(--accent) !important; }
.stat-card:hover .stat-desc { color: rgba(255,255,255,0.85) !important; }

/* Award cards - gold glow */
.award-card:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 16px 50px rgba(232,160,32,0.18) !important;
}
.award-card:hover .award-card-body h4 { color: var(--accent); }
.award-card:hover .badge { transform: scale(1.05); }

/* Timeline dots - pulse on hover */
.timeline-item:hover::before {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(26,58,92,0.15);
  transform: scale(1.3);
}
.timeline-item:hover h4 { color: var(--accent) !important; }

/* Contributions list - accent slide */
.contributions-list li:hover {
  background: var(--accent-soft);
  padding-left: 32px !important;
}
.contributions-list li:hover::before {
  background: var(--primary) !important;
  transform: scale(1.4);
}

/* Sidebar nav - accent fill */
.sidebar-nav a:hover {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
}

/* Spec table rows - accent left border */
.spec-table tr:hover td {
  background: var(--accent-soft) !important;
  color: var(--text) !important;
}

/* Contact info items - lift + accent icon */
.contact-info-item:hover {
  transform: translateX(4px);
  transition: var(--transition);
}
.contact-info-item:hover .icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
  color: var(--primary-dark) !important;
}
.contact-info-item:hover strong { color: var(--accent) !important; }

/* Form controls - accent ring on focus */
.form-control:hover {
  border-color: var(--accent);
}

/* Form submit - bright flash */
.form-submit:hover {
  background: linear-gradient(135deg, #f0b840, #e09010) !important;
  box-shadow: 0 12px 35px rgba(232,160,32,0.45) !important;
}

/* Footer links - accent + slide */
.footer-links a:hover {
  color: var(--accent) !important;
  transform: translateX(6px) !important;
}

/* Highlight text box - deeper accent on hover */
.highlight-text:hover {
  border-left-color: var(--primary);
  background: linear-gradient(120deg, rgba(26,58,92,0.06) 0%, rgba(232,160,32,0.08) 100%);
}

/* Badge hover - subtle scale */
.badge:hover {
  transform: scale(1.08);
  transition: var(--transition);
}

/* Leader tags badges */
.leader-tags .badge:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Page banner breadcrumb */
.page-banner .breadcrumb a:hover {
  color: var(--text-white) !important;
  text-decoration: underline;
}

/* CTA banner button glow */
.cta-banner .btn-primary:hover {
  box-shadow: 0 14px 40px rgba(232,160,32,0.5) !important;
  transform: translateY(-4px) scale(1.02);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.clearfix::after { content: ''; display: table; clear: both; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
