/* ─────────────────────────────────────────────
   TopPrinters.online – Main Stylesheet
   Font: Poppins (Google Fonts)
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --white: #ffffff;
  --black: #111111;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 12px rgba(0,0,0,.1);
  --shadow-md: 0 6px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.2);
  --transition: .18s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--gray-900); background: #fff; line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container--sm { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.w-full { width: 100%; }
.shrink-0 { flex-shrink: 0; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: #1565C0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar__logo-text { line-height: 1.2; }
.navbar__logo-text strong { font-size: 17px; font-weight: 700; color: var(--gray-900); }
.navbar__logo-text strong span { color: var(--blue-600); }
.navbar__logo-text small { font-size: 11px; color: var(--gray-400); display: block; margin-top: -2px; }
.navbar__nav { display: flex; align-items: center; gap: 2px; }
.navbar__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar__link:hover { color: var(--blue-600); background: var(--gray-50); }
.navbar__link.active { color: var(--blue-600); background: var(--blue-50); }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.navbar__hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-600); border-radius: 2px; transition: var(--transition); }
.navbar__mobile { display: none; background: #fff; border-top: 1px solid var(--gray-100); padding: 8px 16px 12px; }
.navbar__mobile .navbar__link { display: block; padding: 10px 12px; margin-bottom: 2px; }
.navbar__mobile.open { display: block; }

/* ─────────────────────────────────────────────
   HERO – HOME
───────────────────────────────────────────── */
.hero-home {
  padding: 56px 0 48px;
  background: #fff;
  text-align: center;
}
.hero-home__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue-600);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-home h1 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.hero-home p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Brand Logos Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.brand-card {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.brand-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-md); }
.brand-card img { height: 48px; width: auto; object-fit: contain; max-width: 90px; }
.brand-card__label { font-size: 12px; font-weight: 600; color: var(--gray-500); }
.brand-card:hover .brand-card__label { color: var(--blue-600); }

/* ─────────────────────────────────────────────
   NEED HELP BANNER
───────────────────────────────────────────── */
.help-banner {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.help-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.help-banner__text strong { display: block; font-size: 15px; font-weight: 700; color: var(--gray-800); }
.help-banner__text span { font-size: 13px; color: var(--gray-500); }
.help-banner__actions { display: flex; align-items: center; gap: 12px; }
.help-banner__live { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-600); }
.help-banner__live svg { color: var(--blue-500); }

