/* ============================================================
   NORTHWOODS BANK – Homepage Redesign (Wireframe Option 1)
   Color palette: Navy #1a3a5c | Orange #f5821e | Teal #2abfbf
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

:root {
  --navy:       #1a3a5c;
  --navy-dark:  #0f2340;
  --navy-mid:   #1e4470;
  --orange:     #f5821e;
  --orange-dk:  #d96d0a;
  --teal:       #2abfbf;
  --teal-dk:    #1f9999;
  --white:      #ffffff;
  --off-white:  #f4f7fb;
  --gray-light: #e8edf4;
  --gray:       #8898aa;
  --text:       #2d3a4a;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(26,58,92,0.10);
  --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.bg-light { background: var(--off-white); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-teal-sm {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 6px;
  margin-top: 14px;
  transition: background var(--transition);
}
.btn-teal-sm:hover { background: var(--teal-dk); }

/* ===== EYEBROW LABELS ===== */
.eyebrow-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.eyebrow-label.teal { color: var(--teal); }
.eyebrow-label.center { text-align: center; }

.section-title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title.center { text-align: center; }

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-sub.center { text-align: center; display: block; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-actions { display: flex; gap: 10px; }

.btn-topbar {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.btn-outline-sm {
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}
.btn-outline-sm:hover { border-color: var(--white); color: var(--white); }
.btn-solid-sm {
  background: var(--orange);
  color: var(--white);
}
.btn-solid-sm:hover { background: var(--orange-dk); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 2px 12px rgba(26,58,92,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.8rem; }
.logo-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.logo-text em {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 400;
}
.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover { background: var(--off-white); color: var(--orange); }
.main-nav .nav-highlight {
  background: var(--navy);
  color: var(--white);
}
.main-nav .nav-highlight:hover { background: var(--navy-mid); color: var(--white); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,28,55,0.80) 45%, rgba(10,28,55,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  padding: 80px 24px;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero floating login */
.hero-login {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 28px 24px;
  width: 260px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.login-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.login-input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.login-input:focus { outline: none; border-color: var(--navy); }
.login-forgot {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 14px;
  transition: color var(--transition);
}
.login-forgot:hover { color: var(--orange); }
.btn-login {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  padding: 11px;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-login:hover { background: var(--navy-mid); }

/* ===== PRODUCT CARDS ===== */
.products {
  background: var(--navy);
  padding: 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
  color: var(--white);
}
.product-card:last-child { border-right: none; }
.product-card:hover { background: rgba(255,255,255,0.07); }
.product-icon {
  font-size: 1.8rem;
  background: rgba(255,255,255,0.12);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-card strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}
.product-card p {
  font-size: 0.8rem;
  color: var(--teal);
  margin-top: 2px;
}

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.75;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover { border-bottom-color: var(--orange); transform: translateY(-3px); }
.service-card.featured { border-bottom-color: var(--teal); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.7;
}
.service-logos { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--off-white);
  color: var(--navy);
  border: 1px solid var(--gray-light);
}

/* ===== SPOTLIGHT ===== */
.spotlight { background: var(--navy); color: var(--white); }
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spotlight-text h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 18px;
}
.spotlight-text p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  line-height: 1.75;
}
.spotlight-visual img {
  border-radius: var(--radius);
  width: 100%;
  height: 340px;
  object-fit: cover;
  opacity: 0.88;
}

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--teal);
  padding: 22px 0;
  text-align: center;
}
.trust-inner p {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== STATS ===== */
.stats-band {
  background: var(--off-white);
  padding: 48px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--gray-light);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 14px rgba(26,58,92,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,58,92,0.13);
}
.feat-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  background: var(--off-white);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}
.learn-more {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  padding: 7px 16px;
  border: 1.5px solid var(--teal);
  border-radius: 20px;
  transition: all var(--transition);
}
.learn-more:hover { background: var(--teal); color: var(--white); }

/* ===== HELP BAND ===== */
.help-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.help-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.help-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,28,55,0.93) 40%, rgba(10,28,55,0.75));
  z-index: 1;
}
.help-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.help-text h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.help-text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}
.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.help-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.help-card:hover { background: rgba(255,255,255,0.14); }
.help-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.help-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 8px;
}
.help-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.testimonial-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--teal);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.4;
}
.testimonial-content h2 {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial-meta small { font-size: 0.8rem; color: var(--gray); }
.testimonial-dots { margin-top: 22px; display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: background var(--transition);
}
.dot.active { background: var(--teal); }

/* ===== BUSINESS OF THE MONTH ===== */
.botm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.botm-text h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.botm-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.botm-text h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.botm-text p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.botm-quote {
  font-style: italic;
  color: var(--navy) !important;
  border-left: 3px solid var(--teal);
  padding-left: 14px;
  margin-bottom: 24px !important;
  font-size: 0.88rem !important;
}
.botm-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ===== CTA LANDSCAPE ===== */
.cta-landscape {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,28,55,0.72);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo span { font-size: 1.6rem; }
.footer-logo strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-logo em {
  display: block;
  font-style: italic;
  font-size: 0.72rem;
  color: var(--orange);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 6px;
}
.footer-fdic {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 12px;
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.social-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.25);
}
.footer-bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-login { display: none; }
  .help-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .main-nav { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 60px 24px; }
  .hero-headline { font-size: 2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .product-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .product-card:nth-child(even) { border-right: none; }
  .about-inner,
  .spotlight-inner,
  .testimonials-inner,
  .botm-inner { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .help-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .trust-logos { gap: 16px; font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .section-pad { padding: 56px 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card { border-right: none !important; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
