/* ===== CSS VARIABLES ===== */
:root {
  --navy: #003366;
  --navy-dark: #001a3d;
  --navy-light: #004080;
  --gold: #FFD700;
  --gold-dark: #e6c200;
  --green: #00b348;
  --green-dark: #009e13;
  --white: #ffffff;
  --light: #f8fafc;
  --light-2: #eef2f7;
  --text-dark: #0d1117;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,51,102,0.10);
  --shadow-hover: 0 12px 40px rgba(0,51,102,0.18);
  --transition: 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== INLINE CONTENT LINKS ===== */
p a, li a, td a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #1a56db;
  text-decoration-color: rgba(26,86,219,.35);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}
p a:hover, li a:hover, td a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #1741b0;
  text-decoration-color: #1741b0;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--gold);
  padding: 8px 0;
}
.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.top-bar a {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
}
.top-bar a:hover { opacity: 0.7; }

/* ===== HEADER ===== */
.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}
.header-logo img { height: 46px; width: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--navy);
  background: var(--light-2);
}
.search-form {
  display: flex;
  align-items: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-left: 8px;
}
.search-form input {
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 13px;
  width: 160px;
  outline: none;
  font-family: inherit;
}
.search-form button {
  background: var(--navy);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.search-form button:hover { background: var(--navy-light); }
.btn-livechat {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--text-dark);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  margin-left: 8px;
}
.btn-livechat:hover { background: var(--navy); }
.btn-livechat img { width: 18px; height: 18px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #001a3d 0%, #003366 50%, #004d99 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,215,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,179,72,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: floatAnim 7s ease-in-out infinite;
}
.float-icon svg { width: 28px; height: 28px; opacity: 0.8; }
.float-icon:nth-child(1)  { top: 8%;  left: 4%;   animation-delay: 0s;    animation-duration: 6s; }
.float-icon:nth-child(2)  { top: 18%; right: 6%;  animation-delay: 1.2s;  animation-duration: 8s; }
.float-icon:nth-child(3)  { top: 55%; left: 3%;   animation-delay: 0.5s;  animation-duration: 7s; }
.float-icon:nth-child(4)  { top: 75%; right: 5%;  animation-delay: 2s;    animation-duration: 6.5s; }
.float-icon:nth-child(5)  { top: 10%; left: 22%;  animation-delay: 1.8s;  animation-duration: 9s; }
.float-icon:nth-child(6)  { top: 80%; left: 18%;  animation-delay: 0.3s;  animation-duration: 7.5s; }
.float-icon:nth-child(7)  { top: 30%; right: 12%; animation-delay: 3s;    animation-duration: 8s; }
.float-icon:nth-child(8)  { top: 65%; right: 20%; animation-delay: 1.5s;  animation-duration: 6s; }
.float-icon:nth-child(9)  { top: 45%; left: 8%;   animation-delay: 2.5s;  animation-duration: 9s; }
.float-icon:nth-child(10) { top: 5%;  right: 25%; animation-delay: 0.8s;  animation-duration: 7s; }
@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-12px) rotate(3deg); }
  50%       { transform: translateY(-6px) rotate(-2deg); }
  75%       { transform: translateY(-16px) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,179,72,0.35);
}
.btn-hero-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,179,72,0.45);
  color: var(--white);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  color: var(--white);
}
.hero-mini-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat-item { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Hero accordion panel */
.hero-accordion {
  display: flex;
  gap: 10px;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.acc-panel {
  position: relative;
  flex: 0 0 64px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: flex var(--transition);
  background: var(--navy-dark);
}
.acc-panel.is-active { flex: 1; }
.acc-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.acc-panel:hover img { transform: scale(1.04); }
.acc-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.acc-panel-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.acc-panel.is-active .acc-panel-label {
  opacity: 1;
  transform: translateY(0);
}
.acc-panel-tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: all var(--transition);
}
.acc-panel.is-active .acc-panel-tag { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scale(0.8); }

/* ===== SECTION COMMON ===== */
.section { padding: 80px 20px; }
.section-alt { background: var(--light); }
.container-lg { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }

.section-header h3 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header h4 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header h5 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header h6 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}


