/* ============================================================
   CUSTOM CLOTHING PATCHES — Design System
   Theme: Garment-label editorial
   Palette: Forest + Linen + Gold + Thread-Red
   Type: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --forest:      #1A2E22;
  --forest-mid:  #243D2E;
  --forest-lite: #2E5040;
  --gold:        #B8962E;
  --gold-lite:   #D4AF50;
  --gold-pale:   #F8F4E8;
  --linen:       #FFFFFF;
  --linen-dark:  #EEF2EE;
  --red:         #8B1A1A;
  --white:       #FFFFFF;
  --ink:         #1A2018;
  --muted:       #5A6655;
  --border:      #DDE5DD;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 8px;
  --shadow:    0 2px 16px rgba(26,46,34,0.10);
  --shadow-md: 0 6px 32px rgba(26,46,34,0.14);
  --trans:     0.2s ease;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--ink); background:var(--linen); line-height:1.65; }
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }

/* ── CONTAINER ── */
.container { max-width:1140px; margin:0 auto; padding:0 24px; }

/* ── CARE LABEL (signature element) ── */
/* Every section label looks like a garment care label */
.care-label {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
}
.care-label::before,
.care-label::after {
  content:'';
  display:block;
  height:1px;
  width:28px;
  background:var(--border);
}
.care-label.light { color:rgba(255,255,255,0.5); }
.care-label.light::before,
.care-label.light::after { background:rgba(255,255,255,0.2); }
.care-label.gold { color:var(--gold-lite); }
.care-label.gold::before,
.care-label.gold::after { background:rgba(184,150,46,0.3); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family:var(--font-display); line-height:1.15; }

h1 { font-size:clamp(36px,5vw,68px); font-weight:600; letter-spacing:-0.01em; }
h2 { font-size:clamp(26px,3.5vw,44px); font-weight:600; color:var(--forest); margin-bottom:36px; }
h3 { font-size:20px; font-weight:600; color:var(--forest); margin-bottom:10px; }
p  { font-size:15px; color:var(--muted); line-height:1.75; }

.text-light h2, .text-light h3 { color:var(--white); }
.text-light p  { color:rgba(255,255,255,0.65); }

/* ── BUTTONS ── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:14px;
  letter-spacing:0.04em;
  padding:13px 28px;
  border-radius:var(--radius);
  border:none;
  cursor:pointer;
  transition:all var(--trans);
  white-space:nowrap;
  text-decoration:none;
}
.btn-gold  { background:var(--gold); color:var(--forest); }
.btn-gold:hover  { background:var(--gold-lite); transform:translateY(-1px); box-shadow:0 4px 16px rgba(184,150,46,0.4); }
.btn-outline { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,0.07); }
.btn-ghost { background:transparent; color:var(--forest); border:1.5px solid var(--border); }
.btn-ghost:hover { border-color:var(--forest); background:var(--linen-dark); }
.btn-lg { font-size:15px; padding:15px 34px; }

/* ── BADGES / TRUST STRIP ── */
.trust-strip {
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  margin-top:26px;
}
.trust-badge {
  display:flex;
  align-items:center;
  gap:9px;
  background:transparent;
  border:none;
  border-radius:999px;
  padding:0;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,0.94);
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.trust-badge .icon {
  display:grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#2fbf7a;
  color:#062915;
  box-shadow:none;
  font-size:13px;
  font-weight:900;
  line-height:1;
}

/* ── SECTIONS ── */
.section-linen  { padding:80px 0; background:var(--linen); }
.section-white  { padding:80px 0; background:var(--white); }
.section-forest { padding:80px 0; background:var(--forest); }
.section-dark   { padding:80px 0; background:var(--forest-mid); }

/* ── DIVIDER ── */
.stitch-divider {
  border:none;
  border-top:1px dashed var(--border);
  margin:0;
  opacity:0.6;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
  position:static;
  background:var(--forest);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.header-bar {
  background:var(--forest-lite);
  font-size:12px;
  color:rgba(255,255,255,0.6);
  padding:5px 24px;
}
.header-bar-inner {
  max-width:1140px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:16px;
}
.header-bar a { color:rgba(255,255,255,0.6); transition:color var(--trans); }
.header-bar a:hover { color:var(--gold-lite); }
.hb-spacer { flex:1; }
.hb-phone { color:var(--gold-lite) !important; font-weight:500; }

.nav-inner {
  display:flex;
  align-items:center;
  height:60px;
  gap:6px;
}
.nav-logo {
  font-family:var(--font-display);
  font-size:19px;
  font-weight:700;
  color:var(--white);
  letter-spacing:-0.01em;
  margin-right:auto;
  white-space:nowrap;
}
.nav-logo span { color:var(--gold); }

.nav-links {
  display:flex;
  align-items:center;
  gap:2px;
}
.nav-links > li { position:relative; }
.nav-links > li > a {
  display:block;
  padding:8px 13px;
  font-size:13.5px;
  font-weight:500;
  color:rgba(255,255,255,0.78);
  border-radius:var(--radius);
  transition:all var(--trans);
}
.nav-links > li > a:hover { color:var(--white); background:rgba(255,255,255,0.07); }

.nav-dropdown {
  display:none;
  position:absolute;
  top:100%;
  left:0;
  padding-top:6px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  min-width:230px;
  z-index:200;
  overflow:hidden;
}
.nav-dropdown li a {
  display:block;
  padding:10px 18px;
  font-size:13.5px;
  color:var(--ink);
  border-bottom:1px solid var(--linen-dark);
  transition:all var(--trans);
}
.nav-dropdown li:last-child a { border-bottom:none; }
.nav-dropdown li a:hover { background:var(--linen); color:var(--forest); padding-left:24px; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display:block; }

.nav-cta {
  background:var(--gold) !important;
  color:var(--forest) !important;
  font-weight:600 !important;
  padding:8px 18px !important;
  margin-left:6px;
}
.nav-cta:hover { background:var(--gold-lite) !important; }

.hamburger {
  display:none;
  background:none;
  border:none;
  color:var(--white);
  font-size:22px;
  cursor:pointer;
  padding:4px;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  /* IMAGE PROMPT: hero-bg.jpg
     Prompt: "Close-up macro photograph of embroidered patches on dark fabric,
     golden and crimson thread textures, military crest and letter patches
     arranged on aged denim, shallow depth of field, moody studio lighting,
     high quality product photography, dark green and golden color palette" */
  background:url('../images/hero-bg.jpg') center/cover no-repeat, var(--forest);
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, rgba(26,46,34,0.90) 0%, rgba(26,46,34,0.72) 55%, rgba(26,46,34,0.50) 100%);
}
.hero-content {
  position:relative;
  z-index:2;
  width:100%;
  padding:90px 24px;
  max-width:1140px;
  margin:0 auto;
}
.hero-eyebrow {
  font-size:11px;
  font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold-lite);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-eyebrow::before {
  content:'';
  display:block;
  width:32px;
  height:1px;
  background:var(--gold);
}
.hero h1 { color:var(--white); max-width:720px; margin-bottom:20px; }
.hero h1 em { color:var(--gold-lite); font-style:normal; display:block; }
.hero-sub {
  font-size:16px;
  color:rgba(255,255,255,0.72);
  max-width:540px;
  margin-bottom:36px;
  line-height:1.7;
}
.hero-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.hero-friction {
  font-size:12px;
  color:rgba(255,255,255,0.4);
  margin-bottom:48px;
}
.hero-stats {
  display:flex;
  gap:36px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:28px;
  margin-top:8px;
}
.hero-stat { }
.hero-stat-num {
  font-family:var(--font-display);
  font-size:28px;
  font-weight:700;
  color:var(--gold-lite);
  line-height:1;
}
.hero-stat-label {
  font-size:12px;
  color:rgba(255,255,255,0.5);
  margin-top:4px;
}

