:root {
  --slate: #1A2B3C;
  --royal: #185FA5;
  --electric: #378ADD;
  --frost: #F4F6F9;
  --light-blue: #E6F1FB;
  --white: #FFFFFF;
  --mid-gray: #D0D8E4;
  --muted: #5A7A9A;
  --accent: #0ECEAA;
  --nav-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--slate);
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(26, 43, 60, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--electric);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo a{ display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none;}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--royal);
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--royal);
  font-weight: 700;
  position: relative;
  flex-shrink: 0;
}

.logo-badge::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--electric);
}

.nav-wordmark { display: flex; flex-direction: column; line-height: 1;}
.nav-wordmark span:first-child { font-size: 14px; font-weight: 600; padding-bottom: 5px; color: var(--white); letter-spacing: 1px; }
.nav-wordmark span:last-child { font-size: 9px; color: var(--electric); letter-spacing: 3px; font-weight: 300; }

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-links a {
  color: var(--mid-gray) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white) !important; background: rgba(55, 138, 221, 0.15) !important; }

.nav-cta { background: var(--royal) !important; color: var(--white) !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--electric) !important; }

/* Mobile toggle button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(55, 138, 221, 0.15);
  border: 1px solid rgba(55, 138, 221, 0.4);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.2s;
}

.nav-toggle:hover { background: rgba(55, 138, 221, 0.3); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Offcanvas mobile menu */
.offcanvas-mobile-menu {
  background: var(--slate) !important;
  border-left: 2px solid var(--electric) !important;
  width: min(320px, 85vw) !important;
}

.offcanvas-mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.offcanvas-mobile-menu .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

.offcanvas-mobile-menu .offcanvas-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  color: var(--mid-gray);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  background: rgba(55, 138, 221, 0.15);
  border-color: rgba(55, 138, 221, 0.3);
}

.mobile-nav-link.nav-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--royal) !important;
  color: var(--white) !important;
}

.mobile-nav-link.nav-cta:hover { background: var(--electric) !important; }

/* ── PAGES ── */
.page { 
  padding-top: 40px;
  min-height: 100vh;
}

.page.active { display: block; }

.page-enter {
  animation: pageFadeIn 0.45s ease both;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--slate) 0%, #0d1e2e 60%, #0a2040 100%);
  min-height: calc(92vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(24, 95, 165, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(14, 206, 170, 0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--electric) 1px, transparent 1px),
    linear-gradient(90deg, var(--electric) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 2; max-width: 680px; flex: 1 1 400px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(55, 138, 221, 0.15);
  border: 1px solid rgba(55, 138, 221, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge span { font-size: 11px; color: var(--electric); font-weight: 500; letter-spacing: 2px; }
.hero-badge::before { content: '🇺🇸'; font-size: 14px; }

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero h1 em { font-style: italic; color: var(--electric); }

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 540px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--royal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--electric);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 138, 221, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--electric); color: var(--electric); }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 auto;
  margin-left: auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(55, 138, 221, 0.25);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  min-width: 160px;
}

.stat-card:hover { border-color: var(--electric); background: rgba(55, 138, 221, 0.1); }
.stat-card .num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--white); line-height: 1; }
.stat-card .num span { color: var(--electric); }
.stat-card .label { font-size: 10px; color: var(--muted); letter-spacing: 2px; margin-top: 4px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--frost);
  border-top: 3px solid var(--electric);
  border-bottom: 1px solid var(--mid-gray);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--slate); }

.trust-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--royal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
section { padding: 80px 60px; }

.section-label { font-size: 11px; color: var(--electric); font-weight: 600; letter-spacing: 3px; margin-bottom: 12px; }

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--slate);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--frost);
  border: 1px solid var(--mid-gray);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--royal);
  transition: background 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(24, 95, 165, 0.12);
  border-color: var(--royal);
}

.feature-card:hover::before { background: var(--electric); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── CATALOG ── */
.catalog-section { background: var(--slate); }
.catalog-section .section-title { color: var(--white); }
.catalog-section .section-sub { color: rgba(255, 255, 255, 0.5); }
.catalog-section .section-label { color: var(--accent); }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.catalog-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
}

