/* ============================================================
   LASERFORGE — style.css
   Design language: sheet-metal fabrication.
   · Palette drawn from the logo: charcoal ink + signal orange + white
   · Signature: the "kerf" — one laser-cut clipped corner on cards,
     buttons and media, echoing a laser exit cut
   · The orange dash from the logo mark becomes the eyebrow marker
   · Spec data set in IBM Plex Mono like a cutting-parameter sheet
   ============================================================ */

:root {
  --ink:        #232326;  /* headings, dark sections */
  --ink-2:      #3a3a3d;  /* logo charcoal */
  --ink-3:      #1a1a1c;  /* deepest surfaces */
  --signal:     #f1521f;  /* logo orange-red */
  --signal-2:   #d9430f;  /* hover */
  --signal-soft:#fdeae2;  /* tint backgrounds */
  --paper:      #ffffff;
  --steel:      #f4f4f5;  /* light section background */
  --graphite:   #5d6066;  /* body text on light */
  --mist:       #b9bcc2;  /* muted on dark */
  --hairline:   #e5e6e8;
  --kerf: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  --kerf-sm: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow-card: 0 10px 30px rgba(26,26,28,.08);
  --shadow-card-hover: 0 18px 44px rgba(26,26,28,.16);
  --radius: 4px;
  --header-h: 76px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
html,
body {
    overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.12;
}
a { color: var(--signal); text-decoration: none; }
a:hover { color: var(--signal-2); }
img { max-width: 100%; height: auto; }
.mono { font-family: var(--font-mono); letter-spacing: 0; }
.skip-link { position: absolute; z-index: 3000; background: var(--signal); color: #fff; padding: .6rem 1rem; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }
section { position: relative; }
.section { padding: 96px 0; }
.section-steel { background: var(--steel); }
.section-ink { background: var(--ink); }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p { color: var(--mist); }
@media (max-width: 767px) { .section { padding: 64px 0; } }

/* ---------- Signature: kerf cut ---------- */
.kerf { clip-path: var(--kerf); }
.btn-kerf { clip-path: var(--kerf-sm); border-radius: 0 !important; }

/* ---------- Eyebrow (logo-dash marker) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--signal);
}
.eyebrow::before { content: ""; width: 26px; height: 8px; background: var(--signal); border-radius: 2px; flex: 0 0 auto; }
.eyebrow-light { color: #ffb598; }
.eyebrow-light::before { background: var(--signal); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin: .65rem 0 .8rem; }
.section-lede { font-size: 1.06rem; margin: 0; }

/* ---------- Beam line divider ---------- */
.beam-line {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: repeating-linear-gradient(90deg, var(--signal) 0 26px, transparent 26px 40px);
  opacity: .85;
}

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-display); font-weight: 700; letter-spacing: .01em; padding: .72rem 1.4rem; }
.btn i { margin-left: .35rem; transition: transform .2s ease; }
.btn:hover i { transform: translateX(3px); }
.btn-signal { background: var(--signal); border: 2px solid var(--signal); color: #fff; }
.btn-signal:hover, .btn-signal:focus { background: var(--signal-2); border-color: var(--signal-2); color: #fff; }
.btn-ink { background: var(--ink); border: 2px solid var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-3); border-color: var(--ink-3); color: #fff; }
.btn-ghost-light { background: transparent; border: 2px solid rgba(255,255,255,.45); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-ghost-ink { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-ghost-ink:hover { background: var(--ink); color: #f1521f; border: 2px solid #f1521f; }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.02rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink-3); color: var(--mist); font-size: .82rem; padding: .45rem 0; }
.topbar a { color: var(--mist); }
.topbar a:hover { color: #fff; }
.topbar-item { margin-right: 1.4rem; }
.topbar-item i { color: var(--signal); margin-right: .35rem; }
.topbar-sep { display: inline-block; width: 1px; height: 14px; background: rgba(255,255,255,.18); margin: 0 1rem; vertical-align: middle; }
.topbar-social { margin-left: .8rem; font-size: .95rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow .25s ease;
}
.site-header.is-stuck { box-shadow: 0 8px 30px rgba(26,26,28,.10); }
.site-header .navbar { padding: .9rem 0; }
.navbar-brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark { width: 40px; height: 40px; }
.brand-word { font-family: var(--font-display); font-weight: 900; font-size: 1.28rem; letter-spacing: .02em; color: var(--ink); }
.brand-word em { font-style: normal; color: var(--signal); }
.main-nav .nav-link {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--ink); padding: 1.35rem 1rem !important; position: relative;
}
.main-nav .nav-link i { font-size: .7rem; opacity: .6; }
.main-nav .nav-link::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .85rem;
  height: 3px; background: var(--signal); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--signal-2); }

/* Hamburger */
.navbar-toggler { border: 0; display: inline-flex; flex-direction: column; gap: 5px; padding: .5rem; }
.navbar-toggler span { width: 24px; height: 2px; background: var(--ink); display: block; transition: .2s; }
.navbar-toggler:focus { box-shadow: none; outline: 2px solid var(--signal); }

/* Mega menu */
.has-mega { position: static; }
.mega-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 3px solid var(--signal);
  box-shadow: 0 30px 60px rgba(26,26,28,.16);
  padding: 2rem 0 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-item { display: flex; gap: .9rem; padding: .9rem; clip-path: var(--kerf-sm); transition: background .15s; }
.mega-item:hover { background: var(--steel); }
.mega-icon {
  flex: 0 0 46px; height: 46px; display: grid; place-items: center;
  background: var(--signal-soft); color: var(--signal); font-size: 1.25rem; clip-path: var(--kerf-sm);
}
.mega-item strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: .96rem; }
.mega-item small { color: var(--graphite); line-height: 1.45; display: block; margin-top: .15rem; }
.mega-foot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--hairline); margin-top: 1.6rem; padding: .9rem 0;
  font-size: .85rem; color: var(--graphite);
}
.mega-foot a { font-weight: 600; }