/* ═══════════════════════════════════════════════
   INTRO / VILLAIN SECTION
   ═══════════════════════════════════════════════ */
.intro-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.intro-text p { margin-bottom:20px; font-size:16px; }
.intro-text .punch {
  font-family:var(--font-display);
  font-size:22px;
  font-weight:600;
  color:var(--forest);
  font-style:italic;
  margin:24px 0 !important;
  line-height:1.4;
}
.intro-tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-content:flex-start;
}
.tag {
  display:inline-block;
  padding:5px 13px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.04em;
  border:1px solid var(--border);
  border-radius:2px;
  color:var(--forest);
  background:var(--white);
  transition:all var(--trans);
}
.tag:hover { background:var(--forest); color:var(--white); border-color:var(--forest); }

/* ═══════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════ */
.service-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:32px;
}
.service-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  transition:all var(--trans);
  position:relative;
  overflow:hidden;
}
.service-card::before {
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--trans);
}
.service-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--gold); }
.service-card:hover::before { transform:scaleX(1); }
.service-card-icon { font-size:26px; margin-bottom:14px; }
.service-card h3 { font-size:17px; margin-bottom:10px; }
.service-card p { font-size:13.5px; margin-bottom:14px; }
.service-card-price { font-size:13px; font-weight:500; color:var(--ink); margin-bottom:16px; }
.service-card-price strong { color:var(--forest); }
.service-card-link {
  font-size:12.5px;
  font-weight:600;
  color:var(--gold);
  letter-spacing:0.06em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:gap var(--trans);
}
.service-card-link:hover { gap:10px; }

.more-patch-links {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:22px 28px;
  background:var(--linen);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  align-items:center;
}
.more-patch-links .label {
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-right:6px;
}
.more-patch-links a {
  font-size:13px;
  font-weight:500;
  color:var(--forest);
  padding:5px 14px;
  border:1px solid var(--border);
  border-radius:20px;
  background:var(--white);
  transition:all var(--trans);
}
.more-patch-links a:hover { background:var(--forest); color:var(--white); border-color:var(--forest); }

/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
.process-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  position:relative;
}
.process-grid::before {
  content:'';
  position:absolute;
  top:36px;
  left:calc(12.5% + 12px);
  right:calc(12.5% + 12px);
  height:1px;
  background:var(--border);
  z-index:0;
}
.process-step {
  padding:0 20px 0 0;
  position:relative;
  z-index:1;
}
.process-num {
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--white);
  border:2px solid var(--gold);
  border-radius:50%;
  font-family:var(--font-display);
  font-size:18px;
  font-weight:700;
  color:var(--gold);
  margin-bottom:18px;
}
.process-step h3 { font-size:16px; margin-bottom:10px; }
.process-step p  { font-size:13.5px; }

/* ═══════════════════════════════════════════════
   FABRIC GUIDE / WHY US
   ═══════════════════════════════════════════════ */
