/* ==========================================================================
   artandtech — Engineering & Construction
   Design tokens: Navy Deep / Signal Orange / Paper Cream
   Display: Barlow Condensed | Body: Inter | Mono/labels: IBM Plex Mono
   ========================================================================== */

:root {
  --navy-deep: #0F1E3C;
  --navy-ink: #16294D;
  --navy-soft: #24365C;
  --orange: #E85D1F;
  --orange-light: #F2905A;
  --cream: #F5F2EA;
  --white: #FFFFFF;
  --steel: #6B7280;
  --steel-light: #9CA3AF;
  --ink: #14213D;
  --border: rgba(15, 30, 60, 0.12);
  --border-strong: rgba(15, 30, 60, 0.22);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(15,30,60,0.06), 0 8px 24px rgba(15,30,60,0.05);
}

/* ---- Inline SVG icons (self-contained, no external font dependency) ---- */
.fa-svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; fill: currentColor; flex-shrink: 0; }
.icon-badge .fa-svg { width: 1.25rem; height: 1.25rem; }

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.05;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--steel); }
.lede { font-size: 1.15rem; color: var(--navy-ink); font-style: italic; font-family: var(--font-body); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.02rem; }

/* ---- Layout helpers ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section.tight { padding: 56px 0; }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.68); }
.bg-white { background: var(--white); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---- Blueprint texture (signature motif) ---- */
.blueprint-bg {
  position: relative;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}
.corner-frame {
  position: relative;
  padding: 18px;
}
.corner-frame::before,
.corner-frame::after,
.corner-frame > .cf-tr,
.corner-frame > .cf-bl {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--orange);
  border-style: solid;
  border-width: 0;
}
.corner-frame::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.corner-frame::after { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #cf5119; transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { border-color: var(--border-strong); color: var(--navy-deep); }
.btn-outline-dark:hover { border-color: var(--navy-deep); background: rgba(15,30,60,0.04); }
.btn-block-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,242,234,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark-img { height: 36px; width: auto; display: block; }
.footer-brand .brand-mark-img, .quote-banner .brand-mark-img { height: 32px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; letter-spacing: 0.3px; color: var(--navy-deep); text-transform: none; }
.brand-word .accent { color: var(--orange); }
.brand-tagline { display: flex; justify-content: space-between; width: 100%; font-family: var(--font-mono); font-size: 0.56rem; text-transform: uppercase; color: var(--steel); margin-top: 3px; }
.footer-brand .brand-word, .quote-banner .brand-word { color: var(--white); }
.footer-brand .brand-tagline, .quote-banner .brand-tagline { color: rgba(255,255,255,0.55); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-deep); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero .hero-bg-img { position: absolute; top:0; right:0; bottom:0; left:0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero::after {
  content: "";
  position: absolute; top:0; right:0; bottom:0; left:0;
  background: linear-gradient(100deg, rgba(15,30,60,0.97) 0%, rgba(15,30,60,0.88) 38%, rgba(15,30,60,0.55) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--orange); }
.hero .lede { color: rgba(255,255,255,0.75); max-width: 560px; margin: 22px 0 34px; font-size: 1.1rem; }
.hero-stats { display: flex; gap: 40px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--orange); line-height: 1; }
.hero-stat .lbl { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }
.hero-stat .stat-note { font-family: var(--font-mono); font-size: 0.56rem; color: rgba(255,255,255,0.4); margin: 4px 0 0; line-height: 1.3; min-height: 14px; }

.page-hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 70px 0 56px;
  overflow: hidden;
}
.page-hero .hero-bg-img { position: absolute; top:0; right:0; bottom:0; left:0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero::after {
  content: "";
  position: absolute; top:0; right:0; bottom:0; left:0;
  background: linear-gradient(100deg, rgba(15,30,60,0.96) 0%, rgba(15,30,60,0.85) 45%, rgba(15,30,60,0.55) 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); }
.page-hero .lede { color: rgba(255,255,255,0.7); max-width: 620px; margin-top: 16px; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }

/* ---- Image placeholders ---- */
.img-placeholder {
  position: relative;
  background: repeating-linear-gradient(135deg, rgba(15,30,60,0.05), rgba(15,30,60,0.05) 10px, rgba(15,30,60,0.02) 10px, rgba(15,30,60,0.02) 20px);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--steel);
  text-align: center;
}
.img-placeholder .ph-inner { padding: 20px; }
.img-placeholder .ph-icon { font-size: 1.6rem; margin-bottom: 8px; opacity: 0.5; }
.img-placeholder .ph-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.5; }
.ratio-hero { aspect-ratio: 16/10; }
.ratio-square { aspect-ratio: 1/1; }
.ratio-wide { aspect-ratio: 21/9; }
.ratio-portrait { aspect-ratio: 3/4; }
.ratio-card { aspect-ratio: 4/3; }

