/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a7a4a;
  --primary-dark: #145e38;
  --primary-light: #e8f5ee;
  --secondary: #f5a623;
  --accent: #00b67a;
  --text-dark: #1a1a2e;
  --text-gray: #555;
  --text-light: #888;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes popIn { from { opacity:0; transform:scale(0.88) translateY(12px); } to { opacity:1; transform:scale(1) translateY(0); } }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes shimmer { 0%{background-position:-200% 0;} 100%{background-position:200% 0;} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-30px);} to{opacity:1;transform:translateX(0);} }
@keyframes slideInRight { from{opacity:0;transform:translateX(30px);} to{opacity:1;transform:translateX(0);} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.8);} to{opacity:1;transform:scale(1);} }
@keyframes spin { to{transform:rotate(360deg);} }
@keyframes bounce { 0%,100%{transform:translateY(0);} 40%{transform:translateY(-8px);} 60%{transform:translateY(-4px);} }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--text-dark);
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
  animation: fadeInDown 0.5s ease;
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.top-bar.scrolled {
  background: #000;
  padding: 6px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Mobile top-bar phone links */
.top-bar-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.top-bar-phone-link i {
  color: #f5a623;
  font-size: 12px;
}
.top-bar-phone-link .phone-label {
  font-size: 10px;
  color: #aaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.top-bar-phone-link .phone-number {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.top-bar-divider {
  color: #555;
  font-size: 14px;
  display: none;
}
.top-bar-mobile {
  padding: 2px 4px;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 10px !important;
}
.top-bar a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--secondary); }
.top-bar .phone-number {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.top-bar .phone-label {
  font-size: 11px;
  color: #aaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 2px;
}
.top-bar .badge { background: var(--primary); color: #fff; padding: 2px 8px; border-radius: 20px; font-size: 11px; }
.top-bar .badge-orange { background: var(--secondary); }

/* ===== HEADER / NAVBAR ===== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 38px;  /* sits just below top-bar */
  z-index: 1050;
  animation: fadeInDown 0.5s ease 0.1s both;
  transition: transform 0.35s ease, box-shadow 0.3s ease, top 0.3s ease;
}
/* Hide navbar on scroll down */
.main-header.nav-hidden {
  transform: translateY(-110%);
}
/* Snap back when scrolling up */
.main-header.nav-visible {
  transform: translateY(0);
}
/* On mobile top-bar is ~34px tall */
@media (max-width: 767px) {
  .main-header {
    top: 34px;
  }
}
@media (max-width: 400px) {
  .main-header {
    top: 34px;
  }
}
.navbar-brand img { height: 40px; }
.navbar-brand span { font-weight: 800; font-size: 20px; color: var(--primary); }
.navbar-brand span em { color: var(--secondary); font-style: normal; }
.main-nav .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  transition: var(--transition);
  position: relative;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.main-nav .nav-link:hover::after { width: 80%; }
.main-nav .nav-link:hover { color: var(--primary) !important; }
.btn-fix-issue {
  background: linear-gradient(135deg, var(--secondary), #e8921a);
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
  transition: var(--transition) !important;
  animation: pulse 2s infinite;
}
.btn-fix-issue:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.5); }
.btn-fix-issue::after { display: none !important; }

/* ===== SIDE FLOATING BUTTONS ===== */
.side-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.side-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--primary);
  color: #fff;
  padding: 14px 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.side-btn:hover { background: var(--primary-dark); transform: translateX(-4px); }