.why-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.why-item {
  padding:28px 24px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
  transition:all var(--trans);
}
.why-item:hover { background:rgba(255,255,255,0.09); border-color:rgba(184,150,46,0.4); }
.why-num {
  font-family:var(--font-display);
  font-size:34px;
  font-weight:700;
  color:var(--gold);
  opacity:0.45;
  line-height:1;
  margin-bottom:12px;
}
.why-item h3 { font-size:15px; color:var(--white); margin-bottom:10px; }
.why-item p  { font-size:13.5px; color:rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════
   WHO USES
   ═══════════════════════════════════════════════ */
.who-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.who-card {
  padding:24px 22px;
  background:var(--white);
  border-left:3px solid var(--gold);
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  transition:all var(--trans);
}
.who-card:hover { background:var(--gold-pale); }
.who-icon { font-size:24px; display:block; margin-bottom:12px; }
.who-card h3 { font-size:15px; margin-bottom:8px; }
.who-card p  { font-size:13.5px; }

/* ═══════════════════════════════════════════════
   BACKING OPTIONS (inline table)
   ═══════════════════════════════════════════════ */
.backing-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.backing-card {
  text-align:center;
  padding:24px 16px;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  background:var(--white);
  transition:all var(--trans);
}
.backing-card:hover { box-shadow:var(--shadow); border-color:var(--gold); }
.backing-icon { font-size:28px; display:block; margin-bottom:12px; }
.backing-card h3 { font-size:15px; margin-bottom:8px; }
.backing-card p  { font-size:12.5px; margin-bottom:10px; }
.backing-tag {
  display:inline-block;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(184,150,46,0.3);
  background:var(--gold-pale);
  padding:3px 10px;
  border-radius:20px;
}

/* ═══════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════ */
.cs-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.cs-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.cs-tag {
  font-size:10px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
}
.cs-card h3 { font-size:16px; }
.cs-card p  { font-size:13.5px; flex:1; }
.cs-outcomes {
  display:flex;
  flex-direction:column;
  gap:5px;
  padding-top:14px;
  border-top:1px solid var(--linen-dark);
}
.cs-outcomes span { font-size:12.5px; font-weight:600; color:var(--forest); }

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
.reviews-header { text-align:center; margin-bottom:48px; }
.star-line { font-size:22px; margin-bottom:8px; }
.star-line span { font-size:14px; color:var(--muted); font-family:var(--font-body); margin-left:8px; }
.reviews-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.review-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.review-stars { font-size:15px; }
.review-card blockquote {
  font-family:var(--font-display);
  font-size:15px;
  line-height:1.7;
  font-style:italic;
  color:var(--forest);
  border-left:2px solid var(--gold);
  padding-left:14px;
  flex:1;
}
.reviewer strong { font-size:13.5px; font-weight:600; color:var(--ink); display:block; }
.reviewer span   { font-size:12px; color:var(--muted); }

/* ═══════════════════════════════════════════════
   ABOUT / MANUFACTURING
   ═══════════════════════════════════════════════ */
.about-grid {
  display:grid;
  grid-template-columns:1fr 340px;
  gap:60px;
  align-items:start;
}
.about-text p { font-size:15px; margin-bottom:18px; }
.cert-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.cert-tag {
  font-size:11px;
  font-weight:600;
  color:var(--gold-lite);
  padding:5px 12px;
  background:rgba(184,150,46,0.1);
  border:1px solid rgba(184,150,46,0.2);
  border-radius:2px;
}
.stats-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.stat-box {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
  padding:22px 18px;
  text-align:center;
}
.stat-num {
  font-family:var(--font-display);
  font-size:34px;
  font-weight:700;
  color:var(--gold-lite);
  line-height:1;
  margin-bottom:6px;
}
.stat-label {
  font-size:11px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════════════ */
.cta-block { padding:90px 0; background:var(--forest); text-align:center; }
.cta-block h2 { color:var(--white); margin-bottom:48px; }
.cta-steps {
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:0;
  flex-wrap:wrap;
  margin-bottom:40px;
}
.cta-step {
  flex:1;
  min-width:180px;
  max-width:260px;
  padding:24px 20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
}
.cta-step-arrow {
  display:flex;
  align-items:center;
  padding:0 14px;
  font-size:20px;
  color:var(--gold);
  opacity:0.4;
  padding-top:36px;
}
.cta-step-num {
  font-family:var(--font-display);
  font-size:32px;
  font-weight:700;
  color:var(--gold);
  opacity:0.45;
  line-height:1;
  margin-bottom:10px;
}
.cta-step h3 { font-size:14px; color:var(--white); margin-bottom:8px; }
.cta-step p  { font-size:13px; color:rgba(255,255,255,0.55); }
.cta-tagline {
  font-family:var(--font-display);
  font-size:19px;
  font-style:italic;
  color:rgba(255,255,255,0.7);
  margin-bottom:28px;
}
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:18px; }
.cta-friction { font-size:12px; color:rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════
   FAQs
   ═══════════════════════════════════════════════ */
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.faq-item[open] { border-color:var(--gold); }
.faq-item summary {
  padding:17px 22px;
  font-family:var(--font-display);
  font-size:17px;
  font-weight:600;
  color:var(--forest);
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  user-select:none;
}
.faq-item summary::after { content:'+'; font-family:var(--font-body); font-size:20px; color:var(--gold); font-weight:300; }
.faq-item[open] summary::after { content:'−'; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item-body {
  padding:0 22px 20px;
  font-size:14px;
  color:var(--muted);
  line-height:1.75;
}
.faq-item-body p { margin-bottom:10px; font-size:14px; }
.faq-item-body p:last-child { margin-bottom:0; }

/* ═══════════════════════════════════════════════
   FABRIC TABLE (service pages)
   ═══════════════════════════════════════════════ */
.fabric-table { width:100%; border-collapse:collapse; margin:24px 0; }
.fabric-table th {
  background:var(--forest);
  color:var(--white);
  font-family:var(--font-body);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  padding:12px 16px;
  text-align:left;
}
.fabric-table td { padding:12px 16px; font-size:13.5px; border-bottom:1px solid var(--linen-dark); }
.fabric-table tr:last-child td { border-bottom:none; }
.fabric-table tr:nth-child(even) td { background:var(--linen); }
.fabric-ok   { color:#1A7A3A; font-weight:600; }
.fabric-warn { color:#A05C00; font-weight:600; }
.fabric-no   { color:var(--red); font-weight:600; }

/* ═══════════════════════════════════════════════
   WARN CALLOUT
   ═══════════════════════════════════════════════ */
.warn-box {
  background:#FFFBEB;
  border:1px solid #E9C46A;
  border-left:4px solid #E9C46A;
  border-radius:var(--radius);
  padding:16px 20px;
  font-size:13.5px;
  color:#7C5C00;
  line-height:1.7;
  margin:24px 0;
}

/* ═══════════════════════════════════════════════
   INTERNAL LINK CARDS
   ═══════════════════════════════════════════════ */
.related-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.related-card {
  padding:18px 16px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--white);
  font-size:13.5px;
  font-weight:500;
  color:var(--forest);
  display:flex;
  align-items:center;
  gap:10px;
  transition:all var(--trans);
}
.related-card:hover { background:var(--forest); color:var(--white); border-color:var(--forest); }
.related-card span { font-size:18px; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer { background:var(--forest-mid); padding:56px 0 0; }
.footer-grid {
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family:var(--font-display);
  font-size:19px;
  font-weight:700;
  color:var(--white);
  margin-bottom:14px;
}
.footer-logo span { color:var(--gold); }
.footer-desc { font-size:13.5px; color:rgba(255,255,255,0.55); line-height:1.75; margin-bottom:16px; }
.footer-stars { font-size:13.5px; color:rgba(255,255,255,0.5); }
.footer-col h4 {
  font-family:var(--font-body);
  font-size:10px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-lite);
  margin-bottom:16px;
}
.footer-col ul { display:flex; flex-direction:column; gap:8px; }
.footer-col ul a { font-size:13.5px; color:rgba(255,255,255,0.6); transition:color var(--trans); }
.footer-col ul a:hover { color:var(--gold-lite); }
.footer-col p { font-size:13.5px; color:rgba(255,255,255,0.6); margin-bottom:6px; }
.footer-bottom {
  padding:18px 24px;
  text-align:center;
  font-size:11.5px;
  color:rgba(255,255,255,0.3);
}
.footer-bottom a { color:rgba(255,255,255,0.4); }
.footer-bottom a:hover { color:var(--gold-lite); }

/* ═══════════════════════════════════════════════
   STICKY POPUP
   ═══════════════════════════════════════════════ */
.sticky-popup {
  position:fixed;
  bottom:0; left:0; right:0;
  background:var(--forest);
  border-top:2px solid var(--gold);
  padding:13px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  z-index:999;
  transform:translateY(100%);
  transition:transform 0.35s ease;
  box-shadow:0 -4px 24px rgba(0,0,0,0.2);
}
.sticky-popup.visible { transform:translateY(0); }
.popup-text strong { font-size:13.5px; color:var(--white); display:block; }
.popup-text span   { font-size:12px; color:rgba(255,255,255,0.55); }
.popup-close {
  background:none; border:none; color:rgba(255,255,255,0.4);
  font-size:22px; cursor:pointer; padding:4px 8px; line-height:1;
  transition:color var(--trans);
}
.popup-close:hover { color:var(--white); }

/* ═══════════════════════════════════════════════
   SERVICE PAGE — HERO (smaller)
   ═══════════════════════════════════════════════ */
.page-hero {
  background:var(--forest);
  padding:64px 0 52px;
  position:relative;
  overflow:hidden;
  /* Each service page adds a unique bg-image class below */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
/* Dark overlay so text stays readable over any image */
.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    110deg,
    rgba(26,46,34,0.88) 0%,
    rgba(26,46,34,0.78) 55%,
    rgba(26,46,34,0.60) 100%
  );
  z-index:0;
}
/* Ensure content sits above overlay */
.page-hero .container { position:relative; z-index:1; }
.page-hero::after {
  content:'';
  position:absolute;
  right:-60px; top:-60px;
  width:320px; height:320px;
  border-radius:50%;
  background:rgba(184,150,46,0.04);
  z-index:0;
}

/* ── SERVICE PAGE BACKGROUND IMAGES ── */
.hero-iron-on      { background-image: url('../images/hero-iron-on.jpg'),      linear-gradient(var(--forest),var(--forest)); }
.hero-embroidered  { background-image: url('../images/hero-embroidered.jpg'),  linear-gradient(var(--forest),var(--forest)); }
.hero-velcro       { background-image: url('../images/hero-velcro.jpg'),       linear-gradient(var(--forest),var(--forest)); }
.hero-pvc          { background-image: url('../images/hero-pvc.jpg'),          linear-gradient(var(--forest),var(--forest)); }
.hero-chenille     { background-image: url('../images/hero-chenille.jpg'),     linear-gradient(var(--forest),var(--forest)); }
.hero-name-patches { background-image: url('../images/hero-name-patches.jpg'), linear-gradient(var(--forest),var(--forest)); }
.hero-woven        { background-image: url('../images/hero-woven.jpg'),        linear-gradient(var(--forest),var(--forest)); }
.hero-printed      { background-image: url('../images/hero-printed.jpg'),      linear-gradient(var(--forest),var(--forest)); }
.page-hero .breadcrumb {
  font-size:12px;
  color:rgba(255,255,255,0.4);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:8px;
}
.page-hero .breadcrumb a { color:rgba(255,255,255,0.5); transition:color var(--trans); }
.page-hero .breadcrumb a:hover { color:var(--gold-lite); }
.page-hero h1 { color:var(--white); font-size:clamp(30px,4vw,52px); max-width:680px; margin-bottom:16px; }
.page-hero p  { color:rgba(255,255,255,0.65); font-size:15px; max-width:560px; margin-bottom:28px; }
.page-hero-badges {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.page-badge {
  font-size:12px;
  font-weight:500;
  color:rgba(255,255,255,0.8);
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:20px;
  padding:5px 14px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width:1024px) {
  .service-grid  { grid-template-columns:repeat(2,1fr); }
  .process-grid  { grid-template-columns:repeat(2,1fr); }
  .process-grid::before { display:none; }
  .why-grid      { grid-template-columns:repeat(2,1fr); }
  .cs-grid       { grid-template-columns:1fr; }
  .about-grid    { grid-template-columns:1fr; }
  .stats-grid    { grid-template-columns:repeat(4,1fr); }
  .footer-grid   { grid-template-columns:1fr 1fr; }
  .related-grid  { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:block; }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:absolute; top:100%; left:0; right:0;
    background:var(--forest); padding:10px 0; z-index:200;
  }
  .nav-links.open .has-dropdown .nav-dropdown {
    position:static; box-shadow:none; border:none;
    background:rgba(0,0,0,0.2); border-radius:0;
  }
  .hero { min-height:520px; }
  .hero h1 { font-size:34px; }
  .intro-grid { grid-template-columns:1fr; gap:32px; }
  .service-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .who-grid  { grid-template-columns:1fr; }
  .why-grid  { grid-template-columns:1fr; }
  .backing-grid  { grid-template-columns:repeat(2,1fr); }
  .reviews-grid  { grid-template-columns:1fr; }
  .footer-grid   { grid-template-columns:1fr; }
  .stats-grid    { grid-template-columns:1fr 1fr; }
  .hero-actions  { flex-direction:column; }
  .hero-stats    { gap:24px; }
  .cta-steps     { flex-direction:column; align-items:center; }
  .cta-step-arrow { display:none; }
  .cta-buttons   { flex-direction:column; align-items:center; }
  .header-bar    { display:none; }
  .section-linen,.section-white,.section-forest,.section-dark { padding:52px 0; }
  h2 { font-size:26px; margin-bottom:24px; }
  .popup-text span { display:none; }
}
@media (max-width:480px) {
  .backing-grid { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr 1fr; }
  .trust-strip  { gap:14px 20px; }
  .trust-badge  { font-size:12px; padding:0; }
  .trust-badge .icon { width:20px; height:20px; font-size:12px; }
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { transition:none !important; animation:none !important; }
}

/* ============================================================
   2026 PREMIUM MANUFACTURING OVERRIDES
   CSS-only conversion pass: modern, industrial, conversion-focused
   ============================================================ */
:root {
  --forest:      #111111;
  --forest-mid:  #111111;
  --forest-lite: #1B1B1B;
  --gold:        #C89B3C;
  --gold-lite:   #D6AD55;
  --gold-pale:   #F6F0E4;
  --linen:       #F8F8F8;
  --linen-dark:  #F1F2F4;
  --red:         #B42318;
  --white:       #FFFFFF;
  --ink:         #111111;
  --muted:       #5E5E5E;
  --border:      #E5E7EB;

  --font-display: 'Archivo', 'Manrope', Inter, system-ui, sans-serif;
  --font-body:    'Manrope', Inter, system-ui, sans-serif;

  --radius:    10px;
  --radius-lg: 12px;
  --shadow:    0 1px 2px rgba(17,17,17,0.05);
  --shadow-md: 0 16px 40px rgba(17,17,17,0.08);
  --trans:     0.18s ease;
}

body {
  background:#F8F8F8;
  color:var(--ink);
  font-weight:500;
  letter-spacing:0;
}

.container {
  max-width:1200px;
  padding:0 28px;
}

h1,h2,h3,h4,
.nav-logo,
.footer-logo,
.process-num,
.why-num,
.stat-num,
.cta-step-num,
.review-card blockquote,
.cta-tagline {
  font-family:var(--font-display);
  letter-spacing:0;
}

h1 {
  font-size:clamp(42px,5vw,72px);
  font-weight:800;
  line-height:0.98;
}

h2 {
  font-size:clamp(32px,3.6vw,54px);
  font-weight:800;
  line-height:1.02;
  color:#111111;
  letter-spacing:-0.02em;
  margin-bottom:44px;
}

h3 {
  font-size:20px;
  font-weight:800;
  color:#111111;
}

p {
  color:#5E5E5E;
  font-size:16px;
  line-height:1.75;
}

.care-label {
  color:#16A34A;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.16em;
  margin-bottom:18px;
}

.care-label::before,
.care-label::after {
  width:34px;
  background:#E5E7EB;
}

.btn {
  border-radius:10px;
  min-height:48px;
  padding:14px 28px;
  font-size:14px;
  font-weight:800;
  letter-spacing:0;
  box-shadow:none;
}

.btn-gold,
.nav-cta {
  background:#16A34A !important;
  color:#FFFFFF !important;
  border:1px solid #16A34A !important;
}

.btn-gold:hover,
.nav-cta:hover {
  background:#15803D !important;
  border-color:#15803D !important;
  color:#FFFFFF !important;
  transform:translateY(-1px);
  box-shadow:none !important;
}

.btn-outline {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.34);
  color:#FFFFFF;
}

.btn-outline:hover {
  background:#FFFFFF;
  border-color:#FFFFFF;
  color:#111111;
}

.btn-ghost {
  border:1px solid #D1D5DB;
  background:#FFFFFF;
  color:#111111;
}

.btn-ghost:hover {
  background:#111111;
  border-color:#111111;
  color:#FFFFFF;
}

.btn-lg {
  min-height:56px;
  padding:16px 32px;
  font-size:15px;
}

.section-linen,
.section-white {
  padding:104px 0;
}

.section-linen {
  background:#F8F8F8;
}

.section-white {
  background:#FFFFFF;
}

.section-forest,
.section-dark {
  padding:104px 0;
  background:#111111;
}

.site-header {
  background:#FFFFFF;
  border-bottom:1px solid #E5E7EB;
}

.header-bar {
  background:#F8F8F8;
  color:#5E5E5E;
  border-bottom:1px solid #E5E7EB;
}

.header-bar a,
.hb-phone {
  color:#111111 !important;
}

.header-bar a:hover {
  color:#16A34A !important;
}

.nav-inner {
  height:72px;
}

.nav-logo {
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.03em;
}

.nav-logo span,
.footer-logo span {
  color:#C89B3C;
}

.nav-logo {
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  overflow:hidden;
}

.nav-logo img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.footer-logo {
  display:block;
  width:132px;
  max-width:100%;
  padding:0;
  background:transparent;
  border-radius:0;
  overflow:hidden;
}

.footer-logo img {
  width:100%;
  height:auto;
}

.nav-links > li > a {
  padding:10px 9px;
  font-size:13px;
  font-weight:800;
  color:#111111;
}

.nav-links > li > a.nav-cta {
  padding:11px 16px !important;
}

.nav-links > li > a:hover {
  color:#16A34A;
  background:#F0FDF4;
}

.hamburger {
  color:#111111;
}

.nav-dropdown {
  min-width:270px;
  padding-top:10px;
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  border-radius:12px;
  box-shadow:0 20px 50px rgba(17,17,17,0.14);
}

.nav-dropdown li a {
  padding:14px 18px;
  color:#111111;
  font-size:14px;
  font-weight:700;
  border-bottom:1px solid #F1F2F4;
}

.nav-dropdown li a:hover {
  background:#F8F8F8;
  color:#16A34A;
  padding-left:22px;
}

.hero {
  min-height:720px;
  background-color:#111111;
  background-image:url('../images/hero-bg.jpg');
  background-size:cover;
  background-position:center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17,17,17,0.96) 0%, rgba(17,17,17,0.88) 39%, rgba(17,17,17,0.58) 68%, rgba(17,17,17,0.46) 100%),
    radial-gradient(circle at 78% 48%, rgba(200,155,60,0.16), transparent 34%);
}

