/* ============================================================
   BuiltINcode — Global Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #07262e;
  --ink-2: #0b323c;
  --red: #cb1f27;
  --red-dark: #a4151c;
  --bg: #e9f3f9;
  --bg-soft: #f4f9fc;
  --white: #ffffff;
  --line: #dde9f0;
  --muted: #5b6b72;
  --muted-light: #9fb3ba;
  --radius: 10px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-mono);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  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; }
input, textarea { font-family: inherit; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.3px; }
h3 { font-size: 1.25rem; }

.text-red { color: var(--red); }
.muted { color: var(--muted); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow.light { color: #ffb3b6; }
.eyebrow.white { color: #ffffff; }

.lead {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
}

.mono { font-family: var(--font-mono); }

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #e3eef6;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn .icon { width: 16px; height: 16px; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: #b9cdd8; color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: #ffe9ea; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

.link-more {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-more .icon { width: 14px; height: 14px; }
.link-more:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.logo span { color: var(--red); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); font-weight: 600; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
}
.nav-toggle .icon { width: 26px; height: 26px; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-light { background: var(--bg); }
.section-soft { background: var(--bg-soft); }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .lead, .section-dark .muted { color: #9eb6bd; }
.section-red { background: var(--red); color: #fff; }
.section-red .lead { color: #ffd2d4; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 90px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 26px;
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.hero-media { position: relative; }
.hero-media img {
  border-radius: 14px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(7, 38, 46, 0.25);
}
.hero-media.framed img { border: 10px solid var(--ink); }
.floating-tag {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(203, 31, 39, 0.4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 64px;
}
.hero-stats strong { font-size: 1.9rem; font-weight: 700; display: block; }
.hero-stats span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- Trusted bar ---------- */
.trusted { padding: 44px 0; border-top: 1px solid var(--line); }
.trusted p {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 70px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: #8aa0a8;
}

/* ---------- Generic cards ---------- */
.grid { display: grid; gap: 24px; }
.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: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(7, 38, 46, 0.08);
}
.card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: 0.85rem; font-weight: 300; margin-bottom: 16px; }
.card .icon-box { width: 42px; height: 42px; margin-bottom: 16px; }

