/* =====================================================
   DRED FRE — Asphalt Paving & Repair — Stylesheet
   Industrial graphite theme with road-marking accents
   ===================================================== */

:root {
  /* Asphalt / graphite base */
  --graphite-950: #101216;
  --graphite-900: #16191f;
  --graphite-850: #1b1f27;
  --graphite-800: #22262f;
  --graphite-700: #2e333d;
  --graphite-600: #3a4048;
  --concrete:     #6b7280;
  --smoke:        #9aa3b2;

  /* Road-marking accents */
  --safety:       #ff7a18;   /* safety orange */
  --safety-deep:  #e8620a;
  --road-yellow:  #ffc42e;   /* lane-marking yellow */
  --road-yellow-soft: #fff2cf;
  --amber-soft:   #ffe6cc;

  /* Surfaces */
  --bg:           #ffffff;
  --bg-alt:       #f3f4f6;
  --bg-deep:      #16191f;
  --surface:      #ffffff;
  --surface-alt:  #eef0f3;

  /* Text */
  --text:         #1b1f27;
  --text-soft:    #454b56;
  --text-muted:   #79808d;
  --text-invert:  #ffffff;

  --border:       #e0e3e8;
  --border-soft:  #edeff2;

  --radius:       10px;
  --radius-lg:    16px;
  --radius-pill:  50px;
  --shadow-sm:    0 2px 8px rgba(16, 18, 22, 0.08);
  --shadow:       0 10px 30px rgba(16, 18, 22, 0.14);
  --shadow-lg:    0 22px 54px rgba(16, 18, 22, 0.24);
  --transition:   0.25s ease;
  --max-width:    1200px;
  --font-head:    'Arial Narrow', 'Roboto Condensed', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--safety-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--safety); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--graphite-900);
}

/* ─── Utility ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head.left { text-align: left; margin-left: 0; }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 14px;
}
.section-title span { color: var(--safety); }

/* Road-marking underline — the signature motif */
.section-head .section-title::after {
  content: '';
  display: block;
  width: 74px;
  height: 5px;
  margin: 16px auto 0;
  background: repeating-linear-gradient(90deg, var(--road-yellow) 0 16px, transparent 16px 26px);
  border-radius: 2px;
}
.section-head.left .section-title::after { margin-left: 0; }

.section-sub {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--safety-deep);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary { background: var(--safety); color: #fff; }
.btn-primary:hover { background: var(--safety-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-teal { background: var(--road-yellow); color: var(--graphite-950); }
.btn-teal:hover { background: #ffb400; color: var(--graphite-950); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--graphite-900); border-color: var(--graphite-600); }
.btn-outline:hover { background: var(--graphite-900); color: #fff; transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--graphite-900); }
.btn-white:hover { background: var(--road-yellow-soft); color: var(--graphite-900); transform: translateY(-2px); }

/* ─── Top Bar ─── */
.topbar {
  background: var(--graphite-950);
  color: var(--smoke);
  font-size: 0.82rem;
  border-bottom: 3px solid transparent;
  border-image: repeating-linear-gradient(90deg, var(--road-yellow) 0 22px, var(--graphite-950) 22px 40px) 1;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a { color: #fff; }
.topbar a:hover { color: var(--road-yellow); }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-logo .mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--graphite-800), var(--graphite-950));
  border: 2px solid var(--safety);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.nav-logo .brand {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite-900);
  line-height: 1;
}
.nav-logo .brand span { color: var(--safety); }
.nav-logo .brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }

.nav-links a {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--graphite-900); background: var(--surface-alt); }

.nav-cta { background: var(--safety) !important; color: #fff !important; padding: 9px 20px !important; }
.nav-cta:hover { background: var(--safety-deep) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--graphite-900); border-radius: 2px; transition: all var(--transition); display: block; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 85% 15%, rgba(255, 122, 24, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 8% 95%, rgba(255, 196, 46, 0.10) 0%, transparent 60%),
    linear-gradient(155deg, var(--graphite-900) 0%, var(--graphite-950) 60%, #0c0e11 100%);
  color: #fff;
}
/* dashed lane line running through the hero */
.hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 34%;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(255,196,46,0.55) 0 60px, transparent 60px 120px);
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 90px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255, 196, 46, 0.4);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--road-yellow);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.04;
  margin-bottom: 22px;
  color: #fff;
}
.hero h1 span { color: var(--safety); }