.hero-content {
  max-width:1200px;
  padding:126px 28px 112px;
}

.hero-eyebrow {
  color:#C89B3C;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.14em;
  margin-bottom:22px;
}

.hero-eyebrow::before {
  width:38px;
  background:#16A34A;
}

.hero h1 {
  max-width:690px;
  color:#FFFFFF;
  margin-bottom:24px;
  letter-spacing:-0.04em;
}

.hero h1 em {
  color:#FFFFFF;
  opacity:0.86;
}

.hero-sub {
  max-width:620px;
  color:rgba(255,255,255,0.76);
  font-size:18px;
  line-height:1.7;
  margin-bottom:34px;
}

.hero-actions {
  gap:16px;
  margin-bottom:0;
}

.hero-friction {
  color:rgba(255,255,255,0.48);
  font-size:13px;
  margin-top:12px;
  margin-bottom:36px;
}

.trust-strip {
  gap:24px 34px;
  margin-top:32px;
  padding-top:0;
}

.trust-badge {
  color:#FFFFFF;
  font-size:14px;
  font-weight:800;
}

.trust-badge .icon {
  width:22px;
  height:22px;
  background:#16A34A;
  color:#FFFFFF;
  font-size:13px;
}

.hero-stats {
  display:none;
}

.hero-stat-num {
  font-family:var(--font-display);
  color:#FFFFFF;
  font-size:30px;
  font-weight:800;
}

