:root {
  --navy-900: #0a0f1f;
  --navy-800: #0d1426;
  --navy-700: #111c3a;
  --navy-600: #15264f;
  --blue-500: #1e4fb0;
  --blue-400: #2f6fe0;
  --accent: #25d3c2;        /* subtle cyan/teal accent */
  --accent-2: #4f8cff;
  --ink: #0a0f1f;
  --slate-700: #2a3550;
  --slate-500: #5b6884;
  --slate-400: #8a96b3;
  --slate-200: #cfd6e6;
  --paper: #f6f8fc;
  --paper-2: #eef2f9;
  --white: #ffffff;
  --line: #e2e8f4;
  --shadow-sm: 0 2px 10px rgba(10, 15, 31, 0.06);
  --shadow-md: 0 12px 30px rgba(10, 15, 31, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 15, 31, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; color: var(--navy-900); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate-700); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 0.97rem;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(120deg, var(--blue-400), var(--blue-500));
  color: #fff; box-shadow: 0 10px 24px rgba(47, 111, 224, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(47, 111, 224, 0.45); }
.btn-accent {
  background: linear-gradient(120deg, var(--accent), #1bbfae);
  color: #042b29; box-shadow: 0 10px 24px rgba(37, 211, 194, 0.30);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(37, 211, 194, 0.45); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--blue-500); border-color: var(--blue-500); }
.btn-outline:hover { background: var(--blue-500); color: #fff; transform: translateY(-3px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 15, 31, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled { background: rgba(10, 15, 31, 0.96); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name { color: #fff; font-weight: 800; font-size: 1.16rem; letter-spacing: -0.02em; line-height: 1; }
.brand-name span { color: var(--accent); }
.brand-sub { display: block; color: var(--slate-400); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: var(--slate-200); font-weight: 600; font-size: 0.95rem;
  padding: 9px 15px; border-radius: 9px; transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 11px 22px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10, 15, 31, 0.98); backdrop-filter: blur(14px);
    padding: 12px 20px 26px; border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-130%); transition: transform var(--t); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; border-radius: 10px; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(8,12,26,0.96) 18%, rgba(10,15,31,0.82) 52%, rgba(14,30,70,0.62) 100%),
    radial-gradient(900px 500px at 85% 20%, rgba(37,211,194,0.18), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; padding: 130px 0 90px; max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(37,211,194,0.12); border: 1px solid rgba(37,211,194,0.35);
  color: var(--accent); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow svg { width: 15px; height: 15px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .grad { background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-tag { font-size: 1.18rem; color: var(--slate-200); font-weight: 600; margin-bottom: 14px; }
.hero-lead { font-size: 1.08rem; color: var(--slate-200); max-width: 620px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 38px; }
.hero-stats .stat strong { display: block; font-size: 2rem; color: #fff; font-weight: 800; }
.hero-stats .stat span { color: var(--slate-400); font-size: 0.86rem; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-dark { background: var(--navy-900); color: #fff; }
.section-tint { background: var(--paper); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker { display: inline-block; color: var(--blue-400); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.section-dark .kicker { color: var(--accent); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head p { font-size: 1.06rem; }
.section-dark .section-head p { color: var(--slate-200); }

/* ---------- Service / Feature cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--blue-400), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(47,111,224,0.12), rgba(37,211,194,0.14));
  color: var(--blue-500); margin-bottom: 20px;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; }
.card ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.card ul li { position: relative; padding-left: 26px; font-size: 0.93rem; color: var(--slate-700); }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--accent); -webkit-mask: var(--check) center/contain no-repeat; mask: var(--check) center/contain no-repeat;
}
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--blue-500); font-weight: 700; font-size: 0.92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform var(--t); }
.card:hover .card-link svg { transform: translateX(4px); }

:root { --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

/* ---------- Feature / why-choose rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media .badge {
  position: absolute; left: 22px; bottom: 22px; background: rgba(10,15,31,0.85); backdrop-filter: blur(8px);
  color: #fff; padding: 14px 18px; border-radius: 14px; display: flex; gap: 12px; align-items: center; border: 1px solid rgba(255,255,255,0.12);
}
.split-media .badge svg { width: 26px; height: 26px; color: var(--accent); }
.split-media .badge strong { display: block; font-size: 1.05rem; }
.split-media .badge span { font-size: 0.78rem; color: var(--slate-400); }

.feature-list { list-style: none; display: grid; gap: 20px; margin-top: 26px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .fi {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); color: var(--accent);
}
.feature-list .fi svg { width: 23px; height: 23px; }
.feature-list h4 { font-size: 1.04rem; margin-bottom: 3px; color: var(--navy-900); }
.section-dark .feature-list h4 { color: #fff; }
.feature-list p { font-size: 0.95rem; margin: 0; }
.section-dark .feature-list p { color: var(--slate-200); }

/* ---------- Trust strip ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: transform var(--t), background var(--t); }
.trust-item:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }
.trust-item .ti-ic { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(37,211,194,0.16), rgba(79,140,255,0.16)); color: var(--accent); }
.trust-item .ti-ic svg { width: 27px; height: 27px; }
.trust-item h4 { color: #fff; font-size: 1.02rem; margin-bottom: 7px; }
.trust-item p { color: var(--slate-400); font-size: 0.88rem; margin: 0; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
@media (max-width: 700px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stats-band .sb strong { display: block; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-band .sb span { color: var(--slate-200); font-weight: 600; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); }
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card .stars { color: #ffb020; letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.quote-card blockquote { font-size: 1.02rem; color: var(--navy-800); font-weight: 500; margin-bottom: 22px; }
.quote-card .who { display: flex; align-items: center; gap: 13px; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-500), var(--accent)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.quote-card .who strong { display: block; font-size: 0.96rem; color: var(--navy-900); }
.quote-card .who span { font-size: 0.84rem; color: var(--slate-500); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; padding: 64px 50px; color: #fff; box-shadow: var(--shadow-lg); }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,12,26,0.95), rgba(20,38,79,0.86)); }
.cta-band .cta-inner { position: relative; z-index: 2; max-width: 680px; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: var(--slate-200); font-size: 1.06rem; margin-bottom: 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 600px) { .cta-band { padding: 44px 26px; } }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; color: #fff; padding: 150px 0 80px; overflow: hidden; }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(8,12,26,0.95) 30%, rgba(14,30,70,0.7)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero p { color: var(--slate-200); font-size: 1.1rem; max-width: 620px; margin-top: 16px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--slate-400); margin-bottom: 18px; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--accent); }

/* ---------- Industries ---------- */
.ind-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 280px; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); }
.ind-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ind-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,12,26,0.94) 8%, rgba(8,12,26,0.45) 55%, rgba(8,12,26,0.15)); }
.ind-card:hover img { transform: scale(1.08); }
.ind-card .ind-body { position: relative; z-index: 2; padding: 26px; color: #fff; }
.ind-card .ind-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(37,211,194,0.18); border: 1px solid rgba(37,211,194,0.4); display: grid; place-items: center; color: var(--accent); margin-bottom: 14px; }
.ind-card .ind-ic svg { width: 24px; height: 24px; }
.ind-card h3 { color: #fff; margin-bottom: 6px; }
.ind-card p { color: var(--slate-200); font-size: 0.92rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 42px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 7px; color: var(--navy-800); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.6px solid var(--line); border-radius: 11px;
  font: inherit; font-size: 0.96rem; color: var(--navy-900); background: var(--paper); transition: border var(--t), box-shadow var(--t), background var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); background: #fff; box-shadow: 0 0 0 4px rgba(47,111,224,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.83rem; color: var(--slate-500); margin-top: 8px; }
.form-success { display: none; background: rgba(37,211,194,0.12); border: 1px solid rgba(37,211,194,0.4); color: #0a6f64; padding: 14px 18px; border-radius: 12px; font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }
.form-error { display: none; background: rgba(220,38,38,0.10); border: 1px solid rgba(220,38,38,0.4); color: #b91c1c; padding: 14px 18px; border-radius: 12px; font-weight: 600; margin-bottom: 18px; }
.form-error a { color: #b91c1c; text-decoration: underline; }
.form-error.show { display: block; }

.info-card { background: var(--navy-800); color: #fff; border-radius: var(--radius-lg); padding: 30px; }
.info-card h3 { color: #fff; margin-bottom: 20px; }
.info-row { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(37,211,194,0.15); display: grid; place-items: center; color: var(--accent); }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .it-label { font-size: 0.78rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.info-row .it-val { color: #fff; font-weight: 600; }
.info-row .it-val span { display: block; font-weight: 400; color: var(--slate-200); font-size: 0.92rem; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--slate-200); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand-name { font-size: 1.2rem; }
.footer-about p { color: var(--slate-400); font-size: 0.94rem; margin: 16px 0 18px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--slate-400); font-size: 0.94rem; transition: color var(--t), padding var(--t); }
.footer ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate-400); font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: var(--slate-200); transition: background var(--t), transform var(--t); }
.socials a:hover { background: var(--blue-500); color: #fff; transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 0.86rem; color: var(--slate-500); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.lead-block { max-width: 760px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { background: var(--paper-2); border: 1px solid var(--line); color: var(--navy-700); font-weight: 600; font-size: 0.88rem; padding: 8px 16px; border-radius: 999px; }
.section-dark .pill { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: var(--slate-200); }