.hero-sub {
  font-size: 1.14rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: wrap;
}
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--road-yellow); line-height: 1; }
.hero-trust .lbl { font-size: 0.76rem; color: rgba(255,255,255,0.6); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: var(--graphite-850);
  border: 1px solid var(--graphite-700);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  width: 100%;
  max-width: 390px;
  text-align: center;
}
.hero-card .emoji { font-size: 5rem; line-height: 1; margin-bottom: 8px; }
.hero-card .card-img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); margin-bottom: 18px; background: var(--graphite-700); }
.hero-card .pets { font-size: 2.2rem; margin-bottom: 18px; letter-spacing: 4px; }
.hero-card h3 { font-size: 1.35rem; margin-bottom: 10px; color: #fff; }
.hero-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.hero-badge {
  position: absolute;
  background: var(--road-yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--graphite-950);
}
.hero-badge .ic { font-size: 1.3rem; }
.hero-badge.b1 { top: 18px; left: -12px; }
.hero-badge.b2 { bottom: 28px; right: -12px; background: #fff; }

/* ─── Wave divider ─── */
.wave { display: block; width: 100%; height: 56px; }
.wave-top { margin-bottom: -1px; }

/* ─── Categories (service tiles) ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.cat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--road-yellow) 0 14px, transparent 14px 24px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--safety); }
.cat-card:hover::after { transform: scaleX(1); }

.cat-icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  background: var(--graphite-900);
  color: var(--road-yellow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
}
.cat-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.cat-card p { color: var(--text-soft); font-size: 0.88rem; margin-bottom: 16px; text-transform: none; }
.cat-link { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--safety-deep); }
.cat-link:hover { color: var(--graphite-900); }

/* ─── Products (service/work cards) ─── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.prod-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--graphite-700), var(--graphite-900));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  position: relative;
  overflow: hidden;
}
.prod-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--safety);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.prod-tag.green { background: var(--road-yellow); color: var(--graphite-950); }
.prod-tag.teal { background: var(--graphite-800); }

.prod-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod-cat { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--safety-deep); margin-bottom: 8px; }
.prod-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.prod-body p { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 16px; flex: 1; }
.prod-stars { color: var(--road-yellow); font-size: 0.85rem; margin-bottom: 12px; -webkit-text-stroke: 0.4px var(--safety-deep); }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prod-price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--graphite-900); }
.prod-price small { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }
.prod-btn {
  background: var(--graphite-900);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.prod-btn:hover { background: var(--safety); color: #fff; }

/* ─── Filter tabs ─── */
.filter-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--graphite-900); border-color: var(--graphite-900); color: #fff; }

/* ─── Why / Benefits ─── */
.why { background: var(--bg-alt); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual {
  background: linear-gradient(140deg, var(--graphite-800), var(--graphite-950));
  border: 1px solid var(--graphite-700);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.why-visual::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 46%;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--road-yellow) 0 40px, transparent 40px 80px);
}
.why-visual .big { font-size: 5rem; margin-bottom: 12px; }
.why-visual h3 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.why-visual p { color: rgba(255,255,255,0.82); font-size: 0.95rem; }