.hero-stat-label {
  color:rgba(255,255,255,0.56);
  font-weight:700;
}

.intro-grid {
  gap:72px;
}

.intro-text p {
  font-size:17px;
  line-height:1.85;
}

.intro-text .punch {
  font-family:var(--font-display);
  font-size:26px;
  font-style:normal;
  font-weight:800;
  color:#111111;
}

.tag {
  border-radius:999px;
  border:1px solid #E5E7EB;
  background:#FFFFFF;
  color:#111111;
  padding:9px 15px;
  font-size:12px;
  font-weight:800;
}

.tag:hover {
  background:#111111;
  border-color:#111111;
  color:#FFFFFF;
}

.service-grid,
.why-grid,
.who-grid,
.cs-grid,
.reviews-grid {
  gap:24px;
}

.service-card,
.why-item,
.who-card,
.backing-card,
.cs-card,
.review-card,
.faq-item,
.related-card {
  border:1px solid #E5E7EB;
  border-radius:12px;
  box-shadow:none;
}

.service-card {
  padding:34px 30px;
  background:#FFFFFF;
}

.service-card::before {
  height:4px;
  background:#16A34A;
}

.service-card:hover,
.backing-card:hover {
  transform:translateY(-2px);
  border-color:#D1D5DB;
  box-shadow:0 14px 34px rgba(17,17,17,0.07);
}

