/* ===========================================================
   ASHUTOR ENTERPRISES — Design System
   "Spec Plate" industrial identity
   Palette: blue / gray (base) + yellow & red (accents, ~10% each)
=========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --graphite: #131a24;
  --graphite-2: #1b2430;
  --steel: #234067;
  --steel-light: #3a5a85;
  --paper: #eef1f4;
  --paper-dim: #e1e6ea;
  --ink: #1a2028;
  --ink-soft: #57626d;
  --yellow: #f0b429;
  --yellow-dark: #cc9414;
  --accent2: #5aa8dc;
  --accent2-dark: #3f7fae;
  --red: #ff0000;
  --red-dark: #cc0000;
  --cyan: #3d7ab0;
  --jz-teal: #2e8aa6;
  --jz-purple: #8a4fbf;
  --line: rgba(19,26,36,0.14);
  --line-light: rgba(238,241,244,0.16);

  --display: 'Oswald', sans-serif;
  --body: 'IBM Plex Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --container: 1220px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; font-size: 18px; }
html, body{ max-width: 100%; overflow-x: hidden; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; height:auto; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--graphite);
  margin: 0 0 0.5em;
  font-weight: 600;
  overflow-wrap: break-word;
}
p{ margin: 0 0 1em; color: var(--ink-soft); overflow-wrap: break-word; }
table{ max-width: 100%; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px);
  width: 100%;
}
.eyebrow{
  font-family: var(--mono);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 14px;
  font-weight: 700;
}
.eyebrow::before{
  content:"";
  width: 26px;
  height: 2px;
  background: var(--yellow);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing:0.06em;
  font-size: 0.9rem;
  padding: clamp(12px,2.4vw,15px) clamp(20px,4vw,30px);
  border: 2px solid transparent;
  cursor:pointer;
  transition: all .2s ease;
}
.btn-primary{
  background: var(--accent2);
  color: #fff;
}
.btn-primary:hover{ background: var(--accent2-dark); }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: var(--paper);
}
.btn-outline:hover{ background: rgba(255,255,255,0.1); }
.btn-outline.dark{ color: var(--graphite); }
.btn-outline.dark:hover{ background: rgba(20,24,29,0.06); }

/* ---------- Header / Nav ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; width:100%; z-index: 100;
  background: linear-gradient(135deg, #f4c430 0%, #ffd54f 50%, #ffc107 100%);
  border-bottom: 1px solid rgba(42,34,16,0.15);
  box-shadow: 0 2px 18px rgba(255,193,7,0.25);
}
body{ padding-top: var(--header-h, 96px); transition: padding-top .3s ease; }
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding: clamp(12px, 2.5vw, 22px) clamp(16px, 4vw, 28px);
  max-width: var(--container);
  margin: 0 auto;
  gap: 12px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family: var(--display);
  color: var(--graphite);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.brand-logo{
  height: clamp(38px, 8vw, 62px);
  width: auto;
  display:block;
  filter: drop-shadow(0 1px 1px rgba(255,255,255,0.3));
}
nav.main-nav{ display:flex; align-items:center; gap: 26px; }
nav.main-nav a{
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(42,34,16,0.75);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s ease;
}
nav.main-nav a:hover, nav.main-nav a.active{
  color: var(--graphite); border-color: var(--graphite);
}
.nav-cta{
  font-family: var(--mono);
  font-size: 0.78rem;
  background: var(--accent2);
  color:#fff !important;
  padding: 9px 18px;
  border-bottom: none !important;
  transition: all .2s ease;
}
.nav-cta:hover{ background: var(--accent2-dark); transform: translateY(-1px); }
.menu-toggle{ display:none; }
.has-dropdown{ position: relative; display:flex; align-items:center; }
.dd-arrow{ display:none; }
@media (min-width: 1001px){
  .dropdown{
    position:absolute; top: 100%; left:50%;
    transform: translateX(-50%) translateY(-8px);
    background: #10151d;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 280px;
    padding: 14px 0 10px;
    display:block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
    border-radius: 4px;
    z-index: 200;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown.dropdown-open .dropdown{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
  }
  .dropdown a{
    display:flex; align-items:center;
    padding: 12px 22px; border-bottom:none !important;
    color: #eef1f4 !important;
    opacity: 0.9;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all .18s ease;
  }
  .dropdown a:hover{ background: rgba(240,180,41,0.12); color: var(--yellow) !important; opacity:1; border-left-color: var(--yellow); padding-left: 26px; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: clamp(420px, 78vh, 780px);
  display:flex; align-items:flex-end;
  background: var(--graphite);
  color:#fff;
  overflow:hidden;
}
.hero img.hero-bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center;
  opacity: 1;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(13,18,26,0) 0%, rgba(13,18,26,0) 42%, rgba(13,18,26,0.5) 72%, rgba(13,18,26,0.86) 100%);
}
.hero-content{ position:relative; z-index:2; padding: clamp(50px, 9vw, 90px) 0 clamp(36px, 6vw, 60px); width:100%; text-shadow: 0 1px 10px rgba(0,0,0,0.55); }
.hero h1{
  color:#fff;
  font-size: clamp(1.9rem, 4.1vw, 3.4rem);
  line-height: 1.08;
  max-width: 900px;
  margin-bottom: 0.3em;
}
.hero .sub{
  font-family: var(--mono);
  color: var(--paper);
  opacity:0.85;
  font-size: 1rem;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.hero p.lead{
  max-width: 620px;
  color: rgba(240,239,232,0.82);
  font-size: 1.05rem;
}
.hero-ctas{ display:flex; gap:16px; margin-top: 28px; flex-wrap:wrap; }

/* ---------- Hero split layout + highlight panel ---------- */
.hero-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items:end;
}
.hero-panel{
  background: rgba(19,26,36,0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(240,180,41,0.35);
  border-top: 3px solid var(--yellow);
  padding: clamp(22px,2.6vw,28px) clamp(22px,2.6vw,28px) 22px;
  margin-bottom: 4px;
}
.hero-panel-head{
  display:flex; align-items:center; gap:10px;
  font-family: var(--mono); font-size:0.76rem; letter-spacing:0.09em; text-transform:uppercase;
  color: var(--yellow); margin-bottom:20px;
}
.hero-panel-dot{
  width:7px; height:7px; border-radius:50%; background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(240,180,41,0.18);
  flex-shrink:0;
}
.hero-panel-list{ list-style:none; margin:0 0 20px; padding:0; display:flex; flex-direction:column; gap:15px; }
.hero-panel-list li{ display:flex; align-items:center; gap:12px; color:#fff; font-size:0.92rem; }
.hero-panel-list svg{ width:21px; height:21px; flex-shrink:0; color: var(--yellow); }
.hero-panel-foot{
  font-family: var(--mono); font-size:0.72rem; letter-spacing:0.02em;
  color: rgba(240,239,232,0.65);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 14px;
}
@keyframes heroFadeUp{
  from{ opacity:0; transform: translateY(22px); }
  to{ opacity:1; transform: translateY(0); }
}
.hero-anim{
  opacity:0;
  animation: heroFadeUp .8s cubic-bezier(.2,.7,.3,1) forwards;
  animation-delay: var(--d, 0s);
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; align-items:stretch; }
  .hero-panel{ margin-top:22px; margin-bottom:0; }
}
@media (prefers-reduced-motion: reduce){
  .hero-anim{ animation:none; opacity:1; }
}

.page-hero{
  min-height: clamp(320px, 46vh, 480px);
}
.page-hero .hero-content{ padding: clamp(46px, 8vw, 70px) 0 clamp(28px, 5vw, 46px); }

/* ---------- Stat / spec plate strip ---------- */
.plate-strip{
  background: linear-gradient(120deg, var(--graphite) 0%, var(--steel) 55%, var(--steel-light) 100%);
  border-top: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.plate-strip::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 15% 30%, rgba(240,180,41,0.14) 0%, transparent 45%),
              radial-gradient(circle at 85% 70%, rgba(90,168,220,0.16) 0%, transparent 45%);
  pointer-events:none;
}
.plate-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}
.plate{
  background: transparent;
  padding: 38px 20px;
  text-align:center;
  position:relative;
  transition: background .3s ease, transform .3s ease;
}
.plate:hover{
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}
.plate::before, .plate::after{
  content:"";
  position:absolute; width:6px; height:6px; border-radius:50%;
  background: rgba(255,255,255,0.35);
  top:10px;
}
.plate::before{ left:10px; }
.plate::after{ right:10px; }
.plate .num{
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height:1;
  text-shadow: 0 0 24px rgba(240,180,41,0.35);
  transition: text-shadow .3s ease;
}
.plate:hover .num{ text-shadow: 0 0 30px rgba(240,180,41,0.6); }
.plate .label{
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-top: 10px;
}
.plate:nth-child(odd) .num{ text-shadow: 0 0 24px rgba(90,168,220,0.35); }
.plate:nth-child(odd):hover .num{ text-shadow: 0 0 30px rgba(90,168,220,0.6); }