.card-dark {
  background: var(--ink-2);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.card-dark p { color: #9eb6bd; }

/* ---------- Feature rows (icon + text) ---------- */
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.feature-row .icon-box { margin-bottom: 0; }
.feature-row h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-row p { color: var(--muted); font-size: 0.83rem; font-weight: 300; }

/* ---------- Check list ---------- */
.check-list { display: grid; gap: 12px; margin: 24px 0; }
.check-list.cols-2 { grid-template-columns: repeat(2, 1fr); }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}
.check-list .icon { width: 18px; height: 18px; color: var(--red); }
.section-dark .check-list .icon { color: #ff5a61; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
}
.step { text-align: left; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-num.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.step-num.red { background: var(--red); color: #fff; border-color: var(--red); }
.step h4 { font-size: 0.92rem; margin-bottom: 6px; }
.step p { font-size: 0.78rem; color: var(--muted); font-weight: 300; }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split .media img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfdde2;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo { color: #fff; font-size: 1.25rem; }
.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  color: #9eb6bd;
  margin: 18px 0 24px;
  max-width: 240px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfdde2;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-social .icon { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #7e979f;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.85rem; color: #cfdde2; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #7e979f;
}
.footer-bottom .links { display: flex; gap: 28px; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   HOME
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}
.solution-tile {
  border-radius: var(--radius);
  padding: 34px 30px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
}
.solution-tile.red { background: var(--red); border-color: var(--red); }
.solution-tile .eyebrow { margin-bottom: 10px; }
.solution-tile h3 { margin-bottom: 10px; color: #fff; }
.solution-tile p { color: rgba(255,255,255,0.72); font-size: 0.85rem; font-weight: 300; margin-bottom: 18px; }
.solution-tile .link-more { color: #fff; }

/* ---------- Excellence ---------- */
.excellence-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.excellence-cards .card { padding: 22px; }
.excellence-cards h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.excellence-cards h4 .icon { width: 18px; height: 18px; color: var(--red); }
.excellence-cards p { font-size: 0.78rem; margin: 0; }

/* ---------- Blog cards ---------- */
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(7, 38, 46, 0.1);
}
.post-thumb { position: relative; }
.post-thumb img { height: 210px; width: 100%; object-fit: cover; }
.post-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(7, 38, 46, 0.85);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.post-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.post-body p { color: var(--muted); font-size: 0.83rem; font-weight: 300; margin-bottom: 18px; flex: 1; }

/* ============================================================
   SERVICES
   ============================================================ */
.stack-col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.stack-col h4 .icon { width: 18px; height: 18px; color: var(--red); }
.stack-col .card { margin-bottom: 14px; padding: 18px; }
.stack-col .card h5 { font-size: 0.88rem; margin-bottom: 6px; }
.stack-col .card p { font-size: 0.76rem; margin: 0; }

.case-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-card img { height: 220px; width: 100%; object-fit: cover; opacity: 0.85; }
.case-body { padding: 28px; }
.case-tags { display: flex; gap: 10px; margin-bottom: 16px; }
.case-tags span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 5px 10px;
  color: #cfdde2;
}
.case-body h3 { color: #fff; margin-bottom: 10px; }
.case-body > p { color: #9eb6bd; font-size: 0.85rem; font-weight: 300; margin-bottom: 22px; }
.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.case-stats div {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 16px;
}
.case-stats strong { display: block; font-size: 1.25rem; color: #fff; }
.case-stats span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 1px;
  color: #7e979f;
  text-transform: uppercase;
}

.tech-chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.tech-chips span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 10px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #cfdde2;
  transition: all 0.2s;
}
.tech-chips span:hover { border-color: var(--red); color: #fff; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}
.faq-q .icon { width: 18px; height: 18px; transition: transform 0.25s; color: var(--muted); }
.faq-item.open .faq-q .icon { transform: rotate(180deg); color: var(--red); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.metric-strip div {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.metric-strip span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
}
.metric-strip strong { font-size: 1.3rem; }

.quote-card {
  position: absolute;
  bottom: -24px;
  left: -30px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 20px 45px rgba(7,38,46,0.15);
}
.quote-card p { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink); margin-bottom: 8px; }
.quote-card cite { font-family: var(--font-mono); font-size: 0.68rem; color: var(--red); font-style: normal; }

.arch-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; margin-bottom: 22px; }
.arch-grid:last-child { margin-bottom: 0; }
.arch-tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
}
.arch-tile.dark {
  background: linear-gradient(135deg, #200a0c 0%, #461014 60%, #7c161c 100%);
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.arch-tile.dark p { color: rgba(255,255,255,0.75); }
.arch-tile h3 { margin: 14px 0 10px; }
.arch-tile p { color: var(--muted); font-size: 0.86rem; font-weight: 300; margin-bottom: 18px; }
.arch-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.arch-chips span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 5px 10px;
}
.arch-tile img { border-radius: 8px; height: 170px; width: 100%; object-fit: cover; }
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.bullet-list li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 2px solid var(--red);
  flex-shrink: 0;
}

.integration-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.integration-icons div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.integration-icons .icon { width: 26px; height: 26px; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-band strong { font-size: 2.6rem; font-weight: 700; display: block; }
.stat-band span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: #ff8a8f;
  text-transform: uppercase;
  display: block;
  margin: 6px 0 10px;
}
.stat-band p { font-size: 0.78rem; color: #9eb6bd; font-weight: 300; }

.compliance-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 50px auto 0;
}
.compliance-badges div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 16px;
  text-align: center;
}
.compliance-badges .icon { width: 26px; height: 26px; color: var(--ink); margin: 0 auto 14px; }
.compliance-badges span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
}

.security-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.security-pill .icon { width: 14px; height: 14px; color: var(--red); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  margin-bottom: 28px;
}
.industry-panel.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.industry-panel.dark .lead { color: #9eb6bd; }
.industry-panel.light-blue { background: var(--bg); border-color: var(--bg); }
.industry-panel .media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.industry-panel .body { padding: 50px 46px; display: flex; flex-direction: column; justify-content: center; }
.industry-panel h2 { margin-bottom: 16px; }
.industry-panel .lead { font-size: 0.9rem; margin-bottom: 6px; }

.mini-tags li {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.mini-tags li::before { content: "// "; color: var(--red); }

.duo-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 22px 0 26px; }
.duo-feature h4 { font-size: 0.88rem; margin-bottom: 4px; }
.duo-feature p { font-size: 0.78rem; color: var(--muted); font-weight: 300; }

/* ============================================================
   BLOG
   ============================================================ */
.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.featured-post .media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.featured-post .body { padding: 50px 46px; display: flex; flex-direction: column; }
.featured-post h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.featured-post .lead { font-size: 0.92rem; flex: 1; }

.author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}
.author { display: flex; align-items: center; gap: 12px; }
.author img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.author strong { display: block; font-size: 0.85rem; }
.author span { font-size: 0.75rem; color: var(--muted); font-weight: 300; }
.read-article {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 44px 0;
}
.topic-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-filters button {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 30px;
  transition: all 0.2s;
}
.topic-filters button:hover { color: var(--red); }
.topic-filters button.active { background: var(--ink); color: #fff; }

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 240px;
}
.blog-search .icon { width: 16px; height: 16px; color: var(--muted); }
.blog-search input {
  border: none;
  outline: none;
  font-size: 0.82rem;
  width: 100%;
  background: transparent;
  color: var(--ink);
}

.newsletter {
  background: linear-gradient(135deg, #07262e 0%, #0b323c 60%, #123a45 100%);
  border-radius: 14px;
  padding: 70px 40px;
  text-align: center;
  color: #fff;
  margin: 50px 0;
}
.newsletter h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 16px; }
.newsletter p { color: #9eb6bd; font-size: 0.9rem; font-weight: 300; max-width: 460px; margin: 0 auto 30px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  border: none;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.85rem;
  outline: none;
}
.form-note { margin-top: 16px; font-family: var(--font-mono); font-size: 0.72rem; color: #7ee2a8; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
}
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--ink); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .dots { border: none; background: none; }
.pagination .icon { width: 14px; height: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.mission-vision .card { padding: 44px 38px; }
.mission-vision h2 { margin: 18px 0 16px; }
.mission-vision p { font-size: 0.9rem; }

.careers-banner { position: relative; overflow: hidden; }
.careers-banner::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  background: rgba(255,255,255,0.06);
  transform: rotate(35deg);
}
.careers-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.careers-stats { display: flex; gap: 16px; justify-content: flex-end; }
.careers-stats div {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 26px 30px;
  text-align: center;
  min-width: 130px;
}
.careers-stats strong { font-size: 2rem; display: block; }
.careers-stats span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 1px; color: #ffd2d4; }

.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.location-list li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 36px;
}
.form-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.form-label::before { content: "// "; color: var(--red); }
.form-field { margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--ink); }

