/* ==========================================================================
   DigiHibe — Design System
   Palette: Paper #F4F5F1 · Ink #101319 · Signal (coral) #FF5A3C
            Growth (green) #1F8A5A · Gold #E8B84B · Slate #5B6270
   Display: Space Grotesk · Body: Inter · Utility: IBM Plex Mono
   Signature motif: the "growth staircase" — an ascending stepped bar
   silhouette used throughout as the brand's recurring visual signature.
   ========================================================================== */

:root {
  --paper: #F4F5F1;
  --paper-dim: #E9EAE3;
  --ink: #101319;
  --ink-soft: #1B2029;
  --signal: #FF5A3C;
  --signal-dark: #E14526;
  --growth: #1F8A5A;
  --growth-light: #2FAE73;
  --gold: #E8B84B;
  --slate: #5B6270;
  --slate-light: #8A90A0;
  --line: rgba(16, 19, 25, 0.1);
  --line-dark: rgba(244, 245, 241, 0.14);

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

  --container: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--signal);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.3rem; }

.italic-accent { font-style: italic; color: var(--growth); }

.lede {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 620px;
}

.section {
  padding: 108px 0;
  position: relative;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }
.section--dark .lede { color: var(--slate-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: var(--signal-dark); }
.btn-secondary { background: var(--growth); color: #fff; }
.btn-secondary:hover { background: var(--growth-light); }
.btn-outline { border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.section--dark .btn-outline { border-color: var(--line-dark); color: var(--paper); }
.section--dark .btn-outline:hover { border-color: var(--paper); }
.btn-ghost { color: var(--ink); border-bottom: 1px solid var(--ink); border-radius: 0; padding: 4px 0; }
.section--dark .btn-ghost { color: var(--paper); border-color: var(--paper); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .stair {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}
.logo .stair span {
  width: 4px;
  background: var(--signal);
  display: block;
}
.logo .stair span:nth-child(1){ height: 6px; }
.logo .stair span:nth-child(2){ height: 11px; background: var(--growth); }
.logo .stair span:nth-child(3){ height: 16px; background: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav > ul { display: flex; gap: 34px; align-items: center; }
.main-nav a.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--signal);
  transition: width 0.2s ease;
}
.main-nav a.nav-link:hover::after { width: 100%; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  background: var(--ink);
  color: var(--paper);
  min-width: 240px;
  border-radius: var(--radius);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 0.9rem;
}
.dropdown a:hover { background: rgba(255,255,255,0.06); color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { font-family: var(--font-mono); font-size: 0.85rem; color: var(--slate); }

.nav-toggle { display: none; background: none; border: none; }
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-nav-cta { display: none; }

@media (max-width: 640px) {
  .header-cta .btn-primary { display: none; }
  .logo { font-size: 1.15rem; }
}

@media (max-width: 960px) {
  .main-nav { position: fixed; inset: 78px 0 0 0; background: var(--ink); color: var(--paper);
    flex-direction: column; align-items: flex-start; padding: 30px 24px; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.28s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 4px; }
  .main-nav a.nav-link { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-dark); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; width: 100%; margin: 4px 0 10px; }
  .has-dropdown.open .dropdown { display: block; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav-cta {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: var(--signal);
    color: #fff;
    font-weight: 600;
    padding: 15px 0;
    border-radius: var(--radius);
    width: 100%;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin: 14px 0 22px; }
.hero .lede { margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.stat-row .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--growth);
}
.stat-row .label { font-size: 0.82rem; color: var(--slate); margin-top: 4px; }

.hero-visual {
  position: relative;
  background: var(--ink);
  border-radius: 10px;
  padding: 30px;
  color: var(--paper);
  min-height: 420px;
}
.stair-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 160px;
  margin: 30px 0 26px;
}
.stair-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--growth-light), var(--growth));
  border-radius: 3px 3px 0 0;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.stair-chart .bar:nth-child(1){ height: 28%; animation-delay: 0s; }
.stair-chart .bar:nth-child(2){ height: 42%; animation-delay: .08s; }
.stair-chart .bar:nth-child(3){ height: 58%; animation-delay: .16s; }
.stair-chart .bar:nth-child(4){ height: 74%; animation-delay: .24s; background: linear-gradient(180deg,#ffd479,var(--gold)); }
.stair-chart .bar:nth-child(5){ height: 100%; animation-delay: .32s; background: linear-gradient(180deg,#ff9075,var(--signal)); }
@keyframes rise { from { transform: scaleY(0); transform-origin: bottom; opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.visual-metric { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--line-dark); }
.visual-metric:last-child { border-bottom: 1px solid var(--line-dark); }
.visual-metric .m-label { font-size: 0.85rem; color: var(--slate-light); }
.visual-metric .m-value { font-family: var(--font-mono); color: var(--gold); font-size: 0.95rem; }

.live-pill {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 0.7rem;
  background: rgba(31,138,90,0.18); color: var(--growth-light);
  padding: 5px 10px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--growth-light); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Logo strip ---------- */
.logo-strip { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-strip .strip-label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; text-align: center;}
.marquee { overflow: hidden; white-space: nowrap; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: inline-flex; gap: 60px; animation: scroll-x 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.1rem; color: var(--slate-light); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow .22s ease;
  position: relative;
}
.card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 20px 40px rgba(16,19,25,0.08); }
.card .icon { font-size: 1.8rem; margin-bottom: 18px; display: block; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.94rem; margin-bottom: 18px; }
.card .card-link { font-family: var(--font-mono); font-size: 0.82rem; color: var(--signal); font-weight: 600; }
.card::before {
  content: '';
  position: absolute; top: 0; left: 28px;
  width: 26px; height: 3px; background: var(--signal);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.card:hover::before { transform: scaleX(1); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.view-all { text-align: center; margin-top: 44px; }

/* ---------- Why us / features ---------- */
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 22px; padding: 26px 0;
  border-top: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: 1px solid var(--line); }
.feature-item .icon { font-size: 1.6rem; }
.feature-item h4 { margin-bottom: 6px; }
.feature-item p { color: var(--slate); font-size: 0.92rem; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.dashboard-card {
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 30px;
}
.dashboard-card .eyebrow { color: var(--gold); }
.dash-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin: 22px 0 28px; }
.dash-stats .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--growth-light); }
.dash-stats .label { font-size: 0.78rem; color: var(--slate-light); }
.quote-block { border-top: 1px solid var(--line-dark); padding-top: 22px; }
.quote-block p { font-style: italic; color: #dfe1e6; margin-bottom: 12px; }
.quote-block .who { font-family: var(--font-mono); font-size: 0.8rem; color: var(--slate-light); }
.exp-row { display: flex; gap: 40px; margin-top: 24px; }
.exp-row .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.exp-row .label { font-size: 0.78rem; color: var(--slate-light); }

/* ---------- Process ---------- */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 30px; padding: 34px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item .step-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--slate-light); }
.process-item .step-bar { width: 100%; height: 4px; background: var(--paper-dim); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.process-item .step-bar span { display: block; height: 100%; background: var(--signal); }
.process-item h3 { margin-bottom: 8px; }
.process-item p { color: var(--slate); max-width: 560px; }

/* ---------- Industries ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.metric-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; text-align: center; }
.metric-strip .num { font-family: var(--font-display); font-size: 2.1rem; color: var(--growth); }
.metric-strip .label { font-size: 0.85rem; color: var(--slate); margin-top: 6px; }
@media (max-width: 700px) { .metric-strip { grid-template-columns: repeat(2,1fr); } }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.testi-card p { color: var(--ink); font-size: 0.96rem; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.95rem;
}
.testi-person .name { font-weight: 600; font-size: 0.9rem; }
.testi-person .role { font-size: 0.78rem; color: var(--slate); }

/* ---------- Blog ---------- */
.blog-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.blog-card .blog-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); color: var(--slate-light); font-size: 0.8rem;
}
.blog-card .blog-body { padding: 24px; }
.blog-card .tag { font-family: var(--font-mono); font-size: 0.72rem; color: var(--signal); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card .date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--slate-light); }
.blog-card h3 { margin: 12px 0 10px; font-size: 1.1rem; }
.blog-card p { color: var(--slate); font-size: 0.9rem; margin-bottom: 14px; }
.blog-meta-row { display: flex; justify-content: space-between; margin-bottom: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  background-image: radial-gradient(circle at 15% 20%, rgba(31,138,90,0.22), transparent 45%),
                     radial-gradient(circle at 85% 85%, rgba(255,90,60,0.18), transparent 50%);
  color: var(--paper);
  border-radius: 14px;
  padding: 76px 50px;
  text-align: center;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.cta-band h2 { max-width: 700px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band .btn-outline { border-color: var(--line-dark); color: var(--paper); }
.cta-band .btn-outline:hover { border-color: var(--paper); background: rgba(255,255,255,0.06); }
.cta-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
  margin-top: 38px; padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  position: relative; z-index: 1;
}
.cta-trust .item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--slate-light);
}
.cta-trust .item strong { color: var(--gold); font-family: var(--font-body); }
.cta-band .stair-deco { position: absolute; bottom: 0; right: 0; display: flex; align-items: flex-end; gap: 8px; opacity: .35; z-index: 0; }
.cta-band .stair-deco span { width: 14px; background: var(--signal); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--slate-light); padding: 80px 0 30px; margin-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
.footer-grid h5 { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); margin-bottom: 18px; }
.footer-grid a, .footer-grid p { font-size: 0.9rem; color: var(--slate-light); display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { max-width: 320px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a { width: 36px; height: 36px; border: 1px solid var(--line-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.footer-form { display: flex; margin-top: 6px; border-bottom: 1px solid var(--line-dark); padding-bottom: 8px; }
.footer-form input { background: none; border: none; color: var(--paper); flex: 1; font-family: var(--font-body); font-size: 0.9rem; }
.footer-form input:focus { outline: none; }
.footer-form button { background: none; border: none; color: var(--gold); font-size: 1.2rem; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { margin-left: 20px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Inner page hero (services/about/contact) ---------- */
.page-hero {
  padding: 64px 0 60px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb { font-family: var(--font-mono); font-size: 0.78rem; color: var(--slate-light); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--signal); }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.page-hero-visual {
  background: var(--ink);
  border-radius: 10px;
  padding: 32px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.visual-icon-badge {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 22px;
}
.page-hero-visual .visual-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}
.page-hero-visual .visual-sub {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-bottom: 22px;
}
.industry-stat-highlight {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--growth-light);
  line-height: 1;
  margin-bottom: 8px;
}
.rec-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.rec-chip-row span {
  font-family: var(--font-mono); font-size: 0.72rem;
  background: rgba(255,255,255,0.06); color: var(--slate-light);
  padding: 6px 12px; border-radius: 20px;
}

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { min-height: unset; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.85rem; margin-bottom: 8px; font-weight: 500; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line);
  border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; background: #fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--signal); }
.contact-info-item { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.contact-info-item:last-child { border-bottom: 1px solid var(--line); }
.contact-info-item .icon { font-size: 1.4rem; }
.contact-info-item h4 { margin-bottom: 4px; }
.contact-info-item p { color: var(--slate); font-size: 0.9rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.mt-0{margin-top:0} .center-text{text-align:center}
.tag-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px;}
.tag-pill{font-family:var(--font-mono);font-size:.75rem;border:1px solid var(--line);padding:6px 14px;border-radius:20px;color:var(--slate);}

@media (max-width: 700px) {
  .section { padding: 70px 0; }
  .cta-band { padding: 50px 26px; margin: 0 16px; }
}