/* ─────────────────────────────────────────────
   DOWNLOAD DRIVERS FORM
───────────────────────────────────────────── */
.download-section { padding: 40px 0; background: #fff; }
.download-section h2 { text-align: center; font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.download-form-box {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 780px;
  margin: 0 auto;
}
.download-form-box__header {
  background: var(--blue-600);
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}
.download-form-box__body {
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.download-form-box__field { flex: 1; min-width: 160px; }
.download-form-box__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.download-form-box__hint {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   SUPPORT OPTIONS CARDS
───────────────────────────────────────────── */
.support-section { padding: 40px 0; background: var(--gray-50); }
.support-section h2 { text-align: center; font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 24px; }
.support-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 780px; margin: 0 auto; padding: 0 20px; }
.support-card {
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: opacity .15s;
  width: 100%;
}
.support-card:hover { opacity: .92; }
.support-card--blue { background: var(--blue-600); }
.support-card--dark {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.support-card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}
.support-card--charcoal { background: linear-gradient(135deg, #374151 0%, #1f2937 100%); }
.support-card__icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.support-card__icon svg { position: relative; }
.support-card strong { font-size: 14px; font-weight: 700; letter-spacing: .02em; position: relative; }
.support-card p { font-size: 12px; opacity: .8; line-height: 1.5; position: relative; }

/* ─────────────────────────────────────────────
   SECTION – SELECT PRINTER (2ND)
───────────────────────────────────────────── */
.select-section { padding: 40px 0; background: #fff; text-align: center; }
.select-section h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.select-section p { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.select-section .brands-grid { max-width: 640px; }

/* ─────────────────────────────────────────────
   INFO CARDS
───────────────────────────────────────────── */
.info-section { padding: 40px 0; background: var(--gray-50); }
.info-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 780px; margin: 0 auto; padding: 0 20px; }
.info-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.info-card__icon {
  width: 40px; height: 40px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.info-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.info-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%); padding: 56px 0; text-align: center; color: #fff; }
.cta-banner__tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(147,197,253,1); margin-bottom: 10px; }
.cta-banner h2 { font-size: clamp(22px,4vw,34px); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 14px; color: rgba(191,219,254,1); margin-bottom: 28px; max-width: 380px; margin-left: auto; margin-right: auto; }
.cta-banner__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #1d4ed8; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 14px; transition: background var(--transition);
}
.btn-cta-primary:hover { background: var(--blue-50); }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.4); color: #fff; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 14px; transition: background var(--transition);
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.1); }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-section { padding: 56px 0; background: #fff; }
.faq-section__head { text-align: center; margin-bottom: 32px; }
.faq-section__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-50); color: var(--blue-600);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.faq-section h2 { font-size: 22px; font-weight: 700; color: var(--gray-900); }
.faq-list { max-width: 660px; margin: 0 auto; padding: 0 20px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 10px; }
.faq-item__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; text-align: left; background: #fff; cursor: pointer;
  transition: background var(--transition);
}
.faq-item__btn:hover { background: var(--gray-50); }
.faq-item__btn span { font-size: 14px; font-weight: 600; color: var(--gray-800); padding-right: 16px; }
.faq-item__icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { display: none; padding: 0 20px 18px; font-size: 13px; color: var(--gray-500); line-height: 1.7; border-top: 1px solid var(--gray-100); background: var(--gray-50); padding-top: 14px; }
.faq-item.open .faq-item__answer { display: block; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer { background: #111827; color: #9ca3af; }
.footer__main { padding: 56px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.footer__brand-desc { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.footer__brand-desc a { color: #60a5fa; }
.footer__social { display: flex; gap: 10px; }
.footer__social-btn {
  width: 34px; height: 34px;
  background: #374151;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.footer__social-btn:hover { background: var(--blue-600); color: #fff; }
.footer__col-title { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: #9ca3af; transition: color var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer__contact-icon { width: 18px; height: 18px; color: #60a5fa; flex-shrink: 0; margin-top: 1px; }
.footer__contact-item a, .footer__contact-item span { font-size: 13px; color: #9ca3af; line-height: 1.5; }
.footer__contact-item a:hover { color: #fff; }
.footer__touch-btn {
  display: inline-block; margin-top: 16px;
  background: var(--blue-600); color: #fff;
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; transition: background var(--transition);
}
.footer__touch-btn:hover { background: var(--blue-700); }
.footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  font-size: 12px;
}
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a { color: #6b7280; transition: color var(--transition); }
.footer__bottom-links a:hover { color: #9ca3af; }
.footer__logo-inline { display: flex; align-items: center; gap: 8px; }

/* ─────────────────────────────────────────────
   BRAND PAGE – SUB-NAV
───────────────────────────────────────────── */
.brand-subnav { background: #fff; border-bottom: 1px solid var(--gray-200); }
.brand-subnav__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 0;
}
.brand-subnav__logo {
  padding: 12px 20px 12px 0;
  border-right: 1px solid var(--gray-200);
  margin-right: 8px;
  flex-shrink: 0;
}
.brand-subnav__logo img { height: 34px; width: auto; object-fit: contain; }
.brand-subnav__links { display: flex; align-items: center; }
.brand-subnav__link {
  padding: 16px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
}
.brand-subnav__link:hover { color: var(--gray-900); border-bottom-color: var(--gray-300); }

/* ─────────────────────────────────────────────
   BRAND PAGE – HERO BANNER
───────────────────────────────────────────── */
.brand-hero { padding: 56px 0; }
.brand-hero--hp   { background: linear-gradient(135deg, #1565C0 0%, #0a3d8f 100%); }
.brand-hero--canon   { background: linear-gradient(135deg, #C62828 0%, #7f0000 100%); }
.brand-hero--epson   { background: linear-gradient(135deg, #1A237E 0%, #0d47a1 100%); }
.brand-hero--brother { background: linear-gradient(135deg, #006064 0%, #003d40 100%); }
.brand-hero__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 40px;
}
.brand-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.65);
  margin-bottom: 24px; transition: color var(--transition);
}
.brand-hero__back:hover { color: #fff; }
.brand-hero__left { flex: 1; color: #fff; }
.brand-hero__logo-pill {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.brand-hero__logo-pill img { height: 36px; width: auto; object-fit: contain; }
.brand-hero__left h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.brand-hero__bullets { list-style: none; margin-bottom: 28px; }
.brand-hero__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85);
  margin-bottom: 8px;
}
.brand-hero__bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-hero__right {
  flex: 1; display: flex; justify-content: center; align-items: center;
}
.brand-hero__printer-box {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  max-width: 320px;
  width: 100%;
}
.brand-hero__printer-box svg { width: 100%; height: auto; }

/* ─────────────────────────────────────────────
   BRAND PAGE – QUICK DOWNLOAD
───────────────────────────────────────────── */
.quick-download-section { padding: 56px 0; background: #fff; }
.quick-download-section .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.quick-download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.quick-download-section h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.quick-download-section h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.quick-download-section p { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.model-diagram-box {
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center;
  border: 1px solid rgba(0,0,0,.06);
}
.model-diagram-box svg { width: 220px; height: auto; }
.model-diagram-box p { font-size: 13px; font-weight: 700; margin-top: 12px; margin-bottom: 0; }

/* ─────────────────────────────────────────────
   BRAND PAGE – MODELS GRID
───────────────────────────────────────────── */
.models-section { padding: 40px 0; background: var(--gray-50); }
.models-section__inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.models-section h2 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 24px; }
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.model-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.model-card:hover { border-color: #93c5fd; box-shadow: var(--shadow); }
.model-card h4 { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 10px; }
.model-card .get-drivers-btn {
  font-size: 12px; font-weight: 600; color: var(--blue-600);
  display: inline-flex; align-items: center; gap: 3px;
  transition: color var(--transition), gap var(--transition);
  background: none; border: none; cursor: pointer; padding: 0;
}
.model-card:hover .get-drivers-btn { gap: 6px; }

/* ─────────────────────────────────────────────
   BRAND PAGE – FEATURES
───────────────────────────────────────────── */
.features-section { padding: 40px 0; background: #fff; }
.features-section__inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.features-section h2 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--radius-lg);
  background: var(--gray-50); border: 1px solid var(--gray-100);
}
.feature-item svg { flex-shrink: 0; margin-top: 2px; color: #22c55e; }
.feature-item span { font-size: 13px; color: var(--gray-700); }

/* ─────────────────────────────────────────────
   BRAND PAGE – HELP BOTTOM
───────────────────────────────────────────── */
.brand-help-section { padding: 40px 0; text-align: center; }
.brand-help-section svg { margin: 0 auto 12px; }
.brand-help-section h2 { font-size: 18px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.brand-help-section p { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-hero { background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%); padding: 56px 0; text-align: center; color: #fff; }
.contact-hero__tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(147,197,253,1); margin-bottom: 10px; }
.contact-hero h1 { font-size: clamp(28px,5vw,40px); font-weight: 800; margin-bottom: 12px; }
.contact-hero p { font-size: 14px; color: rgba(191,219,254,1); max-width: 380px; margin: 0 auto; }
.contact-cards-section { padding: 40px 0; background: var(--gray-50); }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.contact-card {
  background: #fff; border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100); padding: 28px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-card__icon--blue { background: var(--blue-50); color: var(--blue-600); }
.contact-card__icon--green { background: #dcfce7; color: #16a34a; }
.contact-card__icon--purple { background: #f3e8ff; color: #7c3aed; }
.contact-card h3 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.contact-card p { font-size: 12px; color: var(--gray-500); margin-bottom: 12px; }
.contact-card a { font-size: 13px; color: var(--blue-600); font-weight: 600; word-break: break-all; }
.contact-main-section { padding: 56px 0; background: #fff; }
.contact-main-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; max-width: 960px; margin: 0 auto; padding: 0 20px; align-items: start; }
.contact-info h2 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.contact-info > p { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.7; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-info-item__icon {
  width: 36px; height: 36px; background: var(--blue-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue-600);
}
.contact-info-item__label { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.contact-info-item__value { font-size: 13px; color: var(--gray-700); line-height: 1.5; }
.contact-info-item__value a { color: var(--blue-600); font-weight: 500; }
.brands-box { background: var(--gray-50); border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--gray-100); margin-top: 24px; }
.brands-box__title { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.brands-box__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.brands-box__item {
  background: #fff; border-radius: var(--radius-sm); padding: 10px;
  text-align: center; border: 1px solid var(--gray-100);
  font-size: 14px; font-weight: 700;
}
.contact-form-box { background: var(--gray-50); border-radius: 24px; border: 1px solid var(--gray-100); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form-box h2 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.contact-form-box > p { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-success { text-align: center; padding: 40px 0; }
.form-success__icon {
  width: 64px; height: 64px; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #16a34a;
}
.form-success h3 { font-size: 18px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }

/* ─────────────────────────────────────────────
   SHARED FORM ELEMENTS
───────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gray-600); margin-bottom: 6px;
}
.form-input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--gray-900);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,.1); }
.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { resize: none; min-height: 130px; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; cursor: pointer;
  border: none; border-radius: var(--radius-lg); transition: var(--transition);
  font-size: 14px; padding: 12px 20px; line-height: 1;
}
.btn--primary { background: var(--blue-600); color: #fff; }
.btn--primary:hover { background: var(--blue-700); }
.btn--white { background: #fff; color: var(--blue-600); box-shadow: var(--shadow); }
.btn--white:hover { background: var(--blue-50); }
.btn--ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn--ghost-white:hover { background: rgba(255,255,255,.1); }
.btn--pill { border-radius: var(--radius-full); }
.btn--green { background: #22c55e; color: #fff; }
.btn--green:hover { background: #16a34a; }
.btn--brand { color: #fff; }
.btn--brand:hover { opacity: .9; }
.btn--full { width: 100%; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }

/* ─────────────────────────────────────────────
   MODAL – DRIVER DOWNLOAD POPUP
───────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: scale(.95);
  transition: transform .2s, max-width .25s;
  overflow: hidden;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-box.wide { max-width: 680px; }
.modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.modal__header h2 { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.modal__close {
  width: 32px; height: 32px;
  border-radius: 50%; background: none; border: none;
  color: var(--gray-400); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition), background var(--transition);
}
.modal__close:hover { color: var(--gray-600); background: var(--gray-100); }
/* Step indicators */
.modal__steps {
  display: flex; gap: 6px; align-items: center;
  padding: 12px 24px; border-bottom: 1px solid var(--gray-100);
}
.modal__step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-200); transition: background .25s;
}
.modal__step-dot.active { background: var(--blue-600); }
.modal__step-dot.done { background: #22c55e; }

/* Step 1 – Welcome */
.step-welcome { padding: 40px 24px; text-align: center; }
.step-welcome__title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-welcome__model { font-size: 12px; color: var(--blue-600); font-weight: 600; background: var(--blue-50); display: inline-block; padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 20px; }
.step-welcome__sub { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; }
.step-welcome__svg { margin: 0 auto 24px; }

/* Step 2 – Form */
.step-form { padding: 28px 24px; }
.step-form h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.step-form p { font-size: 12px; color: var(--gray-500); margin-bottom: 20px; }

/* Step 3 – Connection */
.step-connection { padding: 32px 24px; text-align: center; }
.step-connection h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-connection p { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.connection-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.connection-opt {
  border: 2px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 28px 20px; text-align: center; cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.connection-opt:hover { border-color: var(--blue-400); box-shadow: var(--shadow); }
.connection-opt svg { margin: 0 auto 12px; }
.connection-opt strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.connection-opt span { font-size: 12px; color: var(--gray-500); }

/* Step 4 – Loading */
.step-loading { padding: 36px 24px; text-align: center; }
.step-loading h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-loading p { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.progress-track { background: var(--gray-200); border-radius: var(--radius-full); height: 8px; overflow: hidden; margin-bottom: 10px; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--blue-500), var(--blue-600)); border-radius: var(--radius-full); width: 0%; transition: width .3s ease; }
.progress-label { font-size: 12px; color: var(--gray-500); }

/* Step 5 – Error */
.step-error { padding: 28px 24px; }
.step-error h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-error p { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }
.status-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.status-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.status-item:last-child { border-bottom: none; }
.status-item__left { display: flex; align-items: center; gap: 10px; color: var(--gray-700); font-weight: 500; }
.status-badge {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: var(--radius-full);
}
.status-badge--green { background: #dcfce7; color: #16a34a; }
.status-badge--red { background: #fee2e2; color: #dc2626; }
.status-badge--yellow { background: #fef9c3; color: #854d0e; }
.error-callout {
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-lg); padding: 16px;
  margin-bottom: 0;
}
.error-callout p { font-size: 13px; color: #7f1d1d; margin: 0; line-height: 1.6; }
.modal__bottom-bar {
  display: flex; border-top: 1px solid var(--gray-100);
}
.modal__bottom-bar__left {
  flex: 1; padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  border-right: 1px solid var(--gray-100);
}
.modal__bottom-bar__left-icon {
  width: 36px; height: 36px; background: var(--blue-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue-600);
}
.modal__bottom-bar__left p:first-child { font-size: 11px; color: var(--gray-500); }
.modal__bottom-bar__left p:last-child { font-size: 12px; font-weight: 600; color: var(--gray-700); line-height: 1.4; }
.modal__bottom-bar__right { padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.modal__bottom-bar__right p:first-child { font-size: 11px; color: var(--gray-500); }
.modal__bottom-bar__right p:last-child { font-size: 11px; color: #22c55e; font-weight: 600; }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-step { animation: fadeSlideIn .2s ease; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .brand-hero__inner { flex-direction: column; }
  .brand-hero__right { display: none; }
  .quick-download-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .support-cards { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .download-form-box__body { flex-direction: column; }
  .download-form-box__field { width: 100%; }
  .connection-options { grid-template-columns: 1fr; }
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
}
.ff li{color:#000;}