/* ============================================================
   SecureMyHonda.com — Design System
   ============================================================ */

/* --- Tokens ------------------------------------------------ */
:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --red-light:  #FF1A1A;
  --charcoal:   #1A1A1A;
  --dark:       #2C2C2C;
  --mid:        #555555;
  --muted:      #888888;
  --border:     #E0E0E0;
  --bg:         #FFFFFF;
  --bg-alt:     #F7F7F7;
  --bg-dark:    #111111;

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);

  --max-w: 1100px;
  --gutter: 24px;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--bg);
}
img { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Layout ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #fff; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
.lead {
  font-size: 1.2rem;
  color: var(--mid);
  line-height: 1.6;
}
.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 12px; }
.section-subtitle { color: var(--mid); margin-bottom: 48px; max-width: 600px; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn--outline:hover {
  background: var(--red);
  color: #fff;
  text-decoration: none;
}
.btn--ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  text-decoration: none;
}
.btn--amazon {
  background: #FF9900;
  color: #111;
}
.btn--amazon:hover {
  background: #E88900;
  color: #111;
  text-decoration: none;
  transform: translateY(-1px);
}

/* --- Nav --------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-decoration: none;
}
.nav__logo:hover { text-decoration: none; }
.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.nav__logo span { color: var(--red); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  color: var(--mid);
  font-size: .95rem;
  font-weight: 500;
  transition: color .15s;
}
.nav__links a:hover { color: var(--charcoal); text-decoration: none; }
.nav__links .nav__cta a {
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
}
.nav__links .nav__cta a:hover { background: var(--red-dark); }
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 2px;
}

/* --- Hero -------------------------------------------------- */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,.2);
  border: 1px solid rgba(204,0,0,.4);
  color: #FF6666;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__tag::before { content: '●'; font-size: .5rem; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--red-light); font-style: normal; }
.hero .lead { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stat-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.hero__stat-num { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hero__stat-label { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* --- Story Banner ------------------------------------------ */
.story-banner {
  background: #FFF8F8;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 48px 0;
}
.story-banner__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.story-banner blockquote {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  line-height: 1.6;
  color: var(--dark);
  font-style: italic;
}

/* --- Stat Strip -------------------------------------------- */
.stat-strip {
  background: var(--red);
  color: #fff;
  padding: 40px 0;
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-strip__num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.stat-strip__label { font-size: .9rem; opacity: .85; margin-top: 6px; }

/* --- Product Cards ----------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card__badge {
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__layer {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-card__name { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--charcoal); }
.product-card__desc { font-size: .95rem; color: var(--mid); margin-bottom: 20px; flex: 1; }
.product-card__footer { border-top: 1px solid var(--border); padding: 20px 24px; display: flex; gap: 10px; }

/* --- Why Threats Section ----------------------------------- */
.threats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.threat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.threat-card__icon {
  width: 48px;
  height: 48px;
  background: #FFF0F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.threat-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.threat-card p { font-size: .9rem; color: var(--mid); }

/* --- Testimonial / Personal Story -------------------------- */
.story-section { }
.story-section__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.story-section__text h2 { margin-bottom: 20px; }
.story-section__text p { color: var(--mid); }
.story-sidebar {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.story-sidebar h4 { margin-bottom: 16px; color: var(--charcoal); }
.story-sidebar__item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--mid);
}
.story-sidebar__item::before {
  content: '✓';
  background: var(--red);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- FAQ --------------------------------------------------- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item__q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item__a {
  font-size: .95rem;
  color: var(--mid);
  margin-top: 14px;
  line-height: 1.7;
}

/* --- Article Card (for news links) ------------------------- */
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.article-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s;
}
.article-card:hover { box-shadow: var(--shadow); }
.article-card__source {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.article-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.4;
}
.article-card__desc { font-size: .88rem; color: var(--mid); margin-bottom: 14px; }
.article-card__link { font-size: .88rem; font-weight: 600; color: var(--red); }

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.55);
  padding: 56px 0 36px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { font-size: .9rem; margin-top: 14px; line-height: 1.7; }
.footer__col h5 { color: #fff; font-size: .9rem; margin-bottom: 16px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { color: rgba(255,255,255,.55); font-size: .9rem; }
.footer__col ul li a:hover { color: #fff; text-decoration: none; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  font-size: .82rem;
  line-height: 1.7;
}
.footer__disclosure {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: .78rem;
}

/* --- Utility ---------------------------------------------- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* --- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__stat-bar { flex-direction: row; }
  .hero__stat { flex: 1; }
  .products-grid { grid-template-columns: 1fr; }
  .threats-grid { grid-template-columns: 1fr 1fr; }
  .story-section__grid { grid-template-columns: 1fr; gap: 32px; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-strip__grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  .section { padding: 48px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .hero { padding: 64px 0 56px; }
  .hero__stat-bar { flex-direction: column; }
  .threats-grid { grid-template-columns: 1fr; }
  .stat-strip__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
}