.benefits-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit-ic {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: var(--graphite-900);
  color: var(--road-yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.benefit h4 { font-size: 1.05rem; margin-bottom: 4px; }
.benefit p { color: var(--text-soft); font-size: 0.9rem; }

/* ─── Dark CTA band (wholesale-style) ─── */
.wholesale {
  background:
    radial-gradient(ellipse 60% 100% at 12% 50%, rgba(255, 122, 24, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--graphite-900) 0%, var(--graphite-950) 100%);
  color: #fff;
}
.wholesale-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.wholesale h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 18px; }
.wholesale h2 span { color: var(--road-yellow); }
.wholesale p { color: rgba(255,255,255,0.82); font-size: 1.02rem; margin-bottom: 26px; max-width: 520px; }
.wholesale-feats { display: flex; flex-direction: column; gap: 12px; }
.wholesale-feat { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 0.94rem; }
.wholesale-feat .ck { color: var(--road-yellow); font-weight: 800; font-size: 1.1rem; }
.wholesale-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.wholesale-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,196,46,0.28);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.wholesale-card .em { font-size: 3.4rem; margin-bottom: 16px; }
.wholesale-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.wholesale-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 0; }

/* ─── About ─── */
.about-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-visual {
  position: relative;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; color: var(--text-muted);
  border: 1px solid var(--border);
  overflow: hidden;
}
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-visual .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 20px 16px;
  background: linear-gradient(transparent, rgba(16,18,22,0.9));
  color: #fff; font-size: 0.86rem; font-weight: 600;
  z-index: 1; text-align: left;
}
.about-visual .em { font-size: 4.5rem; }
.about-text p { color: var(--text-soft); margin-bottom: 18px; }
.about-sign { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.about-sign .avatar { width: 54px; height: 54px; border-radius: 8px; background: linear-gradient(135deg, var(--graphite-800), var(--graphite-950)); border: 2px solid var(--safety); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.about-sign .who .name { font-weight: 800; color: var(--graphite-900); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.03em; }
.about-sign .who .role { font-size: 0.82rem; color: var(--text-muted); }

/* ─── Trust strip ─── */
.trust-strip { background: var(--graphite-950); padding: 44px 0; border-top: 4px solid transparent; border-image: repeating-linear-gradient(90deg, var(--road-yellow) 0 26px, var(--graphite-950) 26px 48px) 1; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item .em { font-size: 2rem; margin-bottom: 8px; }
.trust-item h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.trust-item p { color: var(--smoke); font-size: 0.82rem; }

/* ─── CTA / Contact strip ─── */
.contact-cta { background: var(--bg-alt); text-align: center; }
.contact-cta h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 14px; }
.contact-cta p { color: var(--text-soft); max-width: 560px; margin: 0 auto 30px; }
.contact-meta { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.contact-meta .item { display: flex; align-items: center; gap: 10px; color: var(--text-soft); font-size: 0.92rem; }
.contact-meta .item .em { font-size: 1.3rem; }
.contact-meta a { color: var(--safety-deep); font-weight: 700; }

/* ─── Inner page hero ─── */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 82% 8%, rgba(255,122,24,0.16) 0%, transparent 60%),
    linear-gradient(150deg, var(--graphite-900), var(--graphite-950));
  padding: 64px 0 74px;
  text-align: center;
  color: #fff;
}
.page-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--road-yellow) 0 34px, transparent 34px 68px);
}
.page-hero .eyebrow { color: var(--road-yellow); }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin-bottom: 14px; color: #fff; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto; }

/* ─── Service article page ─── */
.article-inner { display: grid; grid-template-columns: 1fr 320px; gap: 52px; align-items: start; }
.article-body h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.article-body h3 { font-size: 1.2rem; margin: 26px 0 10px; color: var(--graphite-800); }
.article-body p { color: var(--text-soft); margin-bottom: 16px; }
.article-body ul { margin: 0 0 18px 0; padding-left: 20px; color: var(--text-soft); }
.article-body ul li { margin-bottom: 8px; }
.article-lead { font-size: 1.12rem; color: var(--text) !important; border-left: 4px solid var(--safety); padding-left: 18px; }
.article-figure { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin: 8px 0 26px; box-shadow: var(--shadow-sm); }
.article-figure img { width: 100%; height: 340px; object-fit: cover; }

