/* =====================================================
   HOME PAGE – KWCalc
   Tokens inherited from components.css + category-pages.css
   ===================================================== */

/* ---- Root tokens (augment components.css) ---- */
:root {
  --p:        #2563eb;
  --p-d:      #1d4ed8;
  --p-l:      #eff6ff;
  --p-b:      #bfdbfe;
  --text:     #1e293b;
  --muted:    #64748b;
  --border:   #e2e8f0;
  --white:    #ffffff;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(37,99,235,.07);
  --max:      1100px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #3b82f6 100%);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Search bar */
.hero-search-wrap {
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
}

.hero-search-wrap svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
  width: 20px;
  height: 20px;
}

#global-search {
  width: 100%;
  padding: 16px 20px 16px 54px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50px;
  background: rgba(255,255,255,.95);
  font-size: 15px;
  font-family: inherit;
  color: #1e293b;
  outline: none;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

#global-search:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(147,197,253,.3), 0 8px 32px rgba(0,0,0,.15);
}

#global-search::placeholder { color: #94a3b8; }

/* Quick stats */
.hero-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}

.hero-stat svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: var(--p);
  border: 2px solid #fff;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #eff6ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.btn-secondary {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Search results dropdown */
#search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  max-height: 360px;
  overflow-y: auto;
  z-index: 999;
  border: 1px solid var(--border);
  display: none;
  text-align: left;
}

#search-results.visible { display: block; }

.search-result-item {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: background .15s;
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--p-l); }
.search-result-item strong { display: block; font-weight: 700; font-size: 14px; color: var(--text); }
.search-result-item span { font-size: 12px; color: var(--muted); }

/* =====================================================
   SHARED SECTION WRAPPER
   ===================================================== */
.home-section {
  padding: 72px 24px;
}

.home-section.alt-bg {
  background: #fff;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Section header */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--p-l);
  color: var(--p);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
}

.section-head { margin-bottom: 40px; }

/* Centred variant – flex column keeps every child centred */
.section-head.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head.centered .section-title { text-align: center; }
.section-head.centered .section-desc  { text-align: center; max-width: 580px; }

/* =====================================================
   CATEGORY CARDS GRID
   ===================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--p), #3b82f6);
  opacity: 0;
  transition: opacity .25s;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--p-b);
}

.cat-card:hover::before { opacity: 1; }

.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--p-l);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background .25s;
}

.cat-card:hover .cat-icon { background: #dbeafe; }

.cat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.cat-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* =====================================================
   CALCULATOR CARDS (dynamic)
   ===================================================== */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.calc-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px 22px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.calc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--p-b);
}

.calc-card-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--p);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.calc-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 10px;
  line-height: 1.35;
}

.calc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 16px;
}

.calc-card .btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--p);
  background: var(--p-l);
  border: 1px solid var(--p-b);
  transition: all .2s;
  text-decoration: none;
}

.calc-card:hover .btn {
  background: var(--p);
  color: #fff;
  border-color: var(--p);
}

/* Loading / empty states */
.grid-loading {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: 15px;
  grid-column: 1/-1;
}

/* =====================================================
   TRUST / WHY KWCALC
   ===================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(37,99,235,.08);
}

.trust-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}

.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* =====================================================
   HOW IT WORKS – TIMELINE
   ===================================================== */
.how-timeline {
  max-width: 680px;
  margin: 0 auto;
  counter-reset: step;
}

.how-step {
  display: flex;
  gap: 22px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.how-step:last-child { margin-bottom: 0; }

.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--p);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}

.step-num::before { content: counter(step); }

.step-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
}

.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* =====================================================
   GUIDE SECTION
   ===================================================== */
.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.guide-link:hover {
  border-color: var(--p);
  color: var(--p);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.1);
}

.guide-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-list  { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .2s, border-color .2s;
}

.faq-item:hover { border-color: #bfdbfe; box-shadow: 0 6px 20px rgba(37,99,235,.07); }

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, background .2s;
}