/* Mobile nav */
.mobile-nav { background: var(--ink-3); color: #fff; width: min(86vw, 360px); }
.mobile-nav .brand-word { color: #fff; }
.mobile-nav .btn-close { filter: invert(1); opacity: .8; }
.mobile-menu { list-style: none; margin: 0; padding: 0; }
.mobile-menu a {
  display: block; padding: .85rem .25rem; color: #e8e9ea;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a.active, .mobile-menu a:hover { color: var(--signal); }
.mobile-contact { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.6rem; font-size: .85rem; }
.mobile-contact a { color: var(--mist); }
.mobile-contact i { color: var(--signal); margin-right: .5rem; }

/* ---------- Hero slider ---------- */
.hero { position: relative; background: var(--ink-3); }
.hero-swiper { height: min(88vh, 780px); min-height: 560px; }
.hero-slide { position: relative; display: flex; align-items: center; height: 100%; }
.hero-slide-bg { position: absolute; inset: 0; }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,20,22,.92) 12%, rgba(20,20,22,.68) 46%, rgba(20,20,22,.25) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; color: #fff; }
.hero-content .eyebrow { color: #ffb598; }
.hero-content h1, .hero-content h2 {
  color: #fff; font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 900;
  margin: .8rem 0 1.1rem; letter-spacing: -.02em;
}
.hero-content h1 em, .hero-content h2 em { font-style: normal; color: var(--signal); }
.hero-content p { color: #d4d5d8; font-size: 1.12rem; max-width: 560px; }
.hero-spec { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 1.8rem; }
.hero-spec span {
  font-family: var(--font-mono); font-size: .78rem; color: #fff;
  border: 1px solid rgba(255,255,255,.3); padding: .3rem .7rem; clip-path: var(--kerf-sm);
  background: rgba(255,255,255,.06);
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero .swiper-pagination { bottom: 28px !important; text-align: left; padding-left: max(calc((100% - 1296px)/2 + 12px), 24px); }
.hero .swiper-pagination-bullet {
  width: 34px; height: 4px; border-radius: 0; background: rgba(255,255,255,.4); opacity: 1; transition: .2s;
}
.hero .swiper-pagination-bullet-active { background: var(--signal); width: 52px; }
.hero-nav { position: absolute; right: max(calc((100% - 1296px)/2 + 12px), 24px); bottom: 18px; z-index: 10; display: flex; gap: .5rem; }
.hero-nav button {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06);
  color: #fff; clip-path: var(--kerf-sm); transition: .2s;
}
.hero-nav button:hover { background: var(--signal); border-color: var(--signal); }
.hero .beam-line { z-index: 5; }

/* ---------- Stats counters ---------- */
.stats-band { background: var(--ink); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 2.6rem 2rem; border-left: 1px solid rgba(255,255,255,.09); }
.stat-cell:first-child { border-left: 0; }
.stat-value { font-family: var(--font-mono); font-weight: 600; font-size: clamp(2rem, 3.6vw, 2.9rem); color: #fff; line-height: 1; }
.stat-value .plus { color: var(--signal); }
.stat-label { color: var(--mist); font-size: .86rem; margin-top: .55rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); }
@media (max-width: 991px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-cell:nth-child(3) { border-left: 0; } .stat-cell { border-top: 1px solid rgba(255,255,255,.09); } .stat-cell:nth-child(-n+2) { border-top: 0; } }

/* ---------- Category tiles ---------- */
.cat-tile { position: relative; display: block; overflow: hidden; clip-path: var(--kerf); background: var(--ink-3); aspect-ratio: 4/3; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .5s ease, opacity .3s; }
.cat-tile:hover img { transform: scale(1.06); opacity: .55; }
.cat-tile-body { position: absolute; inset: auto 0 0 0; padding: 1.4rem; background: linear-gradient(transparent, rgba(20,20,22,.92) 55%); }
.cat-tile-body h3 { color: #fff; font-size: 1.18rem; margin: 0 0 .3rem; }
.cat-tile-body p { color: #cfd1d4; font-size: .86rem; margin: 0; line-height: 1.5; max-height: 0; opacity: 0; overflow: hidden; transition: .35s ease; }
.cat-tile:hover .cat-tile-body p, .cat-tile:focus .cat-tile-body p { max-height: 90px; opacity: 1; }
.cat-tile-arrow {
  position: absolute; top: 0; right: 0; width: 44px; height: 44px;
  background: var(--signal); color: #fff; display: grid; place-items: center; font-size: 1.1rem;
  transform: translate(100%, -100%); transition: transform .25s ease;
}
.cat-tile:hover .cat-tile-arrow { transform: translate(0,0); }

/* ---------- Product cards ---------- */
.product-card { background: #fff; box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease; height: 100%; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.product-card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--steel); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-media img { transform: scale(1.05); }
.product-card-model {
  position: absolute; left: 0; bottom: 0; background: var(--ink-3); color: #fff;
  font-size: .74rem; padding: .3rem .7rem; letter-spacing: .06em;
}
.product-card-body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product-card-cat { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--signal); }
.product-card-body h3 { font-size: 1.08rem; margin: .45rem 0 .9rem; line-height: 1.35; }
.product-card-body h3 a { color: var(--ink); }
.product-card-body h3 a:hover { color: var(--signal); }
.spec-strip { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; border-top: 1px dashed var(--hairline); border-bottom: 1px dashed var(--hairline); padding: .7rem 0; margin: 0 0 1rem; font-size: .78rem; }
.spec-strip dt { color: #9a9da3; font-weight: 400; text-transform: uppercase; letter-spacing: .08em; font-size: .66rem; }
.spec-strip dd { color: var(--ink); margin: 0; font-weight: 600; }
.product-card-actions { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.card-link { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink); }
.card-link:hover { color: var(--signal); }
.card-quote { border: 0; background: none; font-family: var(--font-mono); font-size: .8rem; color: var(--signal); text-decoration: underline dashed; text-underline-offset: 4px; }
.card-quote:hover { color: var(--signal-2); }

/* ---------- Industries ---------- */
.industry-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  padding: 1.6rem 1.5rem; clip-path: var(--kerf); height: 100%; transition: .25s;
}
.industry-card:hover { background: rgba(241,82,31,.1); border-color: rgba(241,82,31,.45); transform: translateY(-4px); }
.industry-card i { font-size: 1.7rem; color: var(--signal); }
.industry-card h3 { color: #fff; font-size: 1.05rem; margin: .8rem 0 .4rem; }
.industry-card p { font-size: .88rem; margin: 0; }

/* ---------- Why choose us ---------- */
.why-item { display: flex; gap: 1.1rem; margin-bottom: 1.8rem; }
.why-icon { flex: 0 0 52px; height: 52px; background: var(--signal-soft); color: var(--signal); display: grid; place-items: center; font-size: 1.35rem; clip-path: var(--kerf-sm); }
.why-item h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.why-item p { font-size: .93rem; margin: 0; }
.why-media { position: relative; }
.why-media img { clip-path: var(--kerf); }
.why-media-badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--ink);
  color: #fff; padding: 1.1rem 1.4rem; clip-path: var(--kerf-sm); max-width: 260px;
}
.why-media-badge .mono { color: var(--signal); font-size: 1.6rem; font-weight: 600; display: block; }
.why-media-badge span:last-child { font-size: .82rem; color: var(--mist); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.process-step { background: #fff; padding: 1.7rem 1.5rem; clip-path: var(--kerf); position: relative; counter-increment: step; box-shadow: var(--shadow-card); }
.process-step::before {
  content: "0" counter(step); font-family: var(--font-mono); font-weight: 600;
  color: var(--signal); font-size: .95rem; letter-spacing: .06em;
}
.process-step h3 { font-size: 1.05rem; margin: .7rem 0 .4rem; }
.process-step p { font-size: .89rem; margin: 0; }
@media (max-width: 991px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonial-card { background: #fff; padding: 2rem; clip-path: var(--kerf); height: auto; box-shadow: var(--shadow-card); }
.testimonial-card blockquote { color: var(--ink); font-size: 1.02rem; line-height: 1.65; margin: 1rem 0 1.4rem; }
.testimonial-stars { color: var(--signal); letter-spacing: .15em; }
.testimonial-who { display: flex; align-items: center; gap: .9rem; border-top: 1px dashed var(--hairline); padding-top: 1.1rem; }
.testimonial-avatar { width: 46px; height: 46px; clip-path: var(--kerf-sm); background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.testimonial-who strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: .95rem; }
.testimonial-who span { font-size: .8rem; font-family: var(--font-mono); color: var(--graphite); }
.testimonials-swiper { padding: .5rem .2rem 3rem; }
.testimonials-swiper .swiper-pagination-bullet { border-radius: 0; width: 24px; height: 4px; background: var(--mist); opacity: 1; }
.testimonials-swiper .swiper-pagination-bullet-active { background: var(--signal); }

/* ---------- Intro / about split ---------- */
.intro-media { position: relative; }
.intro-media img { clip-path: var(--kerf); }
.intro-media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px dashed var(--signal); clip-path: var(--kerf); z-index: -1; opacity: .5;
}
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.check-list li { padding-left: 1.9rem; position: relative; margin-bottom: .7rem; }
.check-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons"; color: var(--signal);
  position: absolute; left: 0; top: 0;
}

/* ---------- Blog cards ---------- */
.blog-card { background: #fff; box-shadow: var(--shadow-card); height: 100%; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.blog-card-media { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 1rem; font-family: var(--font-mono); font-size: .74rem; color: var(--graphite); margin-bottom: .6rem; }
.blog-meta .tag { color: var(--signal); text-transform: uppercase; letter-spacing: .08em; }
.blog-card-body h3 { font-size: 1.1rem; line-height: 1.4; }
.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--signal); }
.blog-card-body p { font-size: .92rem; margin: .6rem 0 1rem; }
.blog-card .card-link { margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-3) url() ; padding: 88px 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; top: 0; bottom: 0; right: -140px; width: 55%;
  background: radial-gradient(closest-side, rgba(241,82,31,.28), transparent 72%);
}
.cta-band-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin: .8rem 0 1rem; }
.cta-band p { color: var(--mist); max-width: 560px; margin: 0; }
.cta-band-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--mist); padding: 0 0 2rem; }
.footer-newsletter {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding: 2.6rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-newsletter h3 { color: #fff; margin: 0 0 .3rem; }
.footer-newsletter p { margin: 0; font-size: .92rem; }
.newsletter-form { display: flex; gap: .6rem; min-width: min(440px, 100%); }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: .7rem 1rem; clip-path: var(--kerf-sm); font-family: var(--font-mono); font-size: .88rem;
}
.newsletter-form input::placeholder { color: #8d9096; }
.newsletter-form input:focus { outline: 2px solid var(--signal); border-color: var(--signal); }
.footer-cols { padding: 3rem 0 2.4rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand .brand-word { color: #fff; font-size: 1.15rem; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-about { font-size: .92rem; max-width: 340px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a {
  width: 38px; height: 38px; display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.07); clip-path: var(--kerf-sm); transition: .2s;
}
.footer-social a:hover { background: var(--signal); }
.footer-title { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: var(--mist); font-size: .92rem; }
.footer-links a:hover { color: var(--signal); }
.footer-contact { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.footer-contact li { margin-bottom: .7rem; display: flex; gap: .7rem; }
.footer-contact i { color: var(--signal); }
.footer-contact a { color: var(--mist); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem;
}
.footer-legal a { color: var(--mist); margin-left: 1.4rem; }
.footer-legal a:first-child { margin-left: 0; }
.footer-legal a:hover { color: var(--signal); }

/* ---------- Floating buttons ---------- */
.float-whatsapp {
  position: fixed; right: 22px; bottom: 92px; z-index: 1040;
  width: 56px; height: 56px; background: #25d366; color: #fff; font-size: 1.7rem;
  display: grid; place-items: center; clip-path: var(--kerf-sm);
  box-shadow: 0 10px 26px rgba(37,211,102,.4); transition: transform .2s;
}
.float-whatsapp:hover { transform: translateY(-3px); color: #fff; }
.back-to-top {
  position: fixed; right: 22px; bottom: 24px; z-index: 1040;
  width: 56px; height: 56px; border: 0; background: var(--ink); color: #fff; font-size: 1.2rem;
  clip-path: var(--kerf-sm); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--signal); }

/* ---------- Inner page hero ---------- */
.page-hero { background: var(--ink-3); padding: 72px 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(closest-side, rgba(241,82,31,.22), transparent 70%);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.3rem); margin: .4rem 0 0; }
.page-hero h1 em { font-style: normal; color: var(--signal); }
.page-hero-lede { color: var(--mist); max-width: 720px; margin: 1rem 0 0; font-size: 1.06rem; }
.lf-breadcrumb { margin: 0; font-family: var(--font-mono); font-size: .78rem; }
.lf-breadcrumb a { color: var(--mist); }
.lf-breadcrumb a:hover { color: var(--signal); }
.lf-breadcrumb .active { color: var(--signal); }
.lf-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #6a6d73; content: "›"; }

/* ---------- Forms ---------- */
.lf-form .form-label { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .88rem; }
.lf-form .form-control, .lf-form .form-select {
  border: 1px solid #d4d6d9; border-radius: 0; clip-path: var(--kerf-sm);
  padding: .68rem .9rem; font-size: .95rem;
}
.lf-form .form-control:focus, .lf-form .form-select:focus { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(241,82,31,.15); }
.lf-honeypot { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.quote-modal { border: 0; border-top: 4px solid var(--signal); border-radius: 0; }
.quote-modal .modal-header { border: 0; padding: 1.6rem 1.8rem .4rem; align-items: flex-start; }
.quote-modal .modal-title { font-size: 1.4rem; margin-top: .35rem; }
.quote-modal .modal-body { padding: 1.2rem 1.8rem 1.8rem; }

/* ---------- Contact page ---------- */
.contact-card { background: #fff; padding: 1.8rem; clip-path: var(--kerf); box-shadow: var(--shadow-card); height: 100%; }
.contact-card i { font-size: 1.6rem; color: var(--signal); }
.contact-card h3 { font-size: 1.05rem; margin: .8rem 0 .35rem; }
.contact-card p, .contact-card a { font-size: .95rem; margin: 0; }
.map-frame { clip-path: var(--kerf); border: 0; width: 100%; height: 420px; display: block; }

/* ---------- Product details ---------- */
.pd-gallery img { clip-path: var(--kerf); width: 100%; }
.pd-price-note { font-family: var(--font-mono); font-size: .8rem; color: var(--graphite); }
.spec-table { width: 100%; font-size: .92rem; }
.spec-table th { font-family: var(--font-mono); font-weight: 500; text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; color: var(--graphite); width: 40%; padding: .8rem 0; border-bottom: 1px dashed var(--hairline); }
.spec-table td { font-family: var(--font-mono); color: var(--ink); font-weight: 600; padding: .8rem 0; border-bottom: 1px dashed var(--hairline); }
.feature-list { list-style: none; padding: 0; }
.feature-list li { position: relative; padding: .55rem 0 .55rem 2rem; border-bottom: 1px dashed var(--hairline); }
.feature-list li::before { content: "\F633"; font-family: "bootstrap-icons"; position: absolute; left: 0; color: var(--signal); }

/* ---------- Gallery ---------- */
.gallery-item { display: block; clip-path: var(--kerf); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--ink-3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, opacity .3s; }
.gallery-item:hover img { transform: scale(1.06); opacity: .7; }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: .9rem 1.1rem; color: #fff;
  font-family: var(--font-mono); font-size: .78rem; background: linear-gradient(transparent, rgba(20,20,22,.9));
}

/* ---------- FAQ ---------- */
.lf-accordion .accordion-item { border: 1px solid var(--hairline); border-radius: 0; margin-bottom: .8rem; clip-path: var(--kerf-sm); }
.lf-accordion .accordion-button { font-family: var(--font-display); font-weight: 700; color: var(--ink); background: #fff; border-radius: 0 !important; padding: 1.1rem 1.3rem; }
.lf-accordion .accordion-button:not(.collapsed) { background: var(--signal-soft); color: var(--signal-2); box-shadow: none; }
.lf-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(241,82,31,.2); }
.lf-accordion .accordion-body { font-size: .95rem; }

/* ---------- Blog details ---------- */
.post-body { max-width: 760px; }
.post-body p { margin-bottom: 1.3rem; font-size: 1.04rem; }
.post-hero-img { clip-path: var(--kerf); width: 100%; max-height: 480px; object-fit: cover; }
.post-meta { font-family: var(--font-mono); font-size: .8rem; color: var(--graphite); display: flex; gap: 1.4rem; flex-wrap: wrap; }
.post-meta .tag { color: var(--signal); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 800px; }
.legal-body h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; }
.legal-body ul { padding-left: 1.2rem; }

/* ---------- 404 ---------- */
.page-404 { min-height: 70vh; display: grid; place-items: center; background: var(--ink-3); text-align: center; padding: 80px 24px; }
.page-404 .code { font-family: var(--font-mono); font-size: clamp(5rem, 16vw, 10rem); font-weight: 600; color: #fff; line-height: 1; }
.page-404 .code em { font-style: normal; color: var(--signal); }
.page-404 h1 { color: #fff; font-size: 1.6rem; margin: .8rem 0; }
.page-404 p { color: var(--mist); max-width: 460px; margin: 0 auto 1.8rem; }

/* ---------- Utilities ---------- */
.text-signal { color: var(--signal) !important; }
.img-kerf { clip-path: var(--kerf); }
@media (max-width: 767px) {
  .hero-swiper { min-height: 520px; }
  .hero .swiper-pagination { padding-left: 24px; }
  .why-media-badge { left: 12px; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; min-width: 0; }
}
