:root {
  --primary: #0f172a;
  --secondary: #1d4ed8;
  --accent: #dc2626;
  --background: #f8fafc;
  --surface: #ffffff;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 18px 45px rgba(15, 23, 42, .1);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--background); line-height: 1.65; }
a { color: var(--secondary); text-decoration: none; }
a:hover { color: #123ca8; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--primary); font-weight: 800; letter-spacing: 0; line-height: 1.12; }
h1 { font-size: clamp(2.35rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.08rem; }
p { margin-bottom: 1rem; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 1100; padding: .75rem 1rem; background: var(--primary); color: #fff; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid rgba(29, 78, 216, .45); outline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(15, 23, 42, .08); }
.navbar { min-height: 82px; transition: min-height .2s ease; }
.site-header.is-scrolled .navbar { min-height: 68px; }
.navbar-brand { display: flex; align-items: center; margin-right: 1.5rem; padding: .35rem 0; }
.site-logo { display: block; width: auto; max-width: 160px; height: 56px; object-fit: contain; }
.footer-logo { display: block; width: auto; max-width: 170px; height: auto; max-height: 132px; object-fit: contain; background: #fff; }
.nav-link { color: var(--primary); font-weight: 650; padding: .65rem .8rem !important; position: relative; border-radius: 8px; transition: color .3s ease, background-color .3s ease; }
.nav-link::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem; height: 3px; border-radius: 999px; background: var(--secondary); transform: scaleX(0); transform-origin: center; transition: transform .3s ease; }
.nav-link:hover, .nav-link:focus-visible { color: var(--secondary); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--secondary); font-weight: 700; background: rgba(29, 78, 216, .08); }
.btn { border-radius: 8px; font-weight: 700; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; }
.btn-primary { background: var(--secondary); border-color: var(--secondary); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: #b91c1c; border-color: #b91c1c; color: #fff; }
.hero { min-height: 720px; position: relative; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-media, .page-hero::before { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-home .hero-media { background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82"); }
.hero-overlay, .page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(15,23,42,.88), rgba(15,23,42,.62), rgba(15,23,42,.28)); }
.hero-content { position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 4rem; }
.hero h1, .hero p { color: #fff; max-width: 830px; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.88) !important; max-width: 720px; }
.eyebrow, .section-label { display: inline-flex; align-items: center; gap: .5rem; color: var(--secondary); background: rgba(29,78,216,.08); border: 1px solid rgba(29,78,216,.12); padding: .42rem .72rem; border-radius: 999px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0; margin-bottom: 1rem; }
.hero .eyebrow, .page-hero .eyebrow { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.hero-actions, .trust-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.6rem; }
.trust-row { margin-top: 2rem; }
.trust-row span { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: rgba(255,255,255,.92); background: rgba(255,255,255,.08); }
.section { padding: 92px 0; background: var(--surface); }
.section-soft { background: var(--background); }
.section-head { max-width: 780px; margin: 0 auto 2.5rem; text-align: center; }
.section-img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.stats-strip { margin-top: -58px; position: relative; z-index: 3; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.35rem 1rem; height: 100%; }
.stat-card strong { display: block; color: var(--primary); font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.15; }
.stat-card span { color: var(--muted); font-weight: 650; }
.check-grid, .strength-list, .process-grid { display: grid; gap: .8rem; }
.check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1.3rem; }
.check-grid span, .strength-list span, .process-grid span { min-height: 44px; display: flex; align-items: center; gap: .6rem; padding: .8rem .9rem; border: 1px solid var(--border); background: #fff; border-radius: var(--radius); font-weight: 650; color: var(--primary); }
.check-grid i { color: #16a34a; }
.feature-card, .service-card, .benefit-card, .value-card, .contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 10px 30px rgba(15,23,42,.05); height: 100%; }
.feature-card.tall { padding: 2rem; }
.icon-xl { font-size: 2.2rem; color: var(--secondary); margin-bottom: 1rem; display: inline-block; }
.service-grid, .benefit-grid, .value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card { transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover, .benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card i, .benefit-card i { width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center; color: var(--secondary); background: rgba(29,78,216,.08); font-size: 1.35rem; margin-bottom: 1rem; }
.industry-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.industry-grid div { min-height: 112px; padding: 1.2rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: .6rem; color: var(--primary); font-weight: 750; }
.industry-grid i { color: var(--secondary); font-size: 1.6rem; }
.industry-grid.large div { min-height: 140px; }
.timeline { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .8rem; position: relative; }
.timeline-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; min-height: 190px; position: relative; box-shadow: 0 8px 24px rgba(15,23,42,.05); }
.timeline-item span { width: 38px; height: 38px; border-radius: 999px; background: var(--secondary); color: #fff; display: grid; place-items: center; font-weight: 800; margin-bottom: .9rem; }
.timeline-item p { font-size: .92rem; margin: 0; }
.strength-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.client-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.client-grid span { min-height: 76px; display: grid; place-items: center; text-align: center; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; color: var(--primary); font-weight: 800; }
.company-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
.company-info-card dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 0; }
.company-info-card div { min-width: 0; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.company-info-card dt { color: var(--muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; margin-bottom: .35rem; }
.company-info-card dd { margin: 0; color: var(--primary); font-weight: 700; overflow-wrap: anywhere; }
.cta-band { background: var(--primary); color: rgba(255,255,255,.82); padding: 68px 0; }
.cta-band h2 { color: #fff; }
.contact-card h2, .contact-card h3 { margin-bottom: 1rem; }
.site-footer { background: #08111f; color: rgba(255,255,255,.74); padding: 56px 0 24px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.footer-title { color: #fff; font-weight: 800; margin-bottom: 1rem; }
.footer-meta { color: #fff; font-weight: 800; }
.footer-links { display: grid; gap: .55rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.page-hero { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--primary); }
.page-hero::before { background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1600&q=80"); }
.about-hero::before { background-image: url("https://images.unsplash.com/photo-1560264280-88b68371db39?auto=format&fit=crop&w=1600&q=80"); }
.services-hero::before { background-image: url("https://images.unsplash.com/photo-1551836022-b06985bceb24?auto=format&fit=crop&w=1600&q=80"); }
.industries-hero::before { background-image: url("https://images.unsplash.com/photo-1552664688-cf412ec27db2?auto=format&fit=crop&w=1600&q=80"); }
.contact-hero::before { background-image: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1600&q=80"); }
.page-hero .container { position: relative; z-index: 1; padding-top: 4rem; }
.page-hero h1, .page-hero p { color: #fff; max-width: 860px; }
.narrow { max-width: 850px; }
.narrow h2 { margin-top: 2rem; font-size: 1.5rem; }
.toast-message { position: fixed; right: 1rem; bottom: 1rem; z-index: 1200; background: var(--primary); color: #fff; padding: .9rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; transition: .2s ease; max-width: min(360px, calc(100vw - 2rem)); }
.toast-message.show { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 1199px) {
  .service-grid, .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .navbar-collapse { padding: 1rem 0; }
  .hero { min-height: 650px; }
  .service-grid, .benefit-grid, .industry-grid, .client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { min-height: auto; }
}
@media (max-width: 767px) {
  .section { padding: 68px 0; }
  .hero { min-height: 620px; }
  .hero-overlay, .page-hero::after { background: rgba(15,23,42,.78); }
  .check-grid, .strength-list, .value-grid, .service-grid, .benefit-grid, .industry-grid, .client-grid { grid-template-columns: 1fr; }
  .stats-strip { margin-top: 0; padding-top: 1rem; background: var(--surface); }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .company-info-card dl { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .site-logo { max-width: 125px; height: 44px; }
}
@media (max-width: 375px) {
  .site-logo { max-width: 125px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