.side-btn.rating { background: #f5a623; }
.side-btn.chat { background: #25D366; writing-mode: horizontal-tb; padding: 12px 10px; border-radius: 8px 0 0 8px; font-size: 11px; }

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #f0faf5 0%, #e8f5ee 40%, #f5fffe 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,122,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
  font-size: 15px;
  color: var(--text-gray);
  margin: 15px 0 25px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-badges { animation: fadeInUp 0.8s ease 0.4s both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  margin: 4px 4px 4px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.hero-badge:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.hero-badge i { color: var(--primary); }
.hero-search {
  background: #fff;
  border-radius: 35px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  animation: fadeInUp 0.8s ease 0.5s both;
  border: 2px solid transparent;
  transition: var(--transition);
}
.hero-search:focus-within { border-color: var(--primary); }
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 14px;
  font-family: inherit;
}
.hero-search button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.hero-search button:hover { background: linear-gradient(135deg, var(--primary-dark), #0d4027); }
.hero-shield {
  animation: float 3s ease-in-out infinite;
  max-width: 280px;
}
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 22px; font-weight: 900; color: var(--primary); }
.hero-stat .lbl { font-size: 11px; color: var(--text-light); }

/* ===== ANTIVIRUS BRANDS SECTION ===== */
.brands-section { padding: 40px 0; background: #fff; }
.section-title { font-size: 28px; font-weight: 800; color: var(--text-dark); }
.section-subtitle { color: var(--text-gray); font-size: 15px; margin-top: 8px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 25px;
}
.brand-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gray);
}
.brand-card:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 28px rgba(26,122,74,0.15); }
.brand-card img { height: 40px; object-fit: contain; margin-bottom: 8px; }
.brand-card.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--bg-light);
  padding: 15px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
}
.trust-item i { color: var(--primary); font-size: 18px; }