.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.label-chip {
  display: inline-block;
  background: rgba(0,51,102,0.08);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,51,102,0.04) 0%, rgba(212,160,23,0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.product-card:hover {
  border-color: rgba(0,51,102,0.3);
  box-shadow: 0 24px 60px rgba(0,51,102,0.22), 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-12px) scale(1.02);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover::after { transform: scaleX(1); }
.product-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
}
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-img { transform: scale(1.1); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,20,60,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-card-content {
  padding: 22px 24px 24px;
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0;
}
.product-card-content p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.product-btns {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all var(--transition);
  flex: 1;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,160,80,0.25);
}
.btn-dl:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,160,80,0.35);
}
.btn-dl svg { width: 14px; height: 14px; }
.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--navy);
  transition: all var(--transition);
  flex: 1;
  justify-content: center;
}
.btn-learn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,51,102,0.25);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #001a3d 0%, var(--navy) 100%);
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-text .label-chip { background: rgba(255,215,0,0.15); color: var(--gold); }
.cta-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-text h2 strong { color: var(--gold); }
.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
}
.cta-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 9px;
  transition: all var(--transition);
}
.btn-cta-primary:hover {
  background: var(--gold-dark);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  transform: translateY(-2px);
}
.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-visual img {
  width: 100%;
  max-width: 480px;
  opacity: 0.95;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--light);
  padding: 80px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { background: var(--navy-dark); }