/* ---- Cards ---- */
.card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--orange); transform: translateY(-3px); }
.card .icon-badge { margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; text-transform: none; }
.card p { font-size: 0.92rem; }

/* Hover background image reveal (Layanan sub-service cards) */
.card-hover-bg {
  position: absolute; top:0; right:0; bottom:0; left:0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.35s ease;
  z-index: 0; pointer-events: none;
}
.card:hover .card-hover-bg { opacity: 0.26; }
.card > *:not(.card-hover-bg) { position: relative; z-index: 1; }
.subserv-card.is-clickable { cursor: pointer; }
.subserv-card.is-clickable:hover { box-shadow: 0 10px 30px rgba(15,30,60,0.1); }

/* ---- Service detail modal ---- */
.service-modal {
  display: none;
  position: fixed; top:0; right:0; bottom:0; left:0; z-index: 200;
  background: rgba(15,30,60,0.72);
  align-items: center; justify-content: center;
  padding: 24px;
}
.service-modal.open { display: flex; }
.service-modal-card {
  background: var(--cream);
  border-radius: 6px;
  max-width: 640px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.service-modal-media {
  width: 100%; aspect-ratio: 16/9;
  background: var(--navy-deep);
  background-size: cover; background-position: center;
  position: relative;
  display: flex; align-items: flex-end;
}
.service-modal-media::after {
  content: ""; position: absolute; top:0; right:0; bottom:0; left:0;
  background: linear-gradient(180deg, rgba(15,30,60,0.1), rgba(15,30,60,0.92));
}
.service-modal-media .icon-badge {
  position: relative; z-index: 1; margin: 24px;
  width: 64px; height: 64px; font-size: 1.6rem;
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: var(--orange);
}
.service-modal-body { padding: 28px 30px 32px; }
.service-modal-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-modal-body p { font-size: 0.98rem; line-height: 1.65; }
.service-modal-highlights { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-modal-highlights .mh-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--navy-ink); }
.service-modal-highlights .mh-item .fa-svg { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.service-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(15,30,60,0.5); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: none; font-size: 1.1rem; cursor: pointer;
}
.service-modal-close:hover { background: var(--orange); }
.service-modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.3rem;
}
.bg-navy .icon-badge { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }

/* ---- Service icon strip (home) ---- */
.icon-strip { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 40px 0; }
.icon-strip-item { flex: 1; min-width: 120px; text-align: center; }
.icon-strip-item .icon-badge { margin: 0 auto 12px; }
.icon-strip-item .lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-ink); }

/* ---- Numbered steps (real sequences only) ---- */
.step {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step .step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  min-width: 56px;
}
.step h3 { margin-bottom: 6px; text-transform: none; font-size: 1.1rem; }
.step p { font-size: 0.92rem; }

/* ---- Value / feature grid ---- */
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item h3 { font-size: 1rem; text-transform: none; margin-bottom: 6px; }
.value-item p { font-size: 0.88rem; }

/* ---- Quote / CTA banner ---- */
.quote-banner {
  background: var(--navy-deep);
  color: var(--white);
  padding: 56px 0;
  position: relative;
}
.quote-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.quote-banner .mark { font-family: var(--font-display); font-size: 3.5rem; color: var(--orange); line-height: 0.6; }
.quote-banner p.quote-text { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--white); text-transform: uppercase; max-width: 640px; letter-spacing: 0.3px; }

.cta-band { background: var(--orange); padding: 56px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.6); }

/* ---- Tabs (services page) ---- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.tab-btn {
  background: none; border: none;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 4px; margin-right: 28px;
  color: var(--steel);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--navy-deep); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Sub-service mini card ---- */
.subserv-card { display: flex; flex-direction: column; gap: 14px; }
.subserv-card .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.tag {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.02em;
  background: var(--cream); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 20px; color: var(--navy-ink);
}