/* ===== ISSUE SELECTION SECTION ===== */
.issues-section {
  background: linear-gradient(180deg, #f8fff9 0%, #fff 100%);
  padding: 60px 0;
}
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 35px;
}
.issue-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.issue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: var(--transition);
}
.issue-card:hover::before { transform: scaleY(1); }
.issue-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(26,122,74,0.12); }
.issue-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
  transition: var(--transition);
}
.issue-card:hover .issue-icon { transform: scale(1.1); }
.issue-card h5 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.issue-card p { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.issue-card .btn-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  border: 1px solid var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.issue-card:hover .btn-more { background: var(--primary); color: #fff; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner h3 { font-size: 20px; font-weight: 800; }
.cta-banner p { font-size: 14px; opacity: 0.9; }
.btn-call {
  background: linear-gradient(135deg, var(--secondary), #e8921a);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
  animation: pulse 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(245,166,35,0.5); }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 70px 0; background: #fff; }
.why-left { animation: slideInLeft 0.8s ease both; }
.why-right { animation: slideInRight 0.8s ease both; }
.brand-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.brand-logo-badge {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.brand-logo-badge:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.why-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 10px;
  transition: var(--transition);
}
.why-feature:hover { background: var(--primary-light); }
.why-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.why-feature:hover .why-icon { background: var(--primary); color: #fff; }
.why-feature h6 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 12px; color: var(--text-gray); line-height: 1.5; }
.stats-row {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  margin-top: 25px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-num { font-size: 28px; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 12px; color: var(--text-light); }

/* ===== LEARNING SECTION ===== */
.learning-section { background: var(--bg-light); padding: 70px 0; }
.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb {
  position: relative;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: var(--transition);
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  background: rgba(26,122,74,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}
.video-card:hover .play-btn { background: var(--primary); transform: translate(-50%,-50%) scale(1.1); }
.video-info { padding: 14px; }
.video-info h6 { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 6px; }
.video-meta { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.video-meta i { color: var(--primary); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 70px 0; background: #fff; }
.testimonial-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card .quote { font-size: 40px; color: var(--primary); opacity: 0.3; line-height: 1; font-family: serif; }
.testimonial-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; margin: 6px 0 14px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.reviewer-name { font-size: 13px; font-weight: 700; }
.reviewer-loc { font-size: 11px; color: var(--text-light); }
.stars { color: #f5a623; font-size: 12px; }

/* ===== DISCLOSURE / DISCLAIMER ===== */
.info-section { background: var(--bg-light); padding: 50px 0; }
.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.info-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.info-card h5 { font-size: 16px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.info-card h5 i { color: var(--primary); }
.info-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }
.info-card .expand-btn { color: var(--primary); font-size: 13px; font-weight: 700; cursor: pointer; margin-top: 10px; display: inline-block; }
.disclaimer-icons { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.disclaimer-item { text-align: center; font-size: 11px; color: var(--text-gray); }
.disclaimer-item i { display: block; font-size: 22px; color: var(--primary); margin-bottom: 5px; }
.rating-widget { text-align: center; padding: 25px; }
.rating-widget .big-stars { font-size: 32px; color: #f5a623; }
.rating-widget .score { font-size: 42px; font-weight: 900; color: var(--primary); }
.rating-widget .rate-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}
.rating-widget .rate-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,74,0.3); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 70px 0; background: #fff; }
.faq-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.faq-tab {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-gray);
}
.faq-tab.active, .faq-tab:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.faq-categories { display: flex; flex-direction: column; gap: 8px; }
.faq-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.faq-cat-btn .count { background: var(--primary-light); color: var(--primary); padding: 2px 8px; border-radius: 12px; font-size: 11px; }
.accordion-button:not(.collapsed) { background: var(--primary-light) !important; color: var(--primary) !important; box-shadow: none !important; }
.accordion-button:focus { box-shadow: none !important; }
.accordion-item { border: 1.5px solid var(--border) !important; border-radius: 8px !important; margin-bottom: 8px; overflow: hidden; }

/* ===== FOOTER ===== */
.main-footer { background: var(--text-dark); color: #ccc; padding: 60px 0 20px; }
.footer-brand { margin-bottom: 20px; }
.footer-brand .brand-name { font-size: 22px; font-weight: 800; color: #fff; }
.footer-brand .brand-name span { color: var(--secondary); }
.footer-brand p { font-size: 13px; margin-top: 10px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  color: #ccc;
}
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; position: relative; }
.footer-title::after { content:''; display:block; width:30px; height:2px; background:var(--primary); margin-top:6px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: #aaa; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-contact p { font-size: 13px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact p i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .trust-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom .trust-icon { background: rgba(255,255,255,0.06); padding: 4px 10px; border-radius: 4px; font-size: 11px; color: #888; }

/* ===== QUICK SUPPORT BAR ===== */
.quick-support {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 12px 0;
  text-align: center;
}
.quick-support span { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; }
.quick-features { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.quick-feature { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); font-size: 12px; }
.quick-feature i { color: var(--secondary); }

/* ===== POPUP / MODAL ===== */
.fix-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,30,0.75);
  z-index: 9999;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fix-popup-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.fix-popup {
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: scaleIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.popup-header {
  padding: 28px 28px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.popup-header-left { display: flex; gap: 16px; align-items: flex-start; }
.popup-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  flex-shrink: 0;
}
.popup-header-left h3 { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.popup-header-left p { font-size: 13px; color: var(--text-gray); max-width: 260px; line-height: 1.5; }
.popup-header-img { max-width: 180px; }
.popup-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--text-dark);
}
.popup-close:hover { background: #ffe0e0; color: #e74c3c; transform: rotate(90deg); }
.popup-issues { padding: 0 20px 20px; }
.popup-issues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.popup-issue-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.popup-issue-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(4px);
}
.popup-issue-btn .pi-left { display: flex; align-items: center; gap: 12px; }
.popup-issue-btn .pi-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #fff;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.popup-issue-btn:hover .pi-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
.popup-issue-btn .pi-arrow { color: var(--text-light); transition: var(--transition); }
.popup-issue-btn:hover .pi-arrow { color: var(--primary); transform: translateX(4px); }
.popup-footer {
  margin: 4px 20px 20px;
  background: linear-gradient(135deg, #f0faf5, #e8f5ee);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.popup-footer-left { display: flex; align-items: center; gap: 14px; }
.popup-footer-img { width: 60px; }
.popup-footer-text h6 { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.popup-footer-text p { font-size: 12px; color: var(--text-gray); }
.btn-livechat {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(26,122,74,0.3);
  white-space: nowrap;
}
.btn-livechat:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,122,74,0.4); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  box-shadow: 0 4px 15px rgba(26,122,74,0.4);
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); }

/* ===== SECTION BADGE ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid rgba(26,122,74,0.2);
}
.section-badge i { font-size: 10px; }

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE — TABLET (≤991px) ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 32px; }
  .hero-shield { max-width: 200px; }
  .popup-header-img { display: none; }
  .side-actions { display: none; }
  .popup-issues-grid { grid-template-columns: 1fr; }

  /* Navbar collapse on tablet */
  .main-header { top: 38px; }
  #mainNav {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 0;
    margin-top: 8px;
  }
  .main-nav .nav-link {
    padding: 10px 16px !important;
    border-bottom: 1px solid #f5f5f5;
  }
  .main-nav .nav-link:last-child { border-bottom: none; }
  .btn-fix-issue {
    display: inline-block;
    margin: 10px 16px 6px !important;
    border-radius: 8px !important;
    text-align: center;
  }
}

/* ===== RESPONSIVE — MOBILE (≤767px) ===== */
@media (max-width: 767px) {
  /* Top bar always visible */
  .top-bar { display: block !important; overflow: hidden; }
  .top-bar .container { overflow: hidden; padding-left: 8px; padding-right: 8px; }

  /* Header sits below top-bar (~50px on mobile with 2-line numbers) */
  .main-header { top: 50px; position: sticky; }

  /* Hero */
  .hero-section { padding: 30px 0 24px; }
  .hero-title { font-size: 24px; line-height: 1.3; }
  .hero-subtitle { font-size: 14px; line-height: 1.6; }
  .hero-subtitle br { display: none; }

  /* Hero badges wrap nicely */
  .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }

  /* Hero search — stack on small screens */
  .hero-search {
    flex-direction: column;
    border-radius: 12px;
    padding: 10px;
    gap: 8px;
    align-items: stretch;
  }
  .hero-search input {
    width: 100%;
    min-width: unset;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  .hero-search button {
    width: 100%;
    border-radius: 8px !important;
    padding: 12px 16px;
    font-size: 15px;
    justify-content: center;
  }

  /* Hero stats — 2 per row */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px !important;
  }
  .hero-stat {
    border-left: none !important;
    padding-left: 0 !important;
    background: #f9fafb;
    border-radius: 10px;
    padding: 12px 8px !important;
    text-align: center;
  }
  .hero-stat .num { font-size: 18px; }
  .hero-stat .lbl { font-size: 11px; }

  /* Hero shield hidden on mobile to save space */
  .hero-shield { display: none; }

  /* Sections */
  .section-title { font-size: 20px; }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { gap: 12px; }
  .stat-num { font-size: 20px; }

  /* Popup */
  .fix-popup { border-radius: 14px; }
  .popup-header { padding: 18px 16px 12px; }
  .popup-issues { padding: 0 12px 12px; }
  .popup-footer { margin: 4px 12px 12px; }
  .popup-footer-left img { display: none; }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .trust-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-brand .brand-name { font-size: 20px; }
}

/* ===== RESPONSIVE — SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .hero-title { font-size: 20px; }
  .hero-section { padding: 24px 0 20px; }

  /* Full-width single column grids */
  .issues-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .popup-issues-grid { grid-template-columns: 1fr; }
  .testimonials-section .col-md-4 { margin-bottom: 15px; }

  /* Hero stats single row scroll or 2-col */
  .hero-stats { grid-template-columns: 1fr 1fr; }

  /* Section padding tighter */
  .brands-section,
  .issues-section,
  .stats-section,
  .testimonials-section { padding: 30px 0; }

  /* Navbar brand font size */
  .navbar-brand span { font-size: 17px; }

  /* Footer columns full width */
  .footer-bottom span { font-size: 12px; }
  .trust-icon { font-size: 11px; }
}

/* ===== UTILITY ===== */
.text-primary-custom { color: var(--primary); }
.bg-primary-custom { background: var(--primary); }
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,74,0.3); color: #fff; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; margin: 12px 0 20px; }

/* ===== LOADING ANIMATION ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MULTI-STEP FORM POPUP ===== */
.wizard-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,30,0.78);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(7px);
}
.wizard-overlay.show { display: flex; animation: fadeIn 0.3s ease; }
.wizard-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: scaleIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.wizard-modal::-webkit-scrollbar { width: 5px; }
.wizard-modal::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* Wizard Header */
.wizard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.wizard-back-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f5f5f5;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  transition: all 0.2s;
}
.wizard-back-btn:hover { background: #e8e8e8; }
.wizard-progress-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
}
.wizard-step-label { font-size: 13px; font-weight: 600; color: #555; white-space: nowrap; }
.wizard-progress-bar {
  width: 200px;
  height: 10px;
  background: #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
}
.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f5a623, #ffbd4a);
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.wizard-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-left: 16px;
  flex-shrink: 0;
}
.wizard-close:hover { background: #ffe0e0; color: #e74c3c; transform: rotate(90deg); }

/* Wizard Body */
.wizard-body { padding: 28px 30px 10px; flex: 1; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: slideInRight 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.wizard-step.slide-in { animation: slideInRight 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.wizard-step-badge {
  font-size: 13px;
  font-weight: 700;
  color: #1a7a4a;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.step2 .wizard-step-badge { color: #2563eb; }
.wizard-step h2 {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  margin-bottom: 6px;
}
.wizard-step .sub-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

/* Step 1: Brand grid */
.brand-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.brand-option {
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  animation: popIn 0.4s ease both;
}
.wizard-step.active .brand-option:nth-child(1) { animation-delay: 0.05s; }
.wizard-step.active .brand-option:nth-child(2) { animation-delay: 0.10s; }
.wizard-step.active .brand-option:nth-child(3) { animation-delay: 0.15s; }
.wizard-step.active .brand-option:nth-child(4) { animation-delay: 0.20s; }
.wizard-step.active .brand-option:nth-child(5) { animation-delay: 0.25s; }
.wizard-step.active .brand-option:nth-child(6) { animation-delay: 0.30s; }
.brand-option:hover { border-color: #2563eb; box-shadow: 0 4px 16px rgba(37,99,235,0.1); transform: translateY(-3px) scale(1.02); }
.brand-option.selected { border-color: #2563eb; background: #eff6ff; box-shadow: 0 4px 16px rgba(37,99,235,0.15); transform: translateY(-2px); }
.brand-option .radio-dot {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s;
}
.brand-option.selected .radio-dot { border-color: #2563eb; background: #2563eb; box-shadow: inset 0 0 0 3px #fff; }
.brand-logo-text {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

/* Step 2: Device grid */
.device-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}
.device-option {
  border: 1.5px solid #e5e5e5;
  border-radius: 14px;
  padding: 22px 16px 18px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
  background: #fff;
  text-align: center;
  animation: popIn 0.4s ease both;
}
.wizard-step.active .device-option:nth-child(1) { animation-delay: 0.05s; }
.wizard-step.active .device-option:nth-child(2) { animation-delay: 0.12s; }
.wizard-step.active .device-option:nth-child(3) { animation-delay: 0.19s; }
.wizard-step.active .device-option:nth-child(4) { animation-delay: 0.26s; }
.device-option:hover { border-color: #2563eb; transform: translateY(-4px) scale(1.02); box-shadow: 0 6px 20px rgba(37,99,235,0.12); }
.device-option.selected { border-color: #2563eb; background: #eff6ff; box-shadow: 0 6px 20px rgba(37,99,235,0.15); transform: translateY(-2px); }
.device-option .radio-dot {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s;
}
.device-option.selected .radio-dot { border-color: #2563eb; background: #2563eb; box-shadow: inset 0 0 0 3px #fff; }
.device-icon-wrap { margin-bottom: 12px; }
.device-icon-wrap svg { width: 80px; height: 80px; }
.device-option h5 { font-size: 15px; font-weight: 800; margin-bottom: 5px; color: #111; }
.device-option p { font-size: 12px; color: #888; line-height: 1.4; margin: 0; }

/* Step 3: Contact form */
.contact-form-group {
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  animation: slideInRight 0.4s ease both;
}
.contact-form-group:nth-child(1) { animation-delay: 0.05s; }
.contact-form-group:nth-child(2) { animation-delay: 0.12s; }
.contact-form-group:nth-child(3) { animation-delay: 0.19s; }
.contact-form-group:focus-within { border-color: #1a7a4a; box-shadow: 0 0 0 3px rgba(26,122,74,0.12); transform: translateY(-1px); }
.form-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0faf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #1a7a4a;
  flex-shrink: 0;
}
.form-field { flex: 1; }
.form-field label { display: block; font-size: 12px; font-weight: 700; color: #333; margin-bottom: 3px; }
.form-field input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: #111;
  background: transparent;
}
.form-field input::placeholder { color: #bbb; }
.form-valid-icon { color: #1a7a4a; font-size: 18px; opacity: 0; transition: all 0.2s; }
.form-valid-icon.show { opacity: 1; }
.security-note {
  background: #f0faf5;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.security-note i { color: #1a7a4a; font-size: 20px; flex-shrink: 0; }
.security-note p { margin: 0; font-size: 13px; line-height: 1.5; }
.security-note strong { color: #111; }

/* Step 4: Phone & country */
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.country-select-wrap select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  cursor: pointer;
  color: #111;
}
.terms-check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
}
.terms-check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1a7a4a;
  flex-shrink: 0;
}
.terms-check-row label { font-size: 14px; color: #444; }
.terms-check-row a { color: #1a7a4a; font-weight: 700; }
.almost-there-box {
  background: linear-gradient(135deg, #f0faf5, #e8f5ee);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}
.almost-there-box .check-icon {
  width: 40px;
  height: 40px;
  background: #1a7a4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.almost-there-box h6 { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.almost-there-box p { font-size: 13px; color: #666; margin: 0; }
.almost-decoration {
  position: absolute;
  right: 16px;
  opacity: 0.12;
  font-size: 64px;
  color: #1a7a4a;
}

/* Step 5: Thank You */
.thankyou-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 440px;
}
.thankyou-left {
  background: #f8fffe;
  border-right: 1px solid #e8f5ee;
  padding: 28px 24px;
  border-radius: 0 0 0 14px;
}
.agent-card {
  background: #1a7a4a;
  border-radius: 14px;
  padding: 20px;
  color: #fff;
  margin-top: 14px;
}
.agent-card .agent-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  overflow: hidden;
}
.agent-avatar::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #1a7a4a;
  position: absolute;
  bottom: 2px;
  right: 2px;
}
.agent-name { font-size: 18px; font-weight: 800; }
.agent-badge { background: #25D366; color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 12px; font-weight: 700; display: inline-block; margin-bottom: 3px; }
.agent-role { font-size: 12px; opacity: 0.8; }
.agent-divider { border-color: rgba(255,255,255,0.15); margin: 14px 0; }
.agent-reply { display: flex; align-items: center; gap: 10px; }
.chat-icon-wrap { width: 34px; height: 34px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.agent-reply p { margin: 0; font-size: 14px; font-weight: 700; }
.agent-reply span { font-size: 12px; opacity: 0.8; }

.thankyou-right {
  padding: 28px 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ty-check-anim {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #e8f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.ty-check-anim::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #1a7a4a;
  opacity: 0.25;
}
.ty-check-anim i { font-size: 44px; color: #1a7a4a; animation: scaleIn 0.5s 0.15s cubic-bezier(0.34,1.56,0.64,1) both; }
.ty-dots span {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a7a4a;
  margin: 0 3px;
  opacity: 0.3;
  animation: bounce 1.4s infinite;
}
.ty-dots span:nth-child(2) { animation-delay: 0.2s; background: #f5a623; }
.ty-dots span:nth-child(3) { animation-delay: 0.4s; }
.ty-dots span:nth-child(4) { animation-delay: 0.1s; background: #2563eb; }
.ty-title { font-size: 30px; font-weight: 900; color: #111; margin-bottom: 4px; }
.ty-subtitle { font-size: 16px; font-weight: 700; color: #1a7a4a; margin-bottom: 14px; }
.ty-divider { display: flex; align-items: center; gap: 10px; margin: 10px 0 14px; width: 100%; }
.ty-divider::before, .ty-divider::after { content:''; flex:1; height:1px; background:#e5e5e5; }
.ty-divider i { background: #1a7a4a; color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.ty-message { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 22px; }
.ty-message strong { color: #111; }
.ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; width: 100%; }
.btn-ty-chat {
  flex: 1;
  border: 1.5px solid #1a7a4a;
  color: #1a7a4a;
  background: #fff;
  padding: 11px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 140px;
}
.btn-ty-chat:hover { background: #f0faf5; }
.btn-ty-home {
  flex: 1;
  background: #1a7a4a;
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 140px;
}
.btn-ty-home:hover { background: #145e38; transform: translateY(-2px); }

/* Wizard Footer */
.wizard-footer {
  padding: 16px 30px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.wizard-footer-left { display: flex; align-items: center; gap: 10px; }
.wizard-footer-left i { background: #e8f5ee; color: #1a7a4a; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.wizard-help-text { font-size: 13px; }
.wizard-help-text a { color: #1a7a4a; font-weight: 700; }
.wizard-help-text p { margin: 0; color: #888; font-size: 12px; }
.wizard-footer-right { display: flex; gap: 10px; align-items: center; }
.btn-skip {
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-skip:hover { border-color: #aaa; color: #333; }
.btn-continue {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-continue:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,0.35); }
.btn-continue.green { background: #1a7a4a; }
.btn-continue.green:hover { background: #145e38; box-shadow: 0 4px 14px rgba(26,122,74,0.35); }
.btn-submit { background: #1a7a4a; }

/* Error messages */
.field-error { color: #e74c3c; font-size: 12px; margin-top: 4px; display: none; }
.field-error.show { display: block; }

/* Responsive */
@media (max-width: 767px) {
  .wizard-modal { max-height: 98vh; border-radius: 12px; }
  .wizard-body { padding: 20px 16px 8px; }
  .wizard-header { padding: 14px 16px 12px; }
  .wizard-footer { padding: 12px 16px 16px; flex-wrap: wrap; gap: 10px; }
  .wizard-footer-left { display: none; }
  .wizard-footer-right { width: 100%; justify-content: flex-end; }
  .brand-select-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .device-select-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact-row { grid-template-columns: 1fr; gap: 10px; }
  .wizard-progress-bar { width: 120px; }
  .wizard-step h2 { font-size: 20px; }
  .thankyou-layout { grid-template-columns: 1fr; }
  .thankyou-left { border-right: none; border-bottom: 1px solid #e8f5ee; border-radius: 0; padding: 20px 16px; }
  .thankyou-right { padding: 20px 16px; }
}
@media (max-width: 400px) {
  .brand-select-grid { grid-template-columns: repeat(2, 1fr); }
  .device-select-grid { grid-template-columns: 1fr 1fr; }
  .ty-actions { flex-direction: column; }
  .wizard-step h2 { font-size: 18px; }
}
/* ===== BRAND LOGO IMPROVEMENTS (mobile) ===== */
@media (max-width: 380px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .brand-card { padding: 12px 6px 10px; }
}

/* ===== CTA SECTION PHONE RESPONSIVE ===== */
.btn-call {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .btn-call { font-size: 12px; padding: 10px 14px; }
}

/* ===== LEGAL PAGE LINKS (ensure no wrapping breaks layout) ===== */
.legal-card a { word-break: break-word; }

/* ===== FOOTER CONTACT — prevent address overflow ===== */
.footer-contact p span { word-break: break-word; }

/* ===== BRAND DETAIL - header nav mobile fix ===== */
@media (max-width: 900px) {
  .header-nav { display: none !important; }
}

/* ===== EXPAND BUTTON — affiliate/disclaimer links ===== */
.expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: inherit;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s;
  margin-top: 8px;
}
.expand-btn:hover { background: rgba(255,255,255,.25); color: inherit; }