.stat-card:hover .stat-num,
.stat-card:hover .stat-label { color: var(--white); }
.stat-card:hover .stat-icon { background: rgba(255,255,255,0.1); color: var(--gold); }
.stat-icon {
  width: 64px;
  height: 64px;
  background: var(--light-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.stat-icon svg { width: 28px; height: 28px; color: var(--navy); transition: color var(--transition); }
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.stat-num .suffix {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition);
}
.stat-card:hover .stat-num .suffix { color: rgba(255,255,255,0.6); }
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

/* ===== TESTIMONIALS MARQUEE ===== */
.testimonials-section {
  padding: 80px 0;
  overflow: hidden;
  background: var(--white);
}
.testimonials-section .container-lg { padding: 0 20px; }
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-track-reverse {
  animation-direction: reverse;
  animation-duration: 40s;
  margin-top: 20px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  width: 350px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-hover); }
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.reviewer-init {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.reviewer-source {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}
.review-stars {
  display: flex;
  gap: 2px;
}
.star {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  color: var(--gold);
}
.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== RECENT NEWS & BLOGS ===== */
.blog-section {
  padding: 90px 20px;
  background: #f8faff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 52px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4eaf6;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30,42,80,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(30,42,80,0.12);
}

.blog-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img-placeholder { transform: scale(1.05); }

.blog-img-1 { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
.blog-img-2 { background: linear-gradient(135deg, #065f46 0%, #10b981 100%); }
.blog-img-3 { background: linear-gradient(135deg, #7c2d12 0%, #f97316 100%); }
.blog-img-4 { background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 100%); }

.blog-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 60%);
}
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: #00000069;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.blog-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}
.blog-read {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 50px;
}
.blog-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  color: #1a2340;
  letter-spacing: -0.01em;
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
.blog-card h3 a:hover { color: #1e3a8a; }
.blog-card > .blog-body > p {
  font-size: 0.845rem;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}
.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.18s, color 0.18s;
}
.blog-readmore:hover { gap: 10px; color: #1d4ed8; }

.blog-view-all {
  text-align: center;
  margin-top: 44px;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #1e3a8a;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-view-all:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,138,0.28);
}

/* ===== TRUSTED BY ===== */
.trusted-section {
  background: var(--light);
  padding: 60px 20px;
}
.trusted-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.logos-ticker {
  overflow: hidden;
  position: relative;
  margin-top: 32px;
}
.logos-ticker::before,
.logos-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logos-ticker::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.logos-ticker::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }
.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: logoScroll 25s linear infinite;
  width: max-content;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-track img {
  height: 36px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--transition);
}
.logos-track img:hover { filter: grayscale(0) opacity(1); }

/* ===== RENOWNED BRANDS ===== */
.renowned-section {
  padding: 90px 20px;
  background: linear-gradient(160deg, #0f172a 0%, #1e2d5a 55%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}
.renowned-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.renowned-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.renowned-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .renowned-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* Left text */
.renowned-chip { background: rgba(255,215,0,0.15); color: #ffd700; }
.renowned-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
}
.renowned-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.renowned-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.renowned-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #ffd700;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}
.renowned-features li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}
.renowned-features strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.renowned-features span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

.btn-renowned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffd700;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-renowned:hover {
  background: #f5c400;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.35);
}

/* Right logos */
/* Scrolling logo columns */
.rlogos-scroll-wrap {
  display: flex;
  gap: 14px;
  height: 380px;
  margin-bottom: 24px;
}
.rlogos-col {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.rlogos-col::before,
.rlogos-col::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 72px;
  z-index: 2;
  pointer-events: none;
}
.rlogos-col::before { top: 0;    background: linear-gradient(to bottom, #1a2b6b 10%, transparent); }
.rlogos-col::after  { bottom: 0; background: linear-gradient(to top,   #1a2b6b 10%, transparent); }

.rlogos-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rlogos-up   { animation: scrollUp   18s linear infinite; }
.rlogos-down { animation: scrollDown 18s linear infinite; }

@keyframes scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scrollDown {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.rlogo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  transition: background 0.2s;
  cursor: default;
}
.rlogo-card:hover { background: rgba(255,255,255,0.15); }
.rlogo-card span {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
  text-align: center;
}

.renowned-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.renowned-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  gap: 4px;
}
.rs-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffd700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rs-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

/* ===== WHAT MAKES UNIQUE ===== */
.unique-section {
  padding: 90px 20px;
  background: #f8faff;
}
.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
@media (max-width: 900px)  { .unique-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .unique-grid { grid-template-columns: 1fr; } }

.unique-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px 32px;
  border: 1px solid #e4eaf6;
  box-shadow: 0 2px 18px rgba(30,42,80,0.05);
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  overflow: hidden;
}
.unique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(30,42,80,0.11);
}
.unique-card:hover .unique-icon {
  background: #1e3a8a;
  color: #fff;
}

.unique-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 2.4rem;
  font-weight: 900;
  color: #e8edf6;
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
}

.unique-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eff4ff;
  color: #1e3a8a;
  margin-bottom: 22px;
  transition: background 0.22s, color 0.22s;
}

.unique-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.unique-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ===== SATISFACTION GUARANTEE ===== */
.guarantee-card {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(120deg, #1a2b6b 0%, #1e3a8a 45%, #1d4ed8 100%);
  border-radius: 24px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.28);
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.guarantee-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
@media (max-width: 768px) {
  .guarantee-card { flex-direction: column; gap: 28px; padding: 36px 28px; text-align: center; }
  .guarantee-tags { justify-content: center; }
}

.guarantee-badge-wrap {
  flex-shrink: 0;
}
.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  gap: 2px;
}
.guarantee-badge svg { opacity: 0.9; }
.guarantee-badge span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.guarantee-body { flex: 1; }
.guarantee-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.guarantee-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 620px;
}

.guarantee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.gtag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.gtag:hover { background: rgba(255,255,255,0.22); }
.gtag svg { flex-shrink: 0; }

/* ===== WHY ADVIK ===== */
.why-advik-section {
  background: linear-gradient(160deg, #f0f4ff 0%, #fafbff 60%, #fff8f0 100%);
  padding: 90px 20px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px 28px;
  border: 1px solid #e8edf6;
  box-shadow: 0 2px 16px rgba(30,42,80,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.22s;
  background: linear-gradient(135deg, rgba(255,255,255,0) 60%, rgba(99,102,241,0.04) 100%);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,42,80,0.12); }
.why-card:hover::before { opacity: 1; }

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.why-icon svg { display: block; }

.why-icon-blue   { background: #eff6ff; color: #2563eb; }
.why-icon-green  { background: #f0fdf4; color: #16a34a; }
.why-icon-purple { background: #faf5ff; color: #7c3aed; }
.why-icon-orange { background: #fff7ed; color: #ea580c; }
.why-icon-teal   { background: #f0fdfa; color: #0d9488; }
.why-icon-indigo { background: #eef2ff; color: #4f46e5; }
.why-icon-rose   { background: #fff1f2; color: #e11d48; }
.why-icon-amber  { background: #fffbeb; color: #d97706; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ===== TRUSTED BY INDUSTRY LEADERS ===== */
.trusted-leaders-section {
  background: var(--white, #fff);
  padding: 80px 20px;
  border-top: 1px solid #e8eaf0;
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .leaders-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .leaders-grid { grid-template-columns: 1fr; }
}
.leader-card {
  background: var(--light, #f7f8fc);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e8eaf0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.leader-card:hover {
  box-shadow: 0 8px 32px rgba(30,42,80,0.10);
  transform: translateY(-4px);
}
.leader-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue, #1e42c8) 0%, var(--gold, #e6a817) 100%);
  margin: 0 auto 18px;
  color: #fff;
}
.leader-icon svg { stroke: #fff; }
.leader-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy-dark, #1a2340);
}
.leader-card p {
  font-size: 0.9rem;
  color: var(--muted, #6b7280);
  line-height: 1.6;
}

/* ===== BRAND TICKER ===== */
.brand-ticker {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
  padding: 16px 0;
}
.brand-ticker::before,
.brand-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brand-ticker::before { left: 0; background: linear-gradient(to right, #fff 30%, transparent); }
.brand-ticker::after  { right: 0; background: linear-gradient(to left, #fff 30%, transparent); }
.brand-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: brandScroll 36s linear infinite;
}
@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 16px;
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  min-width: 120px;
  box-shadow: 0 2px 12px rgba(30,42,80,0.07);
  cursor: default;
  transition: transform 0.22s, box-shadow 0.22s;
}
.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30,42,80,0.13);
}

.brand-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4b5675;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

/* Brand background colors */
.brand-cnet-bg        { background: #cc0000; }
.brand-uptodown-bg    { background: #1565c0; }
.brand-sourceforge-bg { background: #e65c00; }
.brand-saashub-bg     { background: #1a1a2e; }
.brand-microsoft-bg   { background: #f3f3f3; border: 1px solid #e0e0e0; }
.brand-techjockey-bg  { background: #d62839; }
.brand-softonic-bg    { background: #00875a; }
.brand-g2-bg          { background: #ff492c; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 60px 20px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 18px; filter: brightness(2); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); }
.social-link:hover svg { color: var(--navy-dark); }
.social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-accordion { display: none; }
  .hero-text { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-visual { justify-content: flex-start; }
  .cta-visual img { max-width: 320px; }
}
@media (max-width: 768px) {
  .header-nav, .search-form, .btn-livechat { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 10px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all var(--transition);
  }
  .mobile-nav a:hover { background: var(--light-2); color: var(--navy); }
  .section { padding: 56px 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 16px; min-height: auto; }
  .hero-buttons { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
  .hero-mini-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; }
  .btn-cta-primary, .btn-cta-secondary { justify-content: center; }
}

/* ===== BOOTSTRAP HEADER FIXES ===== */
.site-header .navbar {
  background: transparent !important;
  padding: 0;
  min-height: 68px;
}
.site-header .container { max-width: 1200px; }
.site-header .navbar-brand img { height: 46px; width: auto; }
.site-header .navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  padding: 10px 16px;
  border-radius: 8px;
}
.site-header .navbar-nav .nav-link:hover {
  color: var(--navy);
  background: var(--light-2);
}

/* hover dropdown — no JS click needed */
.site-header .navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
  animation: dropFadeIn .18s ease;
}
@keyframes dropFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-header .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  padding: 8px;
  z-index: 9999;
  margin-top: 0;
}
.site-header .dropdown-item {
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 9px 16px;
}
.site-header .dropdown-item:hover {
  background: var(--light-2);
  color: var(--navy);
}
.site-header .btn-live,
.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #000;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 16px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(0,179,72,.3);
  line-height: 1;
}
.site-header .btn-live:hover,
.btn-live:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,179,72,.4);
}
.site-header .form-control {
  font-size: 13px;
  border-radius: 8px 0 0 8px;
  height: 36px;
}
.site-header .btn-info {
  background: var(--navy);
  border-color: var(--navy);
  border-radius: 0 8px 8px 0;
  height: 36px;
}
.site-header .btn-info:hover { background: var(--navy-light); border-color: var(--navy-light); }
.site-header .input-group { margin-bottom: 0 !important; }

/* Fix global .nav-link not stomping Bootstrap navbar */
.navbar-nav .nav-link {
  text-transform: none;
  letter-spacing: 0;
}

/* ===== BOOTSTRAP FOOTER FIXES ===== */
.bg-black {
  background-color: #000 !important;
}
.bg-black .text-muted {
  color: #BDBDBD !important;
}
.bg-black p, .bg-black li { color: #BDBDBD; }
.bg-black .h5, .bg-black .h6 { color: #fff; }
.bg-black a { color: #BDBDBD; text-decoration: none; }
.bg-black a:hover { color: #fff; text-decoration: none; }
.bg-black .border-top { border-color: rgba(255,255,255,0.1) !important; }
.bg-black .nav-link {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #BDBDBD;
  padding: 4px 0 !important;
  border-radius: 0;
}
.bg-black .nav-link:hover { color: #fff; background: transparent; }
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.social-icons a { display: inline-flex; }
.social-icons a img { width: 20px; height: 20px; max-width: 20px; object-fit: contain; }

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  flex-shrink: 0;
}
.social-icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  filter: brightness(1.12);
}
.bg-black .dmca-badge img { opacity: 0.8; }
.bg-black footer p { margin-bottom: 0; }

/* ===== UTILITY ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* hiw-carousel nav: CSS max-height transition replaces jQuery slideUp/slideDown
   — eliminates per-frame height reads+writes (forced reflow loop) */
.hiw-carousel-nav .item p.item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.hiw-carousel-nav .item.current p.item-content {
  max-height: 500px;
}

#blog-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
#blog-container .blog-card {
  height: 100%;
}
#blog-container .blog-img-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
@media (max-width: 992px) {
  #blog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #blog-container {
    grid-template-columns: 1fr;
  }
}
