/* ==========================================================================
   SmartTech Group — Premium Corporate Theme
   Dark executive design language. Shared across HTML preview & WordPress theme.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette (per brand brief) */
  --bg:            #090D14;
  --bg-alt:        #0B1019;
  --card:          #111827;
  --card-2:        #0E1521;
  --navy:          #0033A0;
  --navy-soft:     #0A2A7A;
  --silver:        #A7AAB5;
  --gold:          #D4AF37;
  --gold-soft:     #b8962e;
  --white:         #FFFFFF;
  --text-2:        #B7BEC7;
  --line:          rgba(167,170,181,.14);
  --line-strong:   rgba(167,170,181,.26);

  /* Type */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Scale */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ti: 220ms var(--ease-out);

  /* Shadows */
  --sh-sm: 0 2px 10px rgba(0,0,0,.35);
  --sh-md: 0 14px 40px rgba(0,0,0,.45);
  --sh-glow: 0 8px 30px rgba(212,175,55,.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-2);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ti); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head p { margin-top: 16px; font-size: 1.06rem; }
.lead { font-size: 1.12rem; color: var(--text-2); }
.muted { color: var(--silver); }

.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-head);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform var(--ti), box-shadow var(--ti), background var(--ti), border-color var(--ti), color var(--ti);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: #0b0b0b; box-shadow: 0 4px 16px rgba(212,175,55,.18); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); background: #e0bd45; }
.btn-gold:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--silver); background: rgba(167,170,181,.07); }
.btn-ghost:active { transform: translateY(0); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); background: #0a3cc0; box-shadow: 0 10px 30px rgba(0,51,160,.4); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--ti), border-color var(--ti), backdrop-filter var(--ti);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9,13,20,.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 52px; height: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,.5)); transition: transform var(--ti); }
.brand:hover .brand-logo { transform: translateY(-2px) scale(1.03); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: 1.04rem; letter-spacing: .08em;
}
.brand-name b { color: var(--silver); font-weight: 700; }
.brand-tag { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-head); font-size: .9rem; font-weight: 500;
  color: var(--text-2); position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width var(--ti);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: #fff; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 60px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(9,13,20,.96) 0%, rgba(9,13,20,.86) 38%, rgba(10,24,60,.55) 70%, rgba(9,13,20,.7) 100%),
    radial-gradient(120% 90% at 0% 50%, rgba(9,13,20,.6), transparent 60%);
}
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.15rem; max-width: 620px; margin-bottom: 34px; color: var(--text-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* stat cards */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(48px, 7vw, 80px);
}
.stat {
  background: linear-gradient(180deg, rgba(17,24,39,.86), rgba(14,21,33,.86));
  border: 1px solid var(--line); border-radius: 10px; padding: 26px 22px;
  backdrop-filter: blur(6px);
  transition: transform var(--ti), border-color var(--ti), box-shadow var(--ti);
}
.stat:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.4); box-shadow: var(--sh-md); }
.stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: #fff; }
.stat .num span { color: var(--gold); }
.stat .lbl { font-size: .9rem; margin-top: 6px; color: var(--silver); }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line); border-radius: 12px; padding: 30px;
  transition: transform var(--ti), border-color var(--ti), box-shadow var(--ti);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 320ms var(--ease-out);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--sh-md); }