.service-card-icon,
.who-icon,
.backing-icon,
.related-card span {
  filter:grayscale(1);
}

.service-card h3,
.who-card h3,
.backing-card h3,
.process-step h3,
.cs-card h3 {
  color:#111111;
}

.service-card p,
.who-card p,
.backing-card p,
.process-step p,
.cs-card p {
  color:#5E5E5E;
}

.service-card-price strong,
.cs-outcomes span {
  color:#16A34A;
}

.service-card-link {
  color:#16A34A;
  font-weight:800;
  letter-spacing:0.02em;
}

.more-patch-links {
  border:1px solid #E5E7EB;
  background:#FFFFFF;
  border-radius:12px;
  padding:26px 30px;
}

.more-patch-links a {
  border-color:#E5E7EB;
  color:#111111;
  border-radius:999px;
  padding:8px 14px;
  font-weight:800;
}

.more-patch-links a:hover,
.related-card:hover {
  background:#111111;
  border-color:#111111;
  color:#FFFFFF;
}

.process-grid::before {
  background:#E5E7EB;
}

.process-num {
  background:#111111;
  border:0;
  color:#FFFFFF;
  border-radius:12px;
}

.section-forest .care-label,
.section-dark .care-label,
.text-light .care-label {
  color:#C89B3C;
}

.why-item {
  background:rgba(255,255,255,0.04);
  border-color:rgba(255,255,255,0.10);
}

.why-item:hover {
  background:rgba(255,255,255,0.07);
  border-color:rgba(255,255,255,0.18);
}

.why-num {
  color:#16A34A;
  opacity:1;
}

.why-item h3 {
  color:#FFFFFF;
}

.why-item p {
  color:rgba(255,255,255,0.68);
}

.who-card {
  border-left:1px solid #E5E7EB;
  background:#FFFFFF;
}

.who-card:hover {
  background:#F8F8F8;
}

.backing-tag,
.cs-tag {
  color:#16A34A;
  background:#ECFDF3;
  border-color:#BBF7D0;
}

.review-card blockquote {
  font-family:var(--font-body);
  font-style:normal;
  color:#111111;
  border-left:3px solid #16A34A;
}

.review-stars,
.star-line {
  color:#C89B3C;
}

.about-text p {
  font-size:16px;
  color:rgba(255,255,255,0.70);
}

.cert-tag {
  color:#FFFFFF;
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.12);
  border-radius:999px;
}

.stat-box,
.cta-step {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:12px;
}

.stat-num,
.cta-step-num {
  color:#16A34A;
  opacity:1;
}

.cta-block {
  background:#111111;
  padding:112px 0;
}

.cta-block h2 {
  color:#FFFFFF;
}

.cta-step h3 {
  color:#FFFFFF;
}

.cta-step p,
.cta-friction {
  color:rgba(255,255,255,0.62);
}

.cta-tagline {
  font-family:var(--font-body);
  font-style:normal;
  color:rgba(255,255,255,0.74);
}

.faq-item summary {
  font-family:var(--font-display);
  color:#111111;
  font-weight:800;
}

.faq-item[open] {
  border-color:#16A34A;
}

.faq-item summary::after {
  color:#16A34A;
}

.fabric-table th {
  background:#111111;
}

.fabric-table tr:nth-child(even) td {
  background:#F8F8F8;
}

.fabric-ok {
  color:#16A34A;
}

.warn-box {
  background:#FFFBEB;
  border-color:#F2D27C;
  border-left-color:#C89B3C;
  color:#6B4E00;
}

.site-footer {
  background:#111111;
}

.footer-col h4 {
  color:#C89B3C;
}

.footer-col ul a:hover,
.footer-bottom a:hover {
  color:#FFFFFF;
}

.sticky-popup {
  background:#111111;
  border-top:1px solid rgba(255,255,255,0.12);
  box-shadow:0 -12px 40px rgba(0,0,0,0.22);
}

.page-hero {
  background-color:#111111;
  padding:92px 0 82px;
}

.page-hero::before {
  background:linear-gradient(90deg, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.82) 54%, rgba(17,17,17,0.58) 100%);
}

.page-hero::after {
  display:none;
}

.page-hero .breadcrumb {
  color:rgba(255,255,255,0.48);
}

.page-hero h1 {
  color:#FFFFFF;
  font-size:clamp(38px,4.4vw,64px);
  font-weight:800;
  letter-spacing:-0.04em;
  max-width:820px;
}

.page-hero p {
  color:rgba(255,255,255,0.74);
  font-size:18px;
  max-width:680px;
}

.page-badge {
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:#FFFFFF;
  border-radius:999px;
  padding:7px 13px;
  font-weight:800;
}