/* ---- Portfolio ---- */
.project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.project-card .pc-body { padding: 22px 24px 26px; }
.pc-status {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(232,93,31,0.1); color: var(--orange);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 12px;
}
.pc-status.status-ongoing { background: rgba(37,99,235,0.1); color: #2563eb; }
.pc-status.status-commissioned { background: rgba(15,30,60,0.08); color: var(--navy-deep); }
.filter-group-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel-light); margin: 0 4px 10px 0; align-self: center; }
.pc-scope { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.pc-scope li { font-size: 0.85rem; color: var(--steel); padding: 3px 0; position: relative; padding-left: 16px; }
.pc-scope li::before { content: "—"; position: absolute; left: 0; color: var(--orange); }
.pc-loc { font-family: var(--font-mono); font-size: 0.72rem; color: var(--steel-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.03em; }

.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.filter-row:last-of-type { margin-bottom: 40px; }
.filter-btn, .status-filter-btn {
  background: var(--white); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 20px; color: var(--navy-ink);
}
.filter-btn.active, .status-filter-btn.active { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }
.status-filter-btn.active[data-status-filter="ongoing"] { background: #2563eb; border-color: #2563eb; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-item h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--navy-deep); font-size: 0.98rem; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy-ink); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--border-strong);
  border-radius: var(--radius); background: var(--white); font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--orange); outline: none; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--steel-light); margin-top: 10px; }

.map-placeholder { min-height: 320px; }

/* ---- Team / discipline grid ---- */
.team-card { text-align: left; }
.team-card ul { margin-top: 10px; }
.team-card li { font-size: 0.85rem; color: var(--steel); padding: 3px 0; position: relative; padding-left: 14px; }
.team-card li::before { content: "·"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ---- Legal / cert placeholder tiles ---- */
.doc-tile {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
}
.doc-tile .doc-icon { color: var(--steel-light); font-size: 1.4rem; margin-bottom: 10px; }
.doc-tile h4 { font-size: 0.92rem; color: var(--navy-deep); margin-bottom: 6px; }
.doc-tile p { font-size: 0.8rem; }

/* ---- Footer ---- */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { margin-top: 16px; color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 260px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; }

/* ---- WhatsApp float button ---- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---- Scroll reveal ----
   Content is fully visible by default (opacity:1) so nothing depends on JS
   to be readable. JS only adds a subtle settle-in motion as enhancement. */
.reveal { opacity: 1; transform: translateY(10px); transition: transform 0.6s ease; }
.reveal.in { transform: translateY(0); }

/* ---- Industries strip ---- */
.industry-card { position: relative; overflow: hidden; }
.industry-card .ic-label { position: absolute; bottom: 14px; left: 16px; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); z-index: 2; background: rgba(15,30,60,0.6); padding: 5px 10px; border-radius: 3px; }

/* ---- Testimonials (placeholder, ready to swap for real quotes) ---- */
.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 26px;
  box-shadow: var(--shadow-card);
}
.testimonial-card.is-placeholder { border: 1.5px dashed var(--border-strong); box-shadow: none; }
.t-rating { display: flex; gap: 3px; margin-bottom: 4px; }
.t-rating .fa-svg { width: 13px; height: 13px; color: #f5a623; }
.t-source {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--steel-light);
  margin-top: 10px;
}
.t-source .fa-svg { width: 12px; height: 12px; color: var(--orange); }
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial-card .t-quote { font-size: 0.94rem; color: var(--navy-ink); font-style: italic; line-height: 1.6; }
.testimonial-card .t-meta { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); }
.testimonial-card .t-name { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.03em; color: var(--navy-deep); font-weight: 600; }
.testimonial-card .t-role { font-size: 0.78rem; color: var(--steel-light); margin-top: 2px; }
.testimonial-placeholder-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--steel-light); background: var(--cream); border: 1px solid var(--border); padding: 3px 9px; border-radius: 20px;
  position: absolute; top: -11px; right: 20px;
}
/* ---- Utilities ---- */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.muted { color: var(--steel); }


/* ---- Legalities layout ---- */
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.legal-regs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reg-card {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--white);
}
.reg-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.reg-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-deep);
  word-break: break-all;
  line-height: 1.35;
}
.legal-kbli {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: var(--white);
}
.kbli-header {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.kbli-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kbli-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  align-items: baseline;
}
.kbli-row:last-child {
  border-bottom: none;
}
.kbli-code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
}
.kbli-title {
  font-size: 0.86rem;
  color: var(--navy-deep);
  line-height: 1.35;
}

@media (max-width: 860px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-regs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .legal-regs {
    grid-template-columns: 1fr;
  }
  .kbli-row {
    grid-template-columns: 64px 1fr;
    gap: 8px;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border); transform: translateY(-150%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta .btn-primary span { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .icon-strip { justify-content: flex-start; }
  .icon-strip-item { min-width: 45%; }
  .hero { padding: 90px 0 70px; }
  .hero-stats { gap: 28px; }
  .quote-banner .container, .cta-band .container { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 0; }
}
