@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: #f8fafc; color: #1e293b; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: 'Poppins', sans-serif; }

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.hidden { display: none !important; }

/* ── NAV ── */
.nav {
  background: #fff;
  border-bottom: 1px solid #e8edf2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg,#2563eb,#0ea5e9);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .85rem;
}
.nav-brand-logo { height: 32px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 500; color: #64748b; transition: color .2s; }
.nav-links a:hover { color: #0f172a; }
.nav-home-link {
  font-size: .875rem; font-weight: 500; color: #64748b;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.nav-home-link:hover { color: #0f172a; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: .875rem;
  border: none; cursor: pointer; transition: opacity .2s, transform .1s;
  text-decoration: none;
}
.btn:hover { opacity: .9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg,#2563eb,#0ea5e9);
  color: #fff; padding: 10px 20px; border-radius: 12px;
}
.btn-white {
  background: #fff; color: #1d4ed8;
  padding: 12px 32px; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  padding: 12px 32px; border-radius: 12px;
}
.btn-lg { padding: 14px 40px; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg,#0f172a 0%,#1e3a5f 50%,#0c4a6e 100%);
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle,#38bdf8,transparent);
  opacity: .1; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle,#6366f1,transparent);
  opacity: .08; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #7dd3fc; border: 1px solid rgba(125,211,252,.3);
  background: rgba(125,211,252,.08); padding: 6px 16px; border-radius: 99px;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-title .gradient-text {
  background: linear-gradient(90deg,#38bdf8,#818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { color: #94a3b8; font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; max-width: 560px; }
.hero-search {
  display: flex; gap: 12px; max-width: 660px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  padding: 6px 6px 6px 20px;
  margin-bottom: 20px;
}
.hero-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: .875rem; color: #1e293b;
}
.hero-search input::placeholder { color: #94a3b8; }
.hero-search button {
  background: linear-gradient(135deg,#2563eb,#0ea5e9);
  color: #fff; border: none; padding: 12px 24px; border-radius: 12px;
  font-weight: 700; font-size: .875rem; cursor: pointer; white-space: nowrap;
  font-family: 'Poppins', sans-serif; transition: opacity .2s;
}
.hero-search button:hover { opacity: .9; }
.trust-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-badge { font-size: .75rem; font-weight: 500; color: #64748b; }
.hero-sub { color: #64748b; font-size: .8rem; margin-bottom: 8px; }

/* ── BRAND CARDS ── */
.section { padding: 80px 0; }
.section-title { font-size: 1.9rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.section-desc { color: #64748b; font-size: 1rem; margin-bottom: 48px; }
.brand-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px;
}
.brand-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none; display: block; cursor: pointer;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-color: transparent;
}
.brand-logo-wrap {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.brand-logo-wrap img { width: 44px; height: 44px; object-fit: contain; }
.brand-card h3 { font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.brand-card p { font-size: .78rem; color: #94a3b8; margin-bottom: 20px; }
.brand-link {
  font-size: .85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.brand-card:hover .brand-link { gap: 10px; }

/* ── HOW IT WORKS ── */
.how-section { background: linear-gradient(to bottom,#f0f9ff,#e8f0fe); padding: 72px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.step-card { background: #fff; border-radius: 20px; padding: 36px 28px; border: 1px solid #e8f0fe; }
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-num { font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: #93c5fd; margin-bottom: 8px; }
.step-card h4 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.step-card p { font-size: .82rem; color: #64748b; line-height: 1.6; }

/* ── SUPPORT CTA ── */
.cta-section { padding: 72px 0; }
.cta-box {
  background: linear-gradient(135deg,#1d4ed8,#0ea5e9);
  border-radius: 28px; padding: 64px 40px;
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.1); pointer-events: none;
}
.cta-box h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; font-size: .95rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #0f172a; color: #64748b; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 32px; margin-bottom: 40px; }
.footer-col h5 { color: #f1f5f9; font-size: .875rem; font-weight: 600; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .8rem; color: #64748b; transition: color .2s; }
.footer-col ul a:hover { color: #f1f5f9; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 24px; font-size: .75rem; text-align: center; }

/* ── BRAND HERO ── */
.brand-hero {
  padding: 80px 0;
  position: relative; overflow: hidden; min-height: 480px;
  display: flex; align-items: center;
}
.brand-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.15),transparent);
  pointer-events: none;
}
.brand-hero-inner { display: flex; align-items: center; gap: 64px; width: 100%; }
.brand-hero-content { flex: 1; max-width: 560px; }
.brand-badge {
  display: inline-flex; align-items: center;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); padding: 6px 16px; border-radius: 99px;
  margin-bottom: 24px;
}
.brand-hero h1 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.brand-hero p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.7; margin-bottom: 32px; }
.brand-search { display: flex; flex-direction: column; gap: 12px; }
.brand-search input {
  width: 100%; padding: 16px 20px; border-radius: 14px; border: none;
  background: #fff; color: #1e293b; font-size: .875rem; outline: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  font-family: 'Poppins', sans-serif;
}
.brand-search input::placeholder { color: #94a3b8; }
.brand-search-btn {
  width: 100%; padding: 16px; border-radius: 14px; border: none;
  color: #fff; font-weight: 700; font-size: .875rem; letter-spacing: .05em;
  text-transform: uppercase; cursor: pointer; transition: opacity .2s;
  font-family: 'Poppins', sans-serif;
}
.brand-search-btn:hover { opacity: .9; }
.brand-trust { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.brand-trust span { font-size: .72rem; color: rgba(255,255,255,.5); }

/* Printer SVG card */
.printer-card {
  flex-shrink: 0; width: 300px; height: 300px; border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) { .printer-card { display: none; } }

/* ── FEATURES STRIP ── */
.features-strip { background: #fff; padding: 56px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.feature-item {
  display: flex; gap: 16px; padding: 20px;
  border-radius: 16px; border: 1px solid #f1f5f9;
  transition: background .2s;
}
.feature-item:hover { background: #f8fafc; }
.feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.feature-item h4 { font-size: .875rem; font-weight: 600; color: #0f172a; margin-bottom: 4px; }
.feature-item p { font-size: .78rem; color: #64748b; line-height: 1.55; }

/* Support strip */
.support-strip { background: #f8fafc; padding: 48px 0; text-align: center; border-top: 1px solid #e8edf2; }
.support-strip h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.support-strip p { color: #64748b; font-size: .875rem; margin-bottom: 24px; }

/* ── DOWNLOAD PAGE ── */
.dl-status-bar { padding: 20px 0; }
.dl-status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 99px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12); font-weight: 600; font-size: .875rem; color: #fff;
}
.dl-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  position: relative;
}
.dl-status-dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  animation: ripple 1.2s infinite;
}
.dl-status-dot.green { background: #4ade80; }
.dl-status-dot.green::before { background: #4ade80; }
.dl-status-dot.red { background: #f87171; }
.dl-status-dot.red::before { background: #f87171; }
@keyframes ripple {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.2); }
}

.dl-content { background: #fff; min-height: calc(100vh - 200px); padding: 48px 0 64px; }
.dl-inner { display: flex; align-items: flex-start; gap: 64px; }
.dl-main { flex: 1; }
.dl-heading { font-size: 1.7rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.dl-model { font-size: .875rem; color: #64748b; margin-bottom: 32px; }
.dl-model strong { color: #334155; }

.progress-card {
  background: #f8fafc; border-radius: 24px; padding: 32px;
  border: 1px solid #e8edf2; box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.progress-row { margin-bottom: 28px; }
.progress-row:last-of-type { margin-bottom: 0; }
.progress-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.progress-info { display: flex; align-items: center; gap: 12px; }
.progress-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  background: #e8f0fe; flex-shrink: 0;
}
.progress-label { font-weight: 600; font-size: .875rem; color: #1e293b; }
.progress-sub { font-size: .72rem; color: #94a3b8; }
.progress-pct { font-weight: 800; font-size: 1.1rem; color: #1e293b; }
.progress-track {
  height: 12px; border-radius: 99px; background: #e2e8f0; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 99px;
  transition: width .15s linear;
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,.15) 0, rgba(255,255,255,.15) 10px,
    transparent 10px, transparent 20px
  );
  background-size: 40px 100%;
  animation: stripe 1s linear infinite;
}
@keyframes stripe {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}
.progress-msg { font-size: .72rem; color: #94a3b8; margin-top: 8px; }
.progress-divider { border: none; border-top: 1px solid #e8edf2; margin: 28px 0; }
.dl-notice { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: #94a3b8; margin-top: 24px; }
.dl-dots { display: flex; gap: 8px; margin-top: 28px; }
.dl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: bounce 0.8s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Printer visual right */
.dl-printer {
  flex-shrink: 0; width: 260px; height: 260px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e8edf2;
}
@media (max-width: 900px) { .dl-printer { display: none; } }

/* ── FAILED STATE ── */
.failed-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fef2f2; border: 1px solid #fecaca; color: #ef4444;
  padding: 8px 18px; border-radius: 99px; font-size: .8rem; font-weight: 600;
  margin-bottom: 24px;
}
.failed-heading { font-size: 1.7rem; font-weight: 700; color: #0f172a; margin-bottom: 28px; }
.failed-heading span { color: #ef4444; }
.failed-box {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 20px;
  padding: 28px; margin-bottom: 20px;
}
.failed-box-inner { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.failed-icon { font-size: 1.2rem; flex-shrink: 0; }
.failed-box h4 { font-size: .9rem; font-weight: 600; color: #0f172a; margin-bottom: 4px; }
.failed-box p { font-size: .8rem; color: #64748b; }
.failed-divider { border: none; border-top: 1px solid #fecaca; margin: 16px 0; }
.failed-bars { background: #f8fafc; border-radius: 16px; padding: 20px; margin-bottom: 20px; border: 1px solid #e8edf2; }
.failed-bar-row { margin-bottom: 16px; }
.failed-bar-row:last-child { margin-bottom: 0; }
.failed-bar-header { display: flex; justify-content: space-between; font-size: .75rem; margin-bottom: 8px; }
.failed-bar-header span:first-child { color: #64748b; }
.failed-bar-header span:last-child { color: #ef4444; font-weight: 600; }
.failed-bar-track { height: 8px; border-radius: 99px; background: #e2e8f0; overflow: hidden; }
.failed-bar-fill { height: 100%; width: 100%; border-radius: 99px; background: linear-gradient(90deg,#f87171,#ef4444); }
.redirecting { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: #94a3b8; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SUPPORT PAGE ── */
.support-hero { padding: 72px 0; position: relative; overflow: hidden; }
.support-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.12),transparent);
  pointer-events: none;
}
.support-inner { display: flex; gap: 64px; align-items: flex-start; }
.support-left { flex: 1; }
.support-right { width: 440px; flex-shrink: 0; }
@media (max-width: 900px) {
  .support-inner { flex-direction: column; }
  .support-right { width: 100%; }
}
.error-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5; padding: 7px 18px; border-radius: 99px;
  font-size: .78rem; font-weight: 600; margin-bottom: 24px;
}
.support-heading { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 28px; }
.support-heading span { color: #fca5a5; }
.error-box {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2);
  border-radius: 20px; padding: 24px; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.error-box-inner { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.error-box-icon { font-size: 1.2rem; flex-shrink: 0; }
.error-box h4 { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.error-box p { font-size: .8rem; color: rgba(255,255,255,.7); }
.error-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 16px 0; }
.error-note { font-size: .8rem; color: rgba(255,255,255,.55); }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 20px;
  transition: color .2s;
}
.back-link:hover { color: rgba(255,255,255,.9); }

/* Form Card */
.form-card { background: #fff; border-radius: 24px; padding: 36px; box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.form-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.form-icon {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: #fff;
}
.form-header-text h4 { font-size: .9rem; font-weight: 700; color: #0f172a; }
.form-header-text p { font-size: .75rem; color: #94a3b8; }
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #e8edf2; border-radius: 14px;
  font-size: .875rem; color: #1e293b; outline: none;
  font-family: 'Poppins', sans-serif;
  transition: border-color .2s;
}
.form-control:focus { border-color: #2563eb; }
.form-control::placeholder { color: #94a3b8; }
textarea.form-control { resize: none; }
.btn-submit {
  width: 100%; padding: 16px; border-radius: 14px; border: none;
  background: #111; color: #fff; font-weight: 700; font-size: .875rem;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: background .2s;
}
.btn-submit:hover { background: #333; }

/* Success state */
.success-state { text-align: center; padding: 20px 0; }
.success-icon { font-size: 2.5rem; margin-bottom: 16px; }
.success-state h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.success-state p { font-size: .875rem; color: #64748b; margin-bottom: 28px; }

/* Warning bar */
.warning-bar { background: #fffbeb; border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a; padding: 16px 0; }
.warning-bar-inner { display: flex; align-items: flex-start; gap: 12px; }
.warning-bar p { font-size: .82rem; color: #374151; }
.warning-bar strong { color: #0f172a; }

/* Chat CTA section */
.chat-section { background: #fff; padding: 72px 0; text-align: center; }
.chat-available {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px;
}
.chat-section h2 { font-size: 1.8rem; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.chat-section p { color: #64748b; font-size: .9rem; max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.chat-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-chat {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border-radius: 14px;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  font-family: 'Poppins', sans-serif; border: none;
  transition: opacity .2s, transform .15s;
}
.btn-chat:hover { opacity: .9; transform: translateY(-1px); }
.btn-chat-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border-radius: 14px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  background: transparent; border-width: 2px; border-style: solid;
  transition: background .2s;
}
.btn-chat-outline:hover { background: rgba(0,0,0,.04); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-title { font-size: 2rem; }
  .hero-search { flex-direction: column; padding: 8px; }
  .hero-search input { padding: 12px; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .brand-hero-inner { flex-direction: column; }
  .dl-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .support-inner { flex-direction: column; }
  .support-right { width: 100%; }
}
@media (max-width: 480px) {
  .brand-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