.budget-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.budget-options button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 13px 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  transition: all 0.2s;
}
.budget-options button:hover { border-color: var(--ink); }
.budget-options button.selected { border-color: var(--red); color: var(--red); }

.contact-info .office { margin-bottom: 30px; }
.contact-info .office h2 { font-size: 1.5rem; margin-bottom: 4px; }
.contact-info .office p { color: var(--muted); font-size: 0.88rem; font-weight: 300; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 0.92rem;
}
.contact-line .icon-box { width: 42px; height: 42px; margin: 0; background: var(--ink); color: #fff; }
.contact-line .icon-box .icon { width: 18px; height: 18px; }

.trusted-box {
  background: #d9ecf5;
  border-radius: 10px;
  padding: 24px;
  margin-top: 30px;
}
.trusted-box p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.trusted-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #7e959e;
  letter-spacing: 1px;
}

.session-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 16px 28px;
  color: var(--ink);
  text-align: center;
}
.session-media { position: relative; margin-bottom: 22px; }
.session-media img { border-radius: 10px; height: 240px; width: 100%; object-fit: cover; }
.session-media .cal-icon {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 30px rgba(203,31,39,0.45);
}
.session-card h3 { margin-bottom: 6px; }
.session-card > p { color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; }

.global-banner {
  position: relative;
  padding: 140px 0;
  background-image: linear-gradient(rgba(7,38,46,0.35), rgba(7,38,46,0.55)), url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  filter: grayscale(20%);
  text-align: center;
}
.global-banner h2 {
  display: inline-block;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 30px 50px;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .careers-grid,
  .featured-post, .solutions-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .industry-panel { grid-template-columns: 1fr; }
  .industry-panel .media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .tech-chips { grid-template-columns: repeat(3, 1fr); }
  .compliance-badges { grid-template-columns: repeat(2, 1fr); }
  .arch-grid { grid-template-columns: 1fr; }
  .careers-stats { justify-content: flex-start; }
  .quote-card { position: static; max-width: none; margin-top: 16px; box-shadow: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5%;
    gap: 18px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .grid-2, .grid-3, .grid-4, .excellence-cards,
  .check-list.cols-2, .duo-feature, .form-row,
  .budget-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .tech-chips { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  section { padding: 60px 0; }
  .hero-stats { gap: 30px; }
  .author-row { flex-direction: column; align-items: flex-start; }
}