.faq-item[open] summary { border-bottom: 1px solid #e2e8f0; }
.faq-item[open] summary::after { transform: rotate(45deg); background: #2563eb; color: #fff; }

.faq-body {
  padding: 20px 24px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
}

/* =====================================================
   INTERNAL LINKS (EXPLORE MORE)
   ===================================================== */
.explore-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.pill-link:hover {
  border-color: var(--p);
  color: var(--p);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.1);
}

/* =====================================================
   HOW WE DEVELOP THE TOOLS
   ===================================================== */
.develop-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}

/* Left: pipeline */
.develop-pipeline {
  display: flex;
  flex-direction: column;
}

.dev-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.dev-step-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--p-l);
  border: 1px solid var(--p-b);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,.08);
  transition: background .25s, transform .25s;
}

.dev-step:hover .dev-step-icon {
  background: #dbeafe;
  transform: scale(1.06);
}

.dev-step-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  transition: border-color .25s, box-shadow .25s;
}

.dev-step:hover .dev-step-body {
  border-color: var(--p-b);
  box-shadow: 0 6px 20px rgba(37,99,235,.07);
}

.dev-step-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.dev-step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Vertical connector between steps */
.dev-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--p-b), transparent);
  margin-left: 27px; /* aligns with centre of 56px icon */
}

/* Right: standards card */
.develop-standards {
  position: sticky;
  top: 80px;
}

.standards-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  border-top: 4px solid var(--p);
  padding: 28px 24px;
  box-shadow: 0 6px 28px rgba(37,99,235,.07);
}

.standards-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.standards-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.standards-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.standards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}

.standards-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.55;
}

.std-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--p-l);
  color: var(--p);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.standards-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.std-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--p-l);
  color: var(--p);
  border: 1px solid var(--p-b);
}

/* Responsive */
@media (max-width: 900px) {
  .develop-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .develop-standards { position: static; }
}

@media (max-width: 560px) {
  .dev-step { gap: 14px; }
  .dev-step-icon { width: 46px; height: 46px; font-size: 20px; border-radius: 12px; }
  .dev-connector { margin-left: 22px; }
}

/* =====================================================
   "VIEW ALL" BUTTON
   ===================================================== */
.view-all-wrap {
  text-align: center;
  margin-top: 36px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  background: var(--p);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}

.btn-view-all:hover {
  background: var(--p-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 56px; }
  .home-section { padding: 52px 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero { padding: 48px 16px 44px; }
  .home-section { padding: 44px 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .how-step { flex-direction: column; }
}

@media (max-width: 400px) {
  .cat-grid  { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   NEWSLETTER SECTION
   ===================================================== */
.newsletter-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.newsletter-section h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.newsletter-section > .newsletter-inner > p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Form */
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}

.newsletter-input-wrap {
  flex: 1;
  position: relative;
  min-width: 220px;
}

.newsletter-input-wrap svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
  width: 18px;
  height: 18px;
}

.newsletter-input-wrap input {
  width: 100%;
  padding: 15px 18px 15px 50px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50px;
  background: rgba(255,255,255,.95);
  font-size: 15px;
  font-family: inherit;
  color: #1e293b;
  outline: none;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.newsletter-input-wrap input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(147,197,253,.3), 0 4px 16px rgba(0,0,0,.12);
}

.newsletter-input-wrap input::placeholder { color: #94a3b8; }

.newsletter-btn {
  padding: 15px 28px;
  border-radius: 50px;
  background: #fff;
  color: var(--p);
  border: 2px solid #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #eff6ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.newsletter-note {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}

/* Stats row */
.newsletter-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.nl-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.nl-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.nl-stat span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Newsletter responsive */
@media (max-width: 560px) {
  .newsletter-section { padding: 60px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input-wrap { min-width: 100%; }
  .newsletter-btn { width: 100%; text-align: center; }
  .newsletter-stats { gap: 24px; }
}