/* ---------- Sections ---------- */
section{ padding: clamp(56px, 11vw, 130px) 0; }
section.tight{ padding: clamp(40px, 7vw, 84px) 0; }
section.on-dark{ background: var(--graphite); color: var(--paper); }
section.on-dark h2, section.on-dark h3{ color:#fff; }
section.on-dark p{ color: rgba(240,239,232,0.75); }
section.on-steel{ background: var(--steel); color:#fff; }
section.on-steel h2, section.on-steel h3{ color:#fff; }
section.on-steel p{ color: rgba(255,255,255,0.8); }
section.paper-dim{ background: var(--paper-dim); }

.section-head{ max-width: 720px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.6rem); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Grid layouts ---------- */
.grid{ display:grid; gap: 34px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.card{
  background:#fff;
  border: 1px solid var(--line);
  padding: clamp(26px,4vw,38px) clamp(22px,3.5vw,32px);
  position: relative;
  transition: transform .5s cubic-bezier(.3,.7,.3,1), box-shadow .3s ease, background .4s ease, border-color .4s ease;
}
.card:hover, .card:active{
  transform: translateY(-4px) rotateY(10deg);
  box-shadow: 0 16px 34px rgba(19,26,36,0.18);
  background: var(--accent2);
  border-color: var(--accent2-dark);
}
.card::before{
  content:"";
  position:absolute; top:0; left:0; width: 34px; height:3px;
  background: var(--yellow);
  transition: background .4s ease;
}
.card:hover::before, .card:active::before{ background:#fff; }
.card img{ transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.card:hover img, .card:active img{ transform: scale(1.08); }
.card h3{ font-size: 1.1rem; margin-bottom: 10px; transition: color .4s ease; }
.card p{ font-size: 0.94rem; margin-bottom: 0; transition: color .4s ease; }
.card .cap-icon{ transition: color .4s ease; }
.card:hover h3, .card:active h3,
.card:hover p, .card:active p{ color:#fff; }
.card:hover .cap-icon, .card:active .cap-icon{ color:#fff; }
.card.on-dark-bg{ background: var(--graphite-2); border-color: var(--line-light); }

/* ---------- Contact page: no card hover/flip animation ---------- */
body.page-contact .card,
body.page-contact .card:hover,
body.page-contact .card:active{
  transform:none !important;
  box-shadow:none !important;
  background:#fff !important;
  border-color: var(--line) !important;
}
body.page-contact .card::before,
body.page-contact .card:hover::before,
body.page-contact .card:active::before{ background: var(--yellow) !important; }
body.page-contact .card h3, body.page-contact .card:hover h3, body.page-contact .card:active h3,
body.page-contact .card p, body.page-contact .card:hover p, body.page-contact .card:active p{ color: inherit !important; }
body.page-contact .card .cap-icon, body.page-contact .card:hover .cap-icon, body.page-contact .card:active .cap-icon{ color: var(--yellow) !important; }
body.page-contact .card img, body.page-contact .card:hover img, body.page-contact .card:active img{ transform:none !important; }
.card.on-dark-bg h3{ color:#fff; }
.card.on-dark-bg p{ color: rgba(240,239,232,0.7); }
.card.on-dark-bg:hover, .card.on-dark-bg:active{ background: var(--accent2); border-color: var(--accent2-dark); }
.card.on-dark-bg:hover p, .card.on-dark-bg:active p{ color: rgba(255,255,255,0.92); }
.grid, .container{ perspective: 1400px; }

.cap-icon{ width:40px; height:40px; color: var(--yellow); margin-bottom:14px; }
.cap-icon svg{ width:100%; height:100%; }
.cap-icon-back{ width:28px; height:28px; color: var(--accent2); margin-bottom:10px; opacity:0.95; }

.img-card{ position:relative; overflow:hidden; background: var(--graphite); cursor:pointer; }
.img-card img{ width:100%; height:100%; object-fit:cover; transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.img-card:hover img, .img-card:active img{ transform: scale(1.1); }
.img-card .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color:#fff;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

/* ---------- Machine card ---------- */
.machine-card{
  background:#fff; border:1px solid var(--line);
  display:flex; flex-direction:column;
  transition: transform .5s cubic-bezier(.3,.7,.3,1), box-shadow .3s ease, background .4s ease, border-color .4s ease;
}
.machine-card:hover, .machine-card:active{
  transform: translateY(-4px) rotateY(8deg);
  box-shadow: 0 16px 34px rgba(19,26,36,0.18);
  background: var(--accent2);
  border-color: var(--accent2-dark);
}
.machine-card .thumb{ aspect-ratio: 4/3; overflow:hidden; background:var(--graphite); }
.machine-card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.machine-card:hover .thumb img, .machine-card:active .thumb img{ transform: scale(1.1); }
.machine-card .body{ padding: 22px; flex:1; display:flex; flex-direction:column; }
.machine-card h3{ font-size:1.05rem; transition: color .4s ease; }
.machine-card:hover h3, .machine-card:active h3{ color:#fff; }
.machine-card .tag{
  font-family: var(--mono); font-size:0.68rem; letter-spacing:0.08em;
  color: var(--cyan); text-transform:uppercase; margin-bottom:8px;
  transition: color .4s ease;
}
.machine-card:hover .tag, .machine-card:active .tag{ color:#fff; }
.machine-card .more{
  margin-top:auto; padding-top:14px;
  font-family: var(--mono); font-size:0.78rem; letter-spacing:0.04em;
  color: var(--yellow); text-transform:uppercase; font-weight:700;
  display:flex; align-items:center; gap:8px;
  transition: color .4s ease;
}
.machine-card:hover .more, .machine-card:active .more{ color:#fff; }

/* ---------- Two-column media/text ---------- */
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center;
}
.split.reverse{ direction: rtl; }
.split.reverse > *{ direction: ltr; }
.split img{ width:100%; aspect-ratio: 16 / 9; height:auto; object-fit:cover; background: var(--paper-dim); }

/* ---------- Timeline ---------- */
.timeline{ border-left: 2px solid var(--line); margin-left: 8px; }
.timeline .t-item{ position:relative; padding: 0 0 34px 32px; }
.timeline .t-item::before{
  content:""; position:absolute; left:-7px; top:4px;
  width:12px; height:12px; background: var(--yellow); border: 2px solid var(--paper);
}
.timeline .t-item:last-child{ padding-bottom:0; }
.timeline .t-item .step{
  font-family: var(--mono); color: var(--yellow); font-size:0.78rem;
  letter-spacing:0.06em; text-transform:uppercase; margin-bottom:4px;
}
.timeline .t-item h4{ font-size:1.05rem; margin-bottom:0; }
.timeline .t-item p{ font-size:0.92rem; margin-bottom:0; }
.timeline .t-item .t-head{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.timeline .t-item .t-icon{ width:26px; height:26px; color: var(--yellow); flex-shrink:0; }
.timeline .t-item .t-icon svg{ width:100%; height:100%; }

/* ---------- Spec table ---------- */
.spec-table{ width:100%; border-collapse: collapse; font-family: var(--mono); font-size:0.9rem; }
.spec-table tr{ border-bottom: 1px solid var(--line); }
.spec-table td{ padding: 13px 4px; }
.spec-table td:first-child{ color: var(--ink-soft); width: 46%; text-transform:uppercase; font-size:0.76rem; letter-spacing:0.04em; }
.spec-table td:last-child{ color: var(--graphite); font-weight:600; }

/* ---------- Instrument / capability icon list ---------- */
.icon-list{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.icon-item{ display:flex; gap:14px; align-items:flex-start; }
.icon-item .dot{
  width: 8px; height:8px; background: var(--yellow); margin-top:8px; flex-shrink:0;
}
.icon-item h4{ font-size:0.98rem; margin-bottom:4px; }
.icon-item p{ font-size:0.88rem; margin-bottom:0; }

/* ---------- Industry list ---------- */
.industry-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 26px 0; border-bottom: 1px solid var(--line-light);
}
.industry-row .industry-icon{
  display:flex; align-items:center; justify-content:center;
  width:54px; height:54px; flex-shrink:0;
  border-radius:50%;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--yellow);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.industry-row .industry-icon svg{ width:26px; height:26px; }
.industry-row:hover .industry-icon{
  background: var(--yellow); color: var(--graphite);
  transform: scale(1.08) rotate(-4deg);
}
.industry-row h3{ margin:0; flex:1; color:#fff; font-size:1.3rem; }
.industry-row p{ flex:2; margin:0 0 0 30px; font-size:0.9rem; }

/* ---------- Gallery ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid .img-card:nth-child(5n+1){ grid-column: span 2; grid-row: span 2; }
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 40px; }
.filter-chip{
  font-family: var(--mono); font-size:0.75rem; text-transform:uppercase; letter-spacing:0.04em;
  padding: 9px 16px; border: 1px solid var(--line); background:#fff; cursor:pointer;
}
.filter-chip.active{ background: var(--graphite); color:#fff; border-color: var(--graphite); }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--red);
  color:#fff;
  padding: 60px 0;
  text-align:center;
}
.cta-band h2{ color:#fff; margin-bottom:10px; }
.cta-band p{ color: rgba(255,255,255,0.9); max-width:560px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
footer{ background: var(--graphite); color: rgba(240,239,232,0.6); padding: 70px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4{ color:#fff; font-size:0.95rem; margin-bottom:18px; }
.footer-grid a{
  display:block; font-family: var(--mono); font-size:0.82rem;
  color: rgba(240,239,232,0.55); margin-bottom: 10px;
}
.footer-grid a:hover{ color: var(--yellow); }
.footer-bottom{
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-family: var(--mono); font-size: 0.75rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb{
  font-family: var(--mono); font-size:0.75rem; text-transform:uppercase; letter-spacing:0.04em;
  color: rgba(240,239,232,0.6); margin-bottom: 18px;
}
.breadcrumb a{ color: rgba(240,239,232,0.8); }
.breadcrumb a:hover{ color: var(--yellow); }

/* ---------- Utility ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }

/* ---------- Responsive ---------- */

/* Laptop / small desktop refinement */
@media (max-width: 1200px){
  :root{ --container: 96vw; }
}

/* ---------- Mobile nav backdrop (created dynamically by JS) ---------- */
.nav-backdrop{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.nav-backdrop.open{
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
/* Lock page scroll while the mobile menu is open */
body.nav-lock{ overflow: hidden; height: 100%; }

/* Tablet landscape & small laptop */
@media (max-width: 1000px){
  nav.main-nav{
    display:flex; flex-direction:column;
    position: fixed;
    top: var(--header-h, 96px); left:0; right:0; bottom:0;
    background: #ffc107;
    padding: 20px 28px 32px;
    gap:4px;
    overflow-y:auto; -webkit-overflow-scrolling: touch;
    z-index: 99;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .32s ease, visibility 0s linear .32s;
  }
  .menu-toggle{
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; min-width:40px; background:transparent; border:1px solid rgba(42,34,16,0.3);
    color: var(--graphite); font-size:1.2rem; cursor:pointer;
    position: relative; z-index: 101;
  }
  nav.main-nav.open{
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .32s ease, visibility 0s linear 0s;
  }
  nav.main-nav.open a{ padding:12px 0; border-bottom:1px solid rgba(42,34,16,0.15) !important; width:100%; }

  /* ===========================================================
     MOBILE ACCORDION NAVIGATION
     Fully self-contained — every property below is declared
     explicitly so nothing is inherited/leaked from the desktop
     .dropdown rule (no position:absolute, no transform,
     no min-width, no floating panel). Submenu lives in normal
     document flow inside the mobile menu container.
     =========================================================== */
  .has-dropdown{
    display:block; width:100%;
    border-bottom:1px solid rgba(42,34,16,0.15);
  }
  .has-dropdown > a{
    display:flex; align-items:center; justify-content:space-between;
    border-bottom:none !important;
    width:100%;
  }
  .has-dropdown > a .dd-arrow{
    display:inline-block; flex-shrink:0; margin-left:10px;
    width:9px; height:9px;
    border-right:2px solid currentColor; border-bottom:2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s ease;
  }
  .has-dropdown.dropdown-open > a .dd-arrow,
  .has-dropdown:hover > a .dd-arrow{ transform: rotate(-135deg); }

  .has-dropdown .dropdown{
    /* Reset every desktop positioning/animation property explicitly */
    position: static;
    top: auto; left: auto; right: auto;
    transform: none;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    /* Layout: normal block flow, full width, no floating panel */
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;

    /* Yellow-theme surface, no popup box */
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: auto;

    /* Collapsed state */
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    overflow-x: hidden;

    /* Smooth expand/collapse */
    transition: max-height .35s ease;
  }
  .has-dropdown.dropdown-open .dropdown,
  .has-dropdown:hover .dropdown{
    max-height: 1000px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .has-dropdown .dropdown a{
    display:block;
    position: static;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;

    color: rgba(42,34,16,0.75) !important;
    opacity: 1;
    background: transparent !important;

    padding: 11px 14px 11px 22px !important;
    margin: 0;
    border: none !important;
    border-bottom: 1px solid rgba(42,34,16,0.1) !important;

    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;

    transition: color .2s ease, padding-left .2s ease;
  }
  .has-dropdown .dropdown a:last-child{ border-bottom: none !important; }
  .has-dropdown .dropdown a:hover{
    color: var(--graphite) !important;
    background: rgba(42,34,16,0.06) !important;
    padding-left: 26px !important;
  }

  .grid-3, .grid-4{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; gap:30px; }
  .split.reverse{ direction: ltr; }
  .split img{ aspect-ratio: 4 / 3; }
  .icon-list{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid .img-card:nth-child(5n+1){ grid-column: span 1; grid-row: span 1; }
  .industry-row{ flex-direction:column; align-items:flex-start; gap:8px; }
  .industry-row p{ margin-left:0; }
  .plate-grid{ grid-template-columns: repeat(3,1fr); }
}

/* Tablet portrait */
@media (max-width: 768px){
  h1{ word-break: break-word; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .plate-grid{ grid-template-columns: repeat(2,1fr); }
  .machine-card .thumb{ aspect-ratio: 3/2; }
  table.spec-table{ font-size: 0.82rem; }
}

/* Large phones / small tablets */
@media (max-width: 620px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .icon-list{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:6px; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); gap:10px; }
  .plate-grid{ grid-template-columns: repeat(2,1fr); }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas .btn{ justify-content:center; text-align:center; }
  .cta-band .btn{ width:100%; justify-content:center; }
  .nav-wrap{ flex-wrap: nowrap; }
  .brand span.sub{ display:none; }
}

/* Small phones */
@media (max-width: 400px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .plate-grid{ grid-template-columns: 1fr 1fr; }
  .plate .num{ font-size: 2.1rem; }
  h1{ font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
  .btn{ font-size: 0.82rem; }
}

/* Landscape phones (short viewport height) */
@media (max-height: 480px) and (orientation: landscape){
  .hero{ min-height: 100vh; }
  .hero-content{ padding-top: 100px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* Reduce animated backdrop cost on low-end / small screens */
@media (max-width: 480px){
  section.on-dark::before, section.on-steel::before{ display:none; }
}


/* ============================================================
   MOTION LAYER — cursor glow, animated backgrounds, flip cards
============================================================ */

/* (Cursor-follow glow removed) */

/* ---------- Animated dotted-grid backdrop on dark sections ---------- */
section.on-dark, section.on-steel, .hero, .plate-strip{
  position: relative;
}
section.on-dark::before, section.on-steel::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  animation: driftGrid 18s linear infinite;
  pointer-events:none;
  z-index:0;
}
section.on-dark > .container, section.on-steel > .container{ position:relative; z-index:1; }
@keyframes driftGrid{
  0%{ background-position: 0 0; }
  100%{ background-position: 220px 220px; }
}

/* ---------- Scroll reveal (generic, JS-driven) ---------- */
.reveal-up{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-up.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Flip cards ---------- */
.flip-card{
  perspective: 1200px;
  height: clamp(200px, 32vw, 220px);
}
.flip-card-inner{
  position: relative;
  width: 100%; height: 100%;
  text-align: left;
  transition: transform .6s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.flip-card.is-flipped .flip-card-inner,
.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner{
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back{
  position: absolute; inset:0;
  backface-visibility: hidden;
  padding: clamp(18px,3vw,26px);
  display:flex; flex-direction:column; justify-content:center;
  border: 1px solid var(--line);
  overflow: auto;
}
.flip-card-front{
  background:#fff;
}
.flip-card-front:has(.cap-icon){
  align-items: center;
  text-align: center;
}
.flip-card-front:has(.cap-icon) .flip-hint{ justify-content:center; display:flex; }
.flip-card-front:has(p[style*="color:#fff"]){
  background: var(--graphite-2);
  border-color: rgba(255,255,255,0.14);
}
.flip-card-front::before{
  content:"";
  position:absolute; top:0; left:0; width:34px; height:3px;
  background: var(--yellow);
}
.flip-card-front h3{ margin-bottom:0; font-size:1.1rem; }
section.on-dark .flip-card-front h3,
section.on-steel .flip-card-front h3{ color: var(--graphite); }
section.on-steel .spec-table tr{ border-bottom-color: rgba(255,255,255,0.2); }
section.on-steel .spec-table td:first-child{ color: rgba(255,255,255,0.7); }
section.on-steel .spec-table td:last-child{ color: #fff; }
section.on-steel .card h3, section.on-dark .card h3{ color: var(--graphite) !important; }
section.on-steel .card p, section.on-dark .card p{ color: var(--ink-soft) !important; }
section.on-steel .card:hover h3, section.on-steel .card:active h3,
section.on-dark .card:hover h3, section.on-dark .card:active h3,
section.on-steel .card:hover p, section.on-steel .card:active p,
section.on-dark .card:hover p, section.on-dark .card:active p{ color:#fff !important; }
.flip-card-front .flip-hint{
  font-family: var(--mono); font-size:0.7rem; letter-spacing:0.06em;
  color: var(--ink-soft); text-transform:uppercase; margin-top:12px;
}
.flip-card-back{
  background: var(--accent2-dark);
  color: #fff;
  transform: rotateY(180deg);
  border-color: var(--accent2-dark);
}
.flip-card-back:has(.cap-icon-back){
  align-items: center;
  text-align: center;
}
.flip-card-back p{ color: rgba(255,255,255,0.92); font-size:0.92rem; margin:0; }
.flip-card-back .cap-icon-back{ color: var(--yellow); }

.flip-card-lg{ height: clamp(240px, 30vw, 320px); }
.flip-card-xl{ height: clamp(320px, 42vw, 460px); }
.flip-card-front .cap-icon{ margin-bottom: 12px; }

/* ---------- Simple testimonial card (static, no flip, no scroll) ---------- */
.testimonial-card{
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(22px,3vw,30px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before{
  content:"";
  position:absolute; top:0; left:0; width:34px; height:3px;
  background: var(--yellow);
}
.testimonial-card p.quote{
  font-style: italic;
  color: var(--graphite);
  font-size: 1rem;
  line-height: 1.55;
}
.testimonial-card p.attribution{
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 16px;
}

/* ---------- Center a leftover (incomplete) row inside a grid ---------- */
.center-row{
  grid-column: 1 / -1;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:34px;
}
.center-row.cols-3 > *{ flex: 0 1 calc((100% - 68px)/3); }
.center-row.cols-4 > *{ flex: 0 1 calc((100% - 102px)/4); }
@media (max-width: 900px){
  .center-row.cols-3 > *, .center-row.cols-4 > *{ flex: 0 1 calc(50% - 17px); }
}
@media (max-width: 620px){
  .center-row.cols-3 > *, .center-row.cols-4 > *{ flex: 0 1 100%; }
}

@media (max-width: 620px){
  section.on-dark::before, section.on-steel::before{ animation: none; }
}
@media (prefers-reduced-motion: reduce){
  .flip-card-inner{ transition:none; }
  section.on-dark::before, section.on-steel::before{ animation:none; }
}

/* ============================================================
   SCROLL EXPERIENCE — progress bar, header state, back-to-top
============================================================ */

/* ---------- Scroll progress bar ---------- */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--accent2));
  z-index: 999;
  transition: width .1s linear;
}

/* ---------- Header state on scroll ---------- */
.site-header{ transition: box-shadow .3s ease, padding .3s ease; }
.site-header.scrolled{
  box-shadow: 0 6px 24px rgba(19,26,36,0.28);
}
.site-header.scrolled .nav-wrap{ padding-top: 12px; padding-bottom: 12px; }
.site-header.scrolled .brand-logo{ height: clamp(32px, 6vw, 46px); transition: height .3s ease; }
.nav-wrap{ transition: padding .3s ease; }
.brand-logo{ transition: height .3s ease; }

/* ---------- Back to top button ---------- */
.back-to-top{
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--yellow);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display:flex; align-items:center; justify-content:center;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
  z-index: 90;
  box-shadow: 0 10px 26px rgba(19,26,36,0.35);
}
.back-to-top.visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--accent2); color:#fff; }

/* ---------- Broad section fade-in (progressive enhancement — only when JS runs) ---------- */
html.js section{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js section.section-in{
  opacity: 1;
  transform: translateY(0);
}
/* first section (hero) should always be visible immediately */
html.js .site-header + section, html.js section.hero{
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- Hero parallax image smoothing ---------- */
.hero img.hero-bg{ will-change: transform; transition: transform .05s linear; }

/* ---------- Image hover zoom polish (split, card thumbs) ---------- */
.split img{ transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.split:hover img, .split:active img{ transform: scale(1.05); }

/* ---------- Our Journey (horizontal timeline) ---------- */
/* ---------- Journey Zigzag Roadmap ---------- */
.journey-zigzag{
  position:relative;
  display:flex;
  flex-direction:column;
  margin-top: 10px;
}
.jz-track{ display:none; }
.jz-cell{ display:flex; flex-direction:column; align-items:center; }
.jz-cap{
  display:block; width:34px; height:3px; margin-bottom:12px; border-radius:2px;
}
.jz-card{ width:100%; }
.jz-card ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:7px; }
.jz-card li{ font-size:0.85rem; color: rgba(240,239,232,0.82); position:relative; padding-left:14px; }
.jz-card li::before{ content:"\203A"; position:absolute; left:0; color: var(--jz-teal); font-weight:700; }
.jz-cell[data-row="bottom"] .jz-card li::before{ color: var(--jz-purple); }
.jz-stub{ display:none; }
.jz-circle{
  position:static;
  width:64px; height:64px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-weight:700; font-size:0.88rem; color:#fff;
  border:4px solid var(--graphite); box-shadow:0 10px 22px rgba(0,0,0,0.35);
  margin: 0 0 16px;
  transition: transform .3s ease;
}
.journey-zigzag:hover .jz-circle{ transform: scale(1.02); }
.jz-circle.teal{ background: var(--jz-teal); }
.jz-circle.purple{ background: var(--jz-purple); }
.jz-cell:empty{ display:none; }

@media (min-width: 901px){
  .journey-zigzag{
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto 140px auto;
    row-gap:0;
    column-gap: 10px;
  }
  .jz-track{
    display:flex;
    grid-column: 1 / -1; grid-row: 2; align-self:center;
    height:16px; width:100%;
  }
  .jz-track .seg{
    flex:1; height:16px; margin-right:-16px;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 16px 50%);
  }
  .jz-track .seg:first-child{
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  }
  .jz-track .seg:last-child{ margin-right:0; }
  .jz-track .seg.teal{ background: var(--jz-teal); }
  .jz-track .seg.purple{ background: var(--jz-purple); }
  .jz-cell{ padding: 0 8px; }
  .jz-col-node{ position:relative; height:100%; padding:0; }
  .jz-col-node .jz-circle{ position:absolute; left:50%; transform:translateX(-50%); margin:0; }
  .jz-col-node.top .jz-circle{ top:0; }
  .jz-col-node.bottom .jz-circle{ bottom:0; }
  .jz-stub{
    display:block; width:2px; height:22px; flex-shrink:0;
    background: rgba(255,255,255,0.35);
    position:relative;
  }
  .jz-stub::after{
    content:""; position:absolute; left:50%; width:8px; height:8px; border-radius:50%;
    background: var(--graphite-2); border:2px solid rgba(255,255,255,0.6); transform: translateX(-50%);
  }
  .jz-cell[style*="grid-row:1"] .jz-stub::after{ bottom:-4px; }
  .jz-cell[style*="grid-row:3"] .jz-stub::after{ top:-4px; }
}

/* ---------- Glassmorphism (Our Mission / Our Vision) ---------- */
.glass-card{
  background: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.glass-card::before{
  background: var(--yellow);
  opacity: 0.85;
}
.glass-card::after{
  content:"";
  position:absolute; top:-40%; right:-20%;
  width: 220px; height:220px;
  background: radial-gradient(circle, rgba(240,180,41,0.18) 0%, transparent 70%);
  pointer-events:none;
}
.glass-card:hover{
  background: rgba(255,255,255,0.09) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.16);
}

.value-card{ cursor: pointer; user-select: none; }
.value-card p{ color: var(--graphite); transition: color .25s ease; }
.value-card.vc-yellow{ background: var(--yellow); border-color: var(--yellow); }
.value-card.vc-yellow p{ color: var(--graphite); }
.value-card.vc-blue{ background: var(--accent2); border-color: var(--accent2); }
.value-card.vc-blue p{ color: #fff; }
.value-card.vc-red{ background: var(--red); border-color: var(--red); }
.value-card.vc-red p{ color: #fff; }
.value-card.vc-yellow::before, .value-card.vc-blue::before, .value-card.vc-red::before{ background: var(--graphite); }

/* ---------- Machine product-page layout (image + info + checklist + CTAs) ---------- */
.product-split{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px){ .product-split{ grid-template-columns: 1fr; } }
.product-media{
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper-dim);
}
.product-media img{ width:100%; height:100%; object-fit:cover; display:block; aspect-ratio: 4/3; }
.check-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px 22px; margin:20px 0 0; list-style:none; padding:0; }
@media (max-width: 560px){ .check-list{ grid-template-columns:1fr; } }
.check-list li{ display:flex; gap:9px; align-items:flex-start; font-size:0.86rem; color:var(--graphite); line-height:1.4; }
.check-list li svg{ width:17px; height:17px; flex:none; color:var(--yellow); margin-top:2px; }
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top:26px; }

/* Specification chip row */
.chip-row{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.chip{
  background:#fff; border:1px solid var(--line); padding:11px 22px;
  font-family: var(--mono); font-size:0.8rem; color: var(--graphite); font-weight:600;
  white-space: nowrap;
}
.chip span{ color: var(--ink-soft); font-weight:400; text-transform:uppercase; font-size:0.7rem; letter-spacing:.04em; display:block; margin-bottom:3px; }

/* Benefit / application icon-card grid */
.benefit-card{ background:#fff; border:1px solid var(--line); padding: clamp(20px,2.4vw,26px); height:100%; }
.benefit-icon{
  width:42px; height:42px; border-radius:50%;
  background: var(--steel); color:#fff;
  display:flex; align-items:center; justify-content:center; margin-bottom:14px;
}
.benefit-icon svg{ width:19px; height:19px; }
.benefit-card h4{ font-size:0.94rem; margin:0 0 6px; color:var(--graphite); }
.benefit-card p{ font-size:0.82rem; color:var(--ink-soft); margin:0; }




/* ============ WhatsApp Floating Button ============ */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); box-shadow:0 8px 22px rgba(0,0,0,0.32); }
.whatsapp-float svg{ width:30px; height:30px; display:block; }
@media (max-width:640px){
  .whatsapp-float{ right:16px; bottom:16px; width:52px; height:52px; }
  .whatsapp-float svg{ width:27px; height:27px; }
}

/* ============ FAQ Accordion ============ */
.faq-list{ max-width:820px; margin:28px auto 0; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid rgba(255,255,255,0.12); border-radius:10px; overflow:hidden; background:rgba(255,255,255,0.03); }
.faq-item summary{ cursor:pointer; padding:16px 20px; font-weight:600; font-size:0.98rem; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:1.3rem; font-weight:400; flex-shrink:0; transition:transform .2s ease; }
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{ padding:0 20px 18px; margin:0; font-size:0.9rem; line-height:1.6; color:rgba(240,239,232,0.72); }
.on-dark .faq-item summary{ color:#fff; }
section:not(.on-dark):not(.on-steel) .faq-item{ border:1px solid rgba(20,24,30,0.12); background:rgba(20,24,30,0.02); }
section:not(.on-dark):not(.on-steel) .faq-item summary{ color:var(--graphite); }
section:not(.on-dark):not(.on-steel) .faq-item p{ color:var(--ink-soft); }