.card:hover::before { width: 64px; }
.card .ico {
  width: 52px; height: 52px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(0,51,160,.16); border: 1px solid rgba(167,170,181,.18);
  margin-bottom: 20px; color: var(--gold);
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { color: #fff; margin-bottom: 10px; }
.card p { font-size: .96rem; }

/* small capability blocks */
.blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.block {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card-2); border: 1px solid var(--line); border-radius: 10px; padding: 20px;
  transition: transform var(--ti), border-color var(--ti);
}
.block:hover { transform: translateY(-3px); border-color: rgba(212,175,55,.35); }
.block .dot {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(212,175,55,.12); color: var(--gold);
}
.block .dot svg { width: 20px; height: 20px; }
.block b { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .98rem; display: block; }
.block span { font-size: .85rem; color: var(--silver); }

/* ---------- Split sections (image + text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
.split-media { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; transition: transform 600ms var(--ease-out); }
.split-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,13,20,.55)); }
.split-media:hover img { transform: scale(1.04); }

/* who-we-are side panel */
.op-panel {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 32px;
}
.op-panel h3 { color: var(--gold); font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; }
.op-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.op-item:last-of-type { border-bottom: 0; }
.op-item b { color: #fff; font-family: var(--font-head); display: block; margin-bottom: 4px; }
.op-item span { font-size: .88rem; color: var(--silver); }
.op-note { margin-top: 20px; font-size: .82rem; color: var(--silver); border-left: 2px solid var(--gold); padding-left: 14px; font-style: italic; }

/* ---------- Industries (image overlay cards) ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind {
  position: relative; border-radius: 12px; overflow: hidden; min-height: 230px;
  border: 1px solid var(--line); display: flex; align-items: flex-end; padding: 26px;
  background: var(--card);
  transition: transform var(--ti), border-color var(--ti), box-shadow var(--ti);
}
.ind::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,13,20,.25) 0%, rgba(9,13,20,.78) 70%, rgba(9,13,20,.94) 100%);
  z-index: 1;
}
.ind .ind-bg { position: absolute; inset: 0; z-index: 0; }
.ind .ind-bg svg { width: 100%; height: 100%; opacity: .5; }
.ind .ind-body { position: relative; z-index: 2; }
.ind h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ind h3 i { width: 18px; height: 3px; background: var(--gold); display: inline-block; border-radius: 2px; }
.ind p { font-size: .9rem; }
.ind:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.4); box-shadow: var(--sh-md); }

/* ---------- Leadership ---------- */
.leader {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: center;
}
.leader-photo {
  position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: var(--sh-md);
}
.leader-photo img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: top center; }
/* Preserve the full portrait on About, including when hovered. */
.split-media img[src$="leadership_current.png"] { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transform: none; }
.leader-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9,13,20,.6));
}
.leader-photo .badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  background: rgba(9,13,20,.78); border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 12px 16px; backdrop-filter: blur(6px);
}
.leader-photo .badge b { color: #fff; font-family: var(--font-head); display: block; }
.leader-photo .badge span { color: var(--gold); font-size: .8rem; }
.leader-name { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-top: 6px; }
.leader-title { color: var(--gold); font-family: var(--font-head); font-weight: 600; margin-top: 4px; }
.leader-sub { color: var(--silver); font-size: .9rem; letter-spacing: .04em; margin-top: 6px; }
.leader-bio { margin-top: 22px; }
.leader-bio p { margin-bottom: 14px; }
.quote {
  margin-top: 28px; padding: 24px 28px; border-left: 3px solid var(--gold);
  background: rgba(212,175,55,.06); border-radius: 0 10px 10px 0;
  font-family: var(--font-head); color: #fff; font-size: 1.12rem; font-style: italic; line-height: 1.5;
}

/* ---------- Regional presence ---------- */
.region-tags { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line-strong); border-radius: 40px;
  padding: 12px 22px; font-family: var(--font-head); font-weight: 600; color: #fff; font-size: .95rem;
  transition: transform var(--ti), border-color var(--ti);
}
.tag:hover { transform: translateY(-3px); border-color: var(--gold); }
.tag i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.map-wrap { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card-2); padding: 20px; }
.map-wrap svg { width: 100%; height: auto; }