.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card.dark { background: var(--graphite-900); border-color: var(--graphite-700); }
.sidebar-card.dark h3, .sidebar-card.dark p { color: #fff; }
.sidebar-card.dark p { color: rgba(255,255,255,0.78); }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.sidebar-card p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 16px; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-links li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.sidebar-links li a::before { content: '▸'; color: var(--safety); font-weight: 800; }
.sidebar-links li a:hover { background: var(--surface-alt); color: var(--graphite-900); }
.sidebar-links li a.active { background: var(--graphite-900); color: #fff; }
.sidebar-links li a.active::before { color: var(--road-yellow); }

/* ─── Contact page ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; }
.info-panel {
  background: var(--graphite-900);
  border: 1px solid var(--graphite-700);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  color: #fff;
}
.info-panel h2 { font-size: 1.5rem; margin-bottom: 26px; color: #fff; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.info-ic {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,196,46,0.14);
  color: var(--road-yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-row .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--smoke); margin-bottom: 3px; font-weight: 800; }
.info-row .value { color: #fff; font-size: 0.94rem; font-weight: 500; }
.info-row .value a { color: var(--road-yellow); }
.info-row address { font-style: normal; }

.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}
.form-panel h2 { font-size: 1.5rem; margin-bottom: 8px; }
.form-panel > p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text-soft); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 12px 15px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--safety);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.14);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 0.8rem; color: var(--text-muted); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 340px; margin-top: 44px; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── Process steps ─── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
}
.step-num {
  width: 46px; height: 46px;
  background: var(--graphite-900);
  color: var(--road-yellow);
  border: 2px solid var(--safety);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { color: var(--text-soft); font-size: 0.9rem; }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: var(--surface); }
.faq-q { padding: 20px 24px; font-weight: 700; color: var(--graphite-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--safety); transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all var(--transition); color: var(--text-soft); font-size: 0.92rem; }
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 420px; }

/* ─── Value / portfolio grid ─── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .em { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--text-soft); font-size: 0.88rem; }

/* Portfolio cards */
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-img { aspect-ratio: 16/10; overflow: hidden; background: var(--graphite-800); }
.work-img img { width: 100%; height: 100%; object-fit: cover; }
.work-body { padding: 22px 24px 26px; }
.work-body .prod-cat { display: block; }
.work-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.work-body p { color: var(--text-soft); font-size: 0.88rem; }
.work-stats { display: flex; gap: 20px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.work-stats .st { display: flex; flex-direction: column; }
.work-stats .st b { font-family: var(--font-head); font-size: 1.15rem; color: var(--safety-deep); }
.work-stats .st span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── Footer ─── */
.footer { background: var(--graphite-950); color: rgba(255,255,255,0.72); padding: 62px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .brand { font-family: var(--font-head); font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; margin-bottom: 4px; }
.footer-brand .brand span { color: var(--safety); }
.footer-brand .tag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--road-yellow); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.68); font-size: 0.86rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--road-yellow); }

.footer-nap .company-name { font-weight: 800; color: #fff; font-size: 0.9rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.02em; }
.footer-nap .contact-person { font-size: 0.84rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.footer-nap address { font-style: normal; color: rgba(255,255,255,0.7); font-size: 0.86rem; line-height: 1.7; margin-bottom: 12px; }
.footer-nap .phone a { color: var(--road-yellow); font-weight: 800; font-size: 0.98rem; }
.footer-nap .phone a:hover { color: #fff; }
.footer-nap .hours { font-size: 0.82rem; color: rgba(255,255,255,0.58); margin-top: 10px; }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.52); }
.footer-bottom a { color: rgba(255,255,255,0.52); }
.footer-bottom a:hover { color: var(--road-yellow); }

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .hero-inner, .why-inner, .wholesale-inner, .about-inner, .contact-grid, .article-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-info { gap: 14px; }
  .hero-badge { display: none; }
}

@media (max-width: 480px) {
  .cat-grid, .prod-grid, .value-grid, .step-grid, .work-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-meta { flex-direction: column; align-items: center; gap: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
