/* ============================================================
   Along Insure — Public Site Styles
   ============================================================ */

/* ── TOPBAR ──────────────────────────────────────────────── */
.site-topbar {
  background: var(--navy-dark);
  padding: 7px 0;
  font-size: .8rem;
}
.site-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-left a, .topbar-right a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
  font-size: .79rem;
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--orange); }
.topbar-wa {
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: #4ade80 !important;
  padding: 2px 10px;
  border-radius: 100px;
}
.topbar-admin {
  color: rgba(255,255,255,.4) !important;
  font-size: .73rem !important;
}

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,51,102,.08);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,51,102,.14);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 68px;
}
.site-logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  margin: 0 16px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--navy); background: var(--off-white); }
/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all .22s ease;
  z-index: 300;
  padding: 8px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 8px;
  transition: all .15s;
}
.dropdown li a:hover { background: var(--off-white); color: var(--navy); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDER ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  max-height: 800px;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,31,63,.85) 0%, rgba(0,51,102,.6) 60%, rgba(65,105,225,.25) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,130,0,.2);
  border: 1px solid rgba(255,130,0,.5);
  color: var(--orange);
  font-family: var(--font-label);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeInUp .6s ease both;
  animation-delay: .2s;
}
.hero-slide-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  animation: fadeInUp .6s ease both;
  animation-delay: .35s;
}
.hero-slide-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeInUp .6s ease both;
  animation-delay: .5s;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp .6s ease both;
  animation-delay: .65s;
}
/* Slider controls */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover, .hero-next:hover { background: var(--orange); border-color: var(--orange); }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.hero-dot.active { background: var(--orange); width: 28px; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  box-shadow: var(--shadow);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-text span { font-size: .75rem; color: var(--text-muted); }

/* ── STATS SECTION ───────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #004499 100%);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-suffix { color: var(--orange); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── INSURANCE PRODUCTS SECTION ──────────────────────────── */
.products-section { padding: 90px 0; background: var(--off-white); }
.products-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card-img {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .product-icon-placeholder { font-size: 3.5rem; opacity: .7; }
.product-type-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,31,63,.8);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.product-featured-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .71rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.product-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-provider {
  font-size: .74rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.product-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.product-meta {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.product-meta-item { flex: 1; text-align: center; padding: 10px 0; }
.product-meta-item .meta-val {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.product-meta-item .meta-key { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions a { flex: 1; text-align: center; }

/* ── PARTNERS SECTION ────────────────────────────────────── */
.partners-section { padding: 70px 0; background: #fff; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  background: #fff;
}
.partner-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.partner-logo img { max-height: 52px; width: auto; object-fit: contain; }
.partner-logo .partner-name-placeholder {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.partner-card h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.partner-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ── WHY US SECTION ──────────────────────────────────────── */
.why-section { padding: 90px 0; background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: var(--radius-xl); width: 100%; object-fit: cover; height: 480px; }
.why-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-badge .wb-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.why-badge .wb-num { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.why-badge .wb-label { font-size: .74rem; color: var(--text-muted); }
.why-features { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-feature:hover { border-color: var(--royal); box-shadow: var(--shadow); }
.why-feature .wf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feature h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.why-feature p { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

/* ── TEAM SECTION ────────────────────────────────────────── */
.team-section { padding: 90px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card-top {
  background: linear-gradient(135deg, var(--navy), var(--royal));
  padding: 28px 20px 18px;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
}
.team-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.team-card-top h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role-badge {
  display: inline-block;
  background: rgba(255,130,0,.3);
  border: 1px solid rgba(255,130,0,.5);
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.team-card-body { padding: 16px 18px; }
.team-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .82rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 3px 0;
  transition: color .2s;
}
.team-contact a:hover { color: var(--navy); }
.team-city {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 8px;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { padding: 90px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: .78rem; color: var(--text-muted); }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #004499 50%, var(--royal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-main { color: #fff; font-size: 1.4rem; }
.footer-brand .logo-sub { color: var(--orange); }
.footer-brand p { font-size: .85rem; line-height: 1.75; margin-top: 14px; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-links li a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item .fci-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .fci-text { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-contact-item .fci-text a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-item .fci-text a:hover { color: var(--orange); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); }
.footer-credit { color: var(--orange) !important; font-weight: 600; }
.footer-irdai { color: rgba(255,255,255,.3); font-size: .75rem; }

/* ── PAGE HERO INNER ─────────────────────────────────────── */
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,130,0,.15);
  border: 1px solid rgba(255,130,0,.4);
  color: var(--orange);
  font-family: var(--font-label);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 80px 24px 32px;
    gap: 4px;
    z-index: 500;
    overflow-y: auto;
  }
  .nav-links.open > li > a { font-size: 1.1rem; padding: 12px 16px; }
  .nav-links.open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    padding: 0 16px;
    display: none;
  }
  .nav-links.open .has-dropdown.open .dropdown { display: block; }
  .nav-links.open .nav-cta-mobile { display: block; margin-top: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-badge { left: 10px; bottom: -14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: 75vh; }
}

@media (max-width: 640px) {
  .site-topbar { display: none; }
  .products-grid, .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 8px 16px; }
  .hero-slider { height: 88vw; min-height: 400px; }
  .hero-slide-content h1 { font-size: clamp(1.6rem,8vw,2.4rem); }
  .hero-prev, .hero-next { width: 38px; height: 38px; font-size: 1rem; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}