/* ---------- Article (single insight) ---------- */
.article-hero { padding-top: 150px; padding-bottom: 40px; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 1.55rem; margin: 36px 0 14px; }
.article-body h3 { margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; font-size: 1.05rem; }
.article-body ul.bul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.article-body ul.bul li { margin-bottom: 8px; }
.note-banner {
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.3);
  border-radius: 10px; padding: 18px 22px; margin: 24px 0; font-size: .92rem; color: var(--text-2);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding-top: 160px; padding-bottom: 70px; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(80% 120% at 80% 0%, rgba(0,51,160,.22), transparent 55%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.page-hero .crumbs { font-size: .82rem; color: var(--silver); margin-bottom: 16px; font-family: var(--font-head); letter-spacing: .04em; }
.page-hero .crumbs a:hover { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 5vw, 56px); }
.form-card { background: linear-gradient(180deg, var(--card), var(--card-2)); border: 1px solid var(--line); border-radius: 14px; padding: clamp(26px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-size: .85rem; font-weight: 500; color: var(--white); margin-bottom: 7px; }
.field .req { color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 12px 14px; color: #fff; font-family: var(--font-body); font-size: .95rem;
  transition: border-color var(--ti), box-shadow var(--ti);
}
input::placeholder, textarea::placeholder { color: #5b626d; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.14); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A7AAB5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--gold); }
.consent label { font-family: var(--font-body); font-weight: 400; color: var(--text-2); font-size: .9rem; margin: 0; }
.privacy-note { font-size: .82rem; color: var(--silver); margin-top: 16px; border-left: 2px solid var(--line-strong); padding-left: 12px; }
.contact-info-card { background: var(--card-2); border: 1px solid var(--line); border-radius: 14px; padding: 32px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ci-item:last-child { border-bottom: 0; }
.ci-item .ci-ico { color: var(--gold); flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; }
.ci-item b { color: #fff; font-family: var(--font-head); display: block; font-size: .9rem; }
.ci-item span, .ci-item a { color: var(--text-2); font-size: .92rem; word-break: break-word; }
.ci-item a:hover { color: var(--gold); }
.form-success { display:none; background: rgba(0,120,60,.12); border:1px solid rgba(60,180,100,.4); color:#bdf0cf; border-radius:10px; padding:16px 18px; margin-bottom:18px; font-size:.92rem; }
.form-success.show { display:block; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; font-size: 1.02rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-top: clamp(48px, 7vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; margin-bottom: 12px; max-width: 420px; }
.footer-brand .ops { font-size: .86rem; color: var(--silver); }
.footer-brand .ops b { color: var(--text-2); }
.footer-col h4 { font-family: var(--font-head); color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: .92rem; color: var(--text-2); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-activities { font-size: .8rem; color: var(--silver); padding: 24px 0; border-top: 1px solid var(--line); }
.footer-legal { font-size: .8rem; color: var(--silver); padding-bottom: 24px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom small { font-size: .8rem; color: var(--silver); }
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .fb-links a { font-size: .8rem; color: var(--silver); }
.footer-bottom .fb-links a:hover { color: var(--gold); }

/* ---------- Reveal animation (no CLS) ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .ind-grid, .blocks, .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open + .mobile-menu { display: block; }
  .split, .leader, .contact-grid { grid-template-columns: 1fr; }
  .split.rev { direction: ltr; }
  .leader-photo { max-width: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-4, .ind-grid, .blocks, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  section { padding-block: 56px; }
}

/* Mobile menu */
.mobile-menu {
  display: none; background: rgba(9,13,20,.98); border-bottom: 1px solid var(--line);
  padding: 16px var(--gut) 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 0; font-family: var(--font-head); color: var(--text-2); border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn { margin-top: 18px; width: 100%; justify-content: center; }


/* ---------- Refined restart-positioning components ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.focus-card {
  background: linear-gradient(180deg, rgba(17,24,39,.92), rgba(14,21,33,.94));
  border: 1px solid var(--line); border-radius: 12px; padding: 24px;
  transition: transform var(--ti), border-color var(--ti), box-shadow var(--ti);
  min-height: 220px;
}
.focus-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.38); box-shadow: var(--sh-md); }
.focus-card .kicker { color: var(--gold); font-family: var(--font-head); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.focus-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.focus-card p { font-size: .9rem; color: var(--text-2); }
.service-list { list-style: none; padding: 0; margin-top: 18px; display: grid; gap: 10px; }
.service-list li { position: relative; padding-left: 22px; font-size: .94rem; color: var(--text-2); }
.service-list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 2px; background: var(--gold); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 14px; color: #fff; font-family: var(--font-head); font-size: .78rem; background: rgba(17,24,39,.72); }
.pill.gold { color: #0b0b0b; background: var(--gold); border-color: var(--gold); font-weight: 700; }
.safe-note { background: rgba(0,51,160,.14); border: 1px solid rgba(167,170,181,.20); border-left: 3px solid var(--gold); border-radius: 10px; padding: 18px 20px; color: var(--text-2); font-size: .92rem; margin-top: 22px; }
.offer-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer { background: var(--card-2); border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.offer .num { color: var(--gold); font-family: var(--font-head); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.offer h3 { font-size: 1.06rem; }
.offer p { margin-top: 8px; font-size: .9rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.t-step { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.t-step b { color: #fff; font-family: var(--font-head); display: block; margin-bottom: 8px; }
.t-step span { font-size: .88rem; color: var(--silver); }
.truth-card { background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(0,51,160,.10)); border: 1px solid rgba(212,175,55,.26); border-radius: 14px; padding: 30px; }
.truth-card h3 { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .95rem; margin-bottom: 14px; }
.truth-card p { margin-bottom: 12px; }
.figure-note { color: var(--silver); font-size: .82rem; margin-top: 10px; }
.hidden-public { display: none !important; }

@media (max-width: 1200px) { .focus-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .focus-grid, .offer-strip, .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .focus-grid, .offer-strip, .timeline { grid-template-columns: 1fr; } }


/* ===== SmartTech V2 — Opportunity-led positioning additions ===== */
.grid.cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.card[href] { display:block; }
.card[href]:hover h3 { color:var(--gold); }
.process-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:14px; counter-reset:steps; }
.process-step { background:linear-gradient(180deg,var(--card),var(--card-2)); border:1px solid var(--line); border-radius:14px; padding:24px 20px; min-height:190px; position:relative; transition:transform var(--ti),border-color var(--ti),box-shadow var(--ti); }
.process-step:hover { transform:translateY(-4px); border-color:rgba(212,175,55,.35); box-shadow:var(--sh-md); }
.process-step > span { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border:1px solid rgba(212,175,55,.42); color:var(--gold); border-radius:50%; font-family:var(--font-head); font-weight:700; font-size:.82rem; margin-bottom:18px; }
.process-step h3 { font-size:1.05rem; margin-bottom:10px; }
.process-step p { font-size:.91rem; }
.proof-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.proof-card { background:var(--card); border:1px solid var(--line); border-radius:14px; padding:25px; position:relative; overflow:hidden; }
.proof-card::before { content:""; position:absolute; left:0; top:0; height:3px; width:54px; background:var(--gold); }
.proof-num { font-family:var(--font-head); font-size:clamp(1.5rem,3vw,2.35rem); font-weight:800; color:var(--gold); margin-bottom:8px; }
.proof-card h3 { font-size:1rem; margin-bottom:8px; }
.proof-card p { font-size:.9rem; }
.timeline { max-width:980px; margin-inline:auto; position:relative; }
.timeline::before { content:""; position:absolute; left:112px; top:0; bottom:0; width:1px; background:linear-gradient(var(--gold),rgba(212,175,55,.08)); }
.timeline-item { display:grid; grid-template-columns:90px 1fr; gap:44px; position:relative; padding:0 0 34px; }
.timeline-item::before { content:""; position:absolute; left:106px; top:7px; width:13px; height:13px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 5px rgba(212,175,55,.10); }
.timeline-year { color:var(--gold); font-family:var(--font-head); font-weight:700; text-align:right; font-size:.88rem; }
.timeline-item h3 { font-size:1.08rem; margin-bottom:7px; }
.timeline-item p { max-width:700px; }
.pill-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.pill { display:inline-flex; border:1px solid var(--line-strong); background:rgba(255,255,255,.025); color:var(--text-2); border-radius:999px; padding:9px 14px; font-size:.86rem; transition:border-color var(--ti),color var(--ti),background var(--ti); }
a.pill:hover { color:var(--gold); border-color:rgba(212,175,55,.45); background:rgba(212,175,55,.06); }
.cta-band { position:relative; overflow:hidden; background:radial-gradient(90% 140% at 100% 0%,rgba(0,51,160,.22),transparent 56%),radial-gradient(90% 140% at 0% 100%,rgba(212,175,55,.09),transparent 52%),var(--bg-alt); }
.card .ico { font-family:var(--font-head); font-weight:700; }
@media (max-width: 980px) {
  .process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process-step:last-child { grid-column:span 2; }
  .proof-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .grid.cols-2 { grid-template-columns:1fr; }
}
@media (max-width: 620px) {
  .process-grid, .proof-grid { grid-template-columns:1fr; }
  .process-step:last-child { grid-column:auto; }
  .timeline::before { left:9px; }
  .timeline-item { grid-template-columns:1fr; gap:8px; padding-left:34px; }
  .timeline-item::before { left:3px; top:6px; }
  .timeline-year { text-align:left; }
}

/* V2 refinement: shared layout, navigation and accessible interactions. */
.hero { isolation:isolate; }
.hero > .container { width:100%; }
.timeline { display:block; }
.nav { gap:20px; height:auto; min-height:78px; padding-block:12px; }
.brand { flex-shrink:0; }
.nav-links { gap:18px; min-width:0; flex-wrap:wrap; justify-content:flex-end; }
.nav-links a { white-space:nowrap; }
.nav-links a[href="contact.html"] { color:var(--gold); }
.nav-cta:has(.nav-toggle) { flex-shrink:0; }
.site-header { background:rgba(9,13,20,.96); }
html { scroll-padding-top:calc(var(--header-height,78px) + 20px); }
.hero { padding-top:max(120px,calc(var(--header-height,78px) + 36px)); }
.page-hero { padding-top:max(160px,calc(var(--header-height,78px) + 48px)); }
.skip-link { position:fixed; top:8px; left:16px; z-index:200; padding:12px 20px; background:var(--gold); color:var(--bg); transform:translateY(-160%); }
.skip-link:focus { transform:none; }
:focus-visible { outline:2px solid var(--gold); outline-offset:5px; }
.btn { white-space:normal; text-align:center; justify-content:center; min-height:44px; }
.nav-toggle { min-width:44px; min-height:44px; }
.mobile-menu { max-height:calc(100dvh - var(--header-height,78px)); overflow-y:auto; }
.mobile-menu a[aria-current="page"] { color:var(--gold); }
.brand-logo { height:auto; }
.stat, .card, .proof-card, .split > *, .footer-top > * { min-width:0; }
.stat .num { font-size:clamp(1.35rem,2.1vw,1.9rem); }
.timeline-year { overflow-wrap:anywhere; }
.reveal { opacity:1; transform:none; }
.eyebrow { font-size:.875rem; letter-spacing:.13em; }
.brand-tag { font-size:.75rem; letter-spacing:.08em; }
.footer-legal, .footer-bottom small, .footer-bottom .fb-links a { font-size:.875rem; }
.op-item span, .op-note, .pill, .privacy-note { font-size:.9375rem; }
.card p, .process-step p, .proof-card p { font-size:1rem; }
input, select, textarea { font-size:1rem; }
input::placeholder, textarea::placeholder { color:#969eaa; }
.consent a, .privacy-note a, .prose a { text-decoration:underline; text-underline-offset:3px; }
.form-status:not(:empty) { padding:16px; margin:16px 0; border-left:3px solid var(--gold); background:var(--card); }
#copyInquiry { margin:10px 0 10px 10px; }
#draftFallback { margin-top:20px; }
#draftFallback[hidden] { display:none; }
.footer-col a, .op-item a { overflow-wrap:anywhere; }
@media(max-width:1200px) {
 .nav-links { display:none; }
 .nav-toggle { display:inline-flex; }
}
@media(min-width:1201px) { .mobile-menu.open { display:none; } }
@media(max-width:620px) {
 .brand-name { font-size:.875rem; letter-spacing:.03em; }
 .brand-tag { font-size:.75rem; letter-spacing:0; }
 .brand-logo { width:40px; }
 .brand { gap:9px; }
 .nav { gap:8px; }
 .stats, .footer-top, .grid.cols-3 { grid-template-columns:1fr; }
 .footer-brand { grid-column:auto; }
 .hero { min-height:initial; padding-top:120px; }
 .hero-actions, .cta-band .btn { width:100%; }
 .hero-actions .btn { width:100%; }
 .card, .op-panel { padding:24px; }
 #copyInquiry { margin-left:0; }
}
@media(prefers-reduced-motion:reduce) {
 html { scroll-behavior:auto; }
 *, *::before, *::after { animation:none!important; transition:none!important; }
}
@media(max-width:380px) {
 .site-header .brand-tag { display:none; }
 .site-header .brand-logo { width:32px; }
 .site-header .brand { flex-shrink:1; }
 .site-header .brand-text { min-width:0; }
}