.catalog-card:hover { border-color: var(--electric); background: rgba(55, 138, 221, 0.08); }
.catalog-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.catalog-card p { font-size: 13px; color: rgba(255, 255, 255, 0.45); line-height: 1.6; margin-bottom: 16px; }

.catalog-tag {
  display: inline-block;
  background: rgba(55, 138, 221, 0.2);
  color: var(--electric);
  border: 1px solid rgba(55, 138, 221, 0.3);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.catalog-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: rgba(55, 138, 221, 0.15);
  position: absolute;
  bottom: 16px;
  right: 20px;
  line-height: 1;
}

/* ── QUALITY ── */
.quality-section { background: var(--light-blue); }

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quality-list { list-style: none; padding:0; display: flex; flex-direction: column; gap: 20px; }

.quality-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 20px 22px;
  border-left: 4px solid var(--royal);
  box-shadow: 0 2px 12px rgba(24, 95, 165, 0.06);
}

.quality-item .qi-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.quality-item h4 { font-size: 15px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.quality-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.quality-visual {
  background: var(--slate);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.coa-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--electric));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 8px 32px rgba(55, 138, 221, 0.4);
}

.quality-visual h3 { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 10px; }
.quality-visual p { color: rgba(255, 255, 255, 0.55); font-size: 14px; line-height: 1.7; }
.quality-visual .highlight { color: var(--electric); font-weight: 600; }

/* ── CTA ── */
.cta-banner {
  background: linear-gradient(135deg, var(--royal) 0%, var(--electric) 100%);
  padding: 64px 60px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 2vw, 17px);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: var(--white);
  color: var(--royal);
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

/* ── PRODUCTS PAGE ── */
#products-page { background: var(--frost); }

.products-hero {
  background: var(--slate);
  padding: 60px 60px 48px;
  border-bottom: 3px solid var(--electric);
}

.products-hero .section-label { color: var(--accent); }
.products-hero .section-title { color: var(--white); margin-bottom: 8px; }
.products-hero p { color: rgba(255, 255, 255, 0.5); font-size: 15px; }

.products-body { padding: 48px 60px; }
.product-section { margin-bottom: 48px; }

.ps-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-left: 5px solid var(--royal);
  border-radius: 0 10px 10px 0;
  padding: 16px 24px;
  margin-bottom: 2px;
  box-shadow: 0 2px 8px rgba(24, 95, 165, 0.06);
  flex-wrap: wrap;
}

.ps-header h2 { font-size: 17px; font-weight: 600; color: var(--royal); }
.ps-header .ps-icon { font-size: 22px; }

.ps-tier {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-left: auto;
  background: var(--light-blue);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 12px 12px;
}

.product-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(24, 95, 165, 0.06);
}



.product-table th {
  background: var(--slate);
  color: var(--white);
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: left;
  white-space: nowrap;
}

.product-table th:not(:first-child) { text-align: center; }

.product-table td {
  padding: 11px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--mid-gray);
}

.product-table tr:last-child td { border-bottom: none; }
.product-table tr:nth-child(even) td { background: var(--frost); }
.product-table td:first-child { font-weight: 600; color: var(--slate); width: 248px;}
.product-table td:not(:first-child):not(:nth-child(2)) { text-align: center; color: var(--royal); font-weight: 700; }
.product-table td:nth-child(2) { color: var(--muted); font-size: 12px; text-align: center; }



@media (max-width: 767px) {
.product-table td:first-child { width:width: 248px;}
.product-table td:first-child { max-width: 95px;}
.product-table td {
  padding: 11px 8px;}
.product-table {
  min-width: inherit !important;}
.product-table th:not(:first-child) { max-width: 85px;}

}



/* ── CONTACT PAGE ── */
#contact-page { background: var(--frost); }

.contact-hero {
  background: var(--slate);
  padding: 60px 60px 48px;
  border-bottom: 3px solid var(--electric);
}