@media (max-width:768px) {
  .container { padding:0 22px; }
  .nav-inner { height:64px; }
  .nav-links.open {
    background:#FFFFFF;
    border-top:1px solid #E5E7EB;
    box-shadow:0 18px 40px rgba(17,17,17,0.12);
    align-items:stretch;
    text-align:left;
    gap:0;
    padding:14px 22px 18px;
  }
  .nav-links.open > li > a {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    border-radius:10px;
    padding:14px 16px;
    color:#111111;
    background:transparent;
  }
  .nav-links.open > li > a:hover {
    background:#F0FDF4;
    color:#16A34A;
  }
  .nav-links.open .has-dropdown .nav-dropdown {
    display:block;
    position:static;
    max-height:0;
    opacity:0;
    transform:translateY(-6px);
    pointer-events:none;
    background:#FFFFFF;
    border:1px solid #E5E7EB;
    border-radius:12px;
    margin:0 0 10px;
    padding-top:0;
    overflow:hidden;
    transition:max-height 0.28s ease, opacity 0.2s ease, transform 0.28s ease;
  }
  .nav-links.open .has-dropdown:hover .nav-dropdown,
  .nav-links.open .has-dropdown:focus-within .nav-dropdown {
    max-height:520px;
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-links.open .nav-dropdown li a {
    display:block;
    width:100%;
    color:#111111;
    border-bottom:1px solid #E5E7EB;
    background:transparent;
    padding:14px 16px;
  }
  .nav-links.open .nav-dropdown li a:hover {
    color:#16A34A;
    background:#F0FDF4;
    padding-left:22px;
  }
  .nav-links.open .nav-cta {
    display:flex;
    justify-content:center;
    width:100%;
    margin:10px 0 0;
    color:#FFFFFF !important;
    background:#16A34A !important;
  }
  .hero {
    min-height:620px;
    background-position:center;
  }
  .hero-overlay {
    background:linear-gradient(180deg, rgba(17,17,17,0.94), rgba(17,17,17,0.76));
  }
  .hero-content {
    padding:92px 22px 74px;
  }
  .hero h1 { font-size:42px; }
  .hero-sub { font-size:16px; }
  .section-linen,
  .section-white,
  .section-forest,
  .section-dark {
    padding:72px 0;
  }
  .service-card,
  .why-item,
  .who-card,
  .backing-card,
  .cs-card,
  .review-card {
    padding:28px 22px;
  }
}

@media (max-width:480px) {
  h1 { font-size:40px; }
  h2 { font-size:31px; }
  .hero h1 { font-size:38px; }
  .btn,
  .btn-lg {
    width:100%;
    justify-content:center;
  }
  .trust-strip {
    gap:14px 18px;
  }
}

/* ============================================================
   QUOTE FORM PAGE
   ============================================================ */
.quote-page {
  background:#F8F8F8;
}

.quote-hero {
  background:#111111;
  color:#FFFFFF;
  padding:74px 0 46px;
  text-align:center;
}

.quote-kicker {
  color:#16A34A;
  font-size:13px;
  font-weight:800;
  letter-spacing:0.16em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.quote-hero h1 {
  color:#FFFFFF;
  font-size:clamp(38px,4.8vw,64px);
  margin-bottom:14px;
}

.quote-hero p {
  max-width:760px;
  margin:0 auto;
  color:rgba(255,255,255,0.72);
  font-size:18px;
}

.quote-trust-row {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px 24px;
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.12);
}

.quote-trust-row span {
  color:#FFFFFF;
  font-size:13px;
  font-weight:800;
}

.quote-trust-row span::before {
  content:'';
  display:inline-block;
  width:8px;
  height:8px;
  margin-right:9px;
  border-radius:50%;
  background:#16A34A;
}

.quote-section {
  padding:48px 0 92px;
}

.quote-layout {
  display:grid;
  grid-template-columns:minmax(0,680px) minmax(300px,1fr);
  gap:36px;
  align-items:start;
}

.quote-form {
  display:flex;
  flex-direction:column;
  gap:18px;
}

.quote-card,
.quote-aside-card {
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  border-radius:12px;
  box-shadow:0 1px 2px rgba(17,17,17,0.04);
}

.quote-card {
  padding:24px;
}

.quote-card-head {
  margin-bottom:18px;
}

.quote-card h2,
.quote-aside-card h2 {
  font-size:18px;
  line-height:1.25;
  margin:0 0 6px;
  letter-spacing:0;
}

.quote-card p,
.quote-aside-card p {
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.quote-tabs,
.quote-choice-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}

.quote-size-grid {
  grid-template-columns:repeat(6,1fr);
}

.quote-tabs label,
.quote-choice-grid label {
  cursor:pointer;
}

.quote-tabs input,
.quote-choice-grid input {
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.quote-tabs span,
.quote-choice-grid span {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px;
  border:1px solid #E5E7EB;
  border-radius:8px;
  background:#FFFFFF;
  color:#111111;
  font-size:13px;
  font-weight:800;
  transition:background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.quote-tabs input:checked + span,
.quote-choice-grid input:checked + span,
.quote-tabs span:hover,
.quote-choice-grid span:hover {
  background:#16A34A;
  border-color:#16A34A;
  color:#FFFFFF;
}

.quote-note {
  margin-top:12px !important;
  color:#6B7280;
  font-size:12px !important;
}

.quote-field {
  display:flex;
  flex-direction:column;
  gap:7px;
}

.quote-field label {
  color:#111111;
  font-size:13px;
  font-weight:800;
}

.quote-field input,
.quote-field textarea,
.quote-field select {
  width:100%;
  border:1px solid #E5E7EB;
  border-radius:8px;
  background:#FFFFFF;
  color:#111111;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:600;
  padding:13px 14px;
  outline:none;
  transition:border-color 0.18s ease, box-shadow 0.18s ease;
}

.quote-field input:focus,
.quote-field textarea:focus,
.quote-field select:focus {
  border-color:#16A34A;
  box-shadow:0 0 0 3px rgba(22,163,74,0.12);
}

.quote-fields-2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.quote-option-list {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.quote-option {
  display:grid;
  grid-template-columns:20px 1fr;
  gap:12px;
  padding:16px;
  border:1px solid #E5E7EB;
  border-radius:10px;
  cursor:pointer;
}

.quote-option:hover {
  border-color:#16A34A;
  background:#F0FDF4;
}

.quote-option input {
  accent-color:#16A34A;
  margin-top:3px;
}

.quote-option strong {
  display:block;
  color:#111111;
  font-size:14px;
  line-height:1.35;
  margin-bottom:4px;
}

.quote-option small {
  display:block;
  color:#5E5E5E;
  font-size:12.5px;
  line-height:1.55;
}

.quote-upload {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:132px;
  margin-bottom:18px;
  border:1.5px dashed #CBD5E1;
  border-radius:12px;
  background:#F8F8F8;
  text-align:center;
  cursor:pointer;
}

.quote-upload:hover {
  border-color:#16A34A;
  background:#F0FDF4;
}

.quote-upload input {
  display:none;
}

.quote-upload span {
  color:#111111;
  font-size:14px;
  font-weight:800;
}

.quote-upload small {
  color:#5E5E5E;
  font-size:12px;
  margin-top:5px;
}

.quote-check {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:18px 0;
  color:#111111;
  font-size:13px;
  font-weight:700;
}

.quote-check input {
  accent-color:#16A34A;
  margin-top:3px;
}

.quote-submit {
  width:auto;
}

.quote-aside {
  position:sticky;
  top:112px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.quote-aside-card {
  padding:24px;
}

.quote-aside-card strong {
  color:#111111;
}

.quote-bullets {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
}

.quote-bullets li {
  display:flex;
  gap:10px;
  color:#111111;
  font-size:14px;
  font-weight:700;
}

.quote-bullets li::before {
  content:'✓';
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  flex:0 0 20px;
  border-radius:50%;
  background:#16A34A;
  color:#FFFFFF;
  font-size:12px;
  font-weight:900;
}

.quote-help a {
  display:block;
  color:#16A34A;
  font-size:14px;
  font-weight:800;
  margin-top:10px;
}

.quote-guarantee {
  background:#111111;
  padding:78px 0;
  text-align:center;
}

.quote-guarantee h2 {
  color:#FFFFFF;
  max-width:760px;
  margin:0 auto 14px;
}

.quote-guarantee p {
  color:rgba(255,255,255,0.68);
  max-width:760px;
  margin:0 auto;
}

@media (max-width:1024px) {
  .quote-layout {
    grid-template-columns:1fr;
  }
  .quote-aside {
    position:static;
    display:grid;
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:768px) {
  .quote-hero {
    padding:54px 0 36px;
    text-align:left;
  }
  .quote-trust-row {
    justify-content:flex-start;
  }
  .quote-section {
    padding:28px 0 64px;
  }
  .quote-card {
    padding:20px;
  }
  .quote-tabs,
  .quote-choice-grid,
  .quote-size-grid,
  .quote-fields-2,
  .quote-aside {
    grid-template-columns:1fr;
  }
  .quote-tabs,
  .quote-choice-grid {
    gap:8px;
  }
  .quote-submit {
    width:100%;
  }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-page {
  background:#F8F8F8;
}

.pricing-hero {
  background:#111111;
  color:#FFFFFF;
  padding:82px 0;
}

.pricing-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:56px;
  align-items:center;
}

.pricing-hero h1 {
  color:#FFFFFF;
  margin-bottom:18px;
}

.pricing-hero p {
  max-width:720px;
  color:rgba(255,255,255,0.72);
  font-size:18px;
}

.pricing-hero-card {
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  border-radius:12px;
  padding:26px;
}

.pricing-hero-card strong {
  display:block;
  color:#111111;
  font-size:20px;
  font-weight:900;
  margin-bottom:8px;
}

.pricing-hero-card p {
  color:#5E5E5E;
  font-size:14px;
  margin-bottom:18px;
}

.pricing-content {
  padding:64px 0 96px;
}

.pricing-search-card {
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:34px;
  align-items:end;
  margin-bottom:28px;
}

.pricing-search-card h2 {
  margin-bottom:0;
}

.pricing-search {
  display:flex;
  flex-direction:column;
  gap:8px;
}

.pricing-search span {
  color:#111111;
  font-size:13px;
  font-weight:900;
}

.pricing-search input {
  width:100%;
  min-height:52px;
  border:1px solid #E5E7EB;
  border-radius:10px;
  background:#FFFFFF;
  color:#111111;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:700;
  padding:0 16px;
  outline:none;
}

.pricing-search input:focus {
  border-color:#16A34A;
  box-shadow:0 0 0 3px rgba(22,163,74,0.12);
}

.pricing-type-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  margin-bottom:48px;
}

.pricing-type-grid a {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:108px;
  padding:18px 12px;
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  border-radius:12px;
  text-align:center;
  transition:transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pricing-type-grid a:hover {
  transform:translateY(-2px);
  border-color:#16A34A;
  box-shadow:0 12px 30px rgba(17,17,17,0.06);
}

.pricing-type-grid span {
  color:#5E5E5E;
  font-size:11px;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.pricing-type-grid strong {
  color:#16A34A;
  font-size:22px;
  font-weight:900;
  margin-top:5px;
}

.pricing-type-grid small {
  color:#5E5E5E;
  font-size:11px;
  font-weight:700;
}

.pricing-block {
  scroll-margin-top:110px;
  margin-bottom:54px;
}

.pricing-block-head {
  margin-bottom:16px;
}

.pricing-block-head h2 {
  font-size:30px;
  margin-bottom:8px;
}

.pricing-block-head p {
  font-size:15px;
}

.pricing-tabs {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  padding:8px;
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  border-radius:12px;
  margin-bottom:24px;
}

.pricing-tabs span {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border:1px solid #E5E7EB;
  border-radius:8px;
  color:#111111;
  font-size:13px;
  font-weight:900;
  background:#FFFFFF;
  cursor:pointer;
  user-select:none;
  transition:background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.pricing-tabs span:hover {
  border-color:#16A34A;
  color:#16A34A;
}

.pricing-tabs .active {
  background:#16A34A;
  border-color:#16A34A;
  color:#FFFFFF;
}

.pricing-tabs .active:hover {
  color:#FFFFFF;
}

.leather-tabs {
  grid-template-columns:repeat(4,1fr);
}

.pricing-table-wrap {
  overflow:auto;
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  border-radius:12px;
  margin-bottom:22px;
}

.pricing-table-wrap[hidden] {
  display:none;
}

.pricing-table {
  width:100%;
  min-width:760px;
  border-collapse:collapse;
  color:#111111;
}

.pricing-table caption {
  caption-side:top;
  padding:22px 16px;
  color:#111111;
  font-size:18px;
  font-weight:900;
  text-align:center;
  background:#FFFFFF;
}

.pricing-table th,
.pricing-table td {
  padding:13px 16px;
  border-bottom:1px solid #E5E7EB;
  font-size:13px;
  font-weight:700;
  text-align:center;
  white-space:nowrap;
}

.pricing-table thead th {
  background:#F3F4F6;
  color:#111111;
  font-weight:900;
}

.pricing-table tbody th {
  color:#0F766E;
  text-align:left;
  font-weight:900;
}

.pricing-table tbody tr:nth-child(odd) {
  background:#ECFDF8;
}

.pricing-table tbody tr:nth-child(even) {
  background:#FFFFFF;
}

.pricing-table tbody tr:hover {
  background:#DCFCE7;
}

.pricing-cta {
  background:#111111;
  border-radius:16px;
  padding:44px;
  text-align:center;
}

.pricing-cta h2 {
  color:#FFFFFF;
  margin-bottom:12px;
}

.pricing-cta p {
  max-width:720px;
  margin:0 auto 24px;
  color:rgba(255,255,255,0.72);
}

@media (max-width:1024px) {
  .pricing-hero-grid,
  .pricing-search-card {
    grid-template-columns:1fr;
  }
  .pricing-type-grid {
    grid-template-columns:repeat(3,1fr);
  }
  .leather-tabs {
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px) {
  .pricing-hero {
    padding:56px 0;
  }
  .pricing-content {
    padding:42px 0 72px;
  }
  .pricing-type-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .pricing-tabs,
  .leather-tabs {
    grid-template-columns:1fr;
  }
  .pricing-table th,
  .pricing-table td {
    padding:11px 12px;
  }
  .pricing-cta {
    padding:32px 22px;
  }
}