.contact-hero .section-title { color: var(--white); margin-bottom: 8px; }
.contact-hero p { color: rgba(255, 255, 255, 0.5); font-size: 15px; }

.contact-body {
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}

.contact-info h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--slate); margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }

.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--royal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cd-text { font-size: 14px; color: var(--slate); }
.cd-text strong { display: block; margin-bottom: 2px; }
.cd-text a { color: var(--royal); text-decoration: none; }

.consult-reasons { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--mid-gray); }
.consult-reasons h4 { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 14px; letter-spacing: 0.5px; }

.reason-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.reason-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(24, 95, 165, 0.08);
  border: 1px solid var(--mid-gray);
}

.contact-form-wrap h3 { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--slate); margin-bottom: 6px; }
.contact-form-wrap .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--slate);
  background: var(--frost);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--royal); background: var(--white); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  background: var(--royal);
  color: var(--white);
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--electric); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-error {
  display: none;
  background: #FDECEC;
  border: 1px solid #F3B4B4;
  color: #9A2A2A;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 18px;
}

.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--slate); margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--slate);
  padding: 48px 60px 28px;
  border-top: 3px solid var(--royal);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p { font-size: 13px; color: rgba(255, 255, 255, 0.4); line-height: 1.7; margin-top: 14px; }
.footer-col h4 { font-size: 12px; color: var(--electric); font-weight: 600; letter-spacing: 2px; margin-bottom: 14px; }

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white) !important; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.25); }

.us-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(55, 138, 221, 0.15);
  border: 1px solid rgba(55, 138, 221, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  color: var(--electric);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.7s ease both; }
.hero-stats { animation: fadeUp 0.7s 0.2s ease both; }

/* ── RESPONSIVE: 990px — nav toggle ── */
@media (max-width: 990px) {
  nav.site-nav { padding: 0 20px; }

  .nav-links { display: none !important; }
  .nav-toggle { display: flex; }

  .nav-wordmark span:first-child { font-size: 12px; }
  .nav-wordmark span:last-child { font-size: 8px; letter-spacing: 2px; }
}

/* ── RESPONSIVE: tablet ── */
@media (max-width: 992px) {
  .hero {
    padding: 60px 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
    width: 100%;
  }
.hero-stats{display: flex; justify-content: space-between; }
  .stat-card {  min-width: 140px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-body { grid-template-columns: 1fr; gap: 32px; padding: 40px; }

  section { padding: 60px 40px; }
  .trust-bar { padding: 24px 40px; }
  .products-body { padding: 40px; }
  .products-hero { padding: 48px 40px 36px; }
  .contact-hero { padding: 48px 40px 36px; }
  .cta-banner { padding: 48px 40px; }
  footer { padding: 40px 40px 24px; }
}

/* ── RESPONSIVE: mobile ── */
@media (max-width: 768px) {
  .hero { padding: 48px 24px; min-height: auto; }
  .hero-stats { flex-direction: column; }
  .stat-card { width: 100%; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: initial;
    margin-left: 0;
    width: 100%;
}
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; text-align: center; }

  .features-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }

  section { padding: 48px 24px; }
  .trust-bar { padding: 20px 24px; justify-content: flex-start; }
  .trust-item { flex: 1 1 100%; }

  .products-body { padding: 24px 16px; }
  .products-hero { padding: 40px 24px 32px; }
  .contact-body { padding: 32px 24px; }
  .contact-hero { padding: 40px 24px 32px; }
  .contact-form-wrap { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-banner { padding: 40px 24px; }

  footer { padding: 32px 24px 20px; }

  .ps-header { padding: 14px 16px; }
  .ps-tier { margin-left: 0; width: 100%; text-align: center; }

  .quality-visual { padding: 28px 20px; }
}


@media (max-width: 600px) {
.hero-stats { 
  flex-wrap: wrap; 
}

}

@media (max-width: 480px) {
  .logo-badge { width: 36px; height: 36px; font-size: 16px; }
  .nav-wordmark span:first-child { font-size: 11px; }
  .nav-wordmark span:last-child { font-size: 7px; letter-spacing: 1.5px; }
}
