:root {
  --ink: #14213d;
  --blue: #243b63;
  --accent: #36557e;
  --muted: #5b6578;
  --pale: #f1f3f7;
  --white: #fff;
  --line: #e2e7ee;
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: page-out .18s ease-out both; }
::view-transition-new(root) { animation: page-in .24s ease-out both; }
@keyframes page-out { to { opacity: 0; transform: translateX(-32px); } }
@keyframes page-in { from { opacity: 0; transform: translateX(32px); } }

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.container { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 16px; color: var(--white); background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
a:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; box-shadow: 0 0 0 6px var(--ink); }

.header { position: relative; z-index: 10; background: var(--white); }
.topbar { min-height: 84px; display: flex; align-items: stretch; justify-content: space-between; }
.brand { display: flex; align-items: center; padding-right: 40px; text-decoration: none; }
.brand img { display: block; width: 170px; height: auto; }
.header-contact { display: flex; }
.header-contact a { min-width: 235px; padding: 20px 28px; border-left: 1px solid var(--line); display: flex; justify-content: center; flex-direction: column; gap: 5px; text-decoration: none; }
.header-contact small { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.header-contact strong { font-size: 14px; }
.nav-bar { color: var(--white); background: var(--ink); }
.nav { min-height: 64px; display: flex; align-items: center; gap: 42px; font-size: 14px; font-weight: 700; }
.nav a { padding-block: 24px; text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: #c9e2ff; }

.hero, .career-hero, .page-hero, .error-page { background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(110deg, var(--ink), var(--blue)); background-size: 32px 32px, 32px 32px, auto; }
.hero { overflow: hidden; color: var(--white); }
.hero-grid { min-height: 510px; display: grid; grid-template-columns: 56% 44%; }
.hero-copy { position: relative; padding: 78px 80px 88px 0; display: flex; justify-content: center; align-items: flex-start; flex-direction: column; }
.eyebrow, .section-label { display: block; margin-bottom: 20px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero .eyebrow { color: #d5e7fb; }
h1 { max-width: 700px; margin: 0; font-size: clamp(40px, 4.3vw, 62px); line-height: 1.05; letter-spacing: -.045em; text-transform: uppercase; }
.hero-copy p { max-width: 620px; margin: 26px 0 30px; color: #deebf8; font-size: 18px; line-height: 1.65; }
.hero-visual { position: relative; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, rgba(72,116,166,.42), transparent 58%); }
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; border: 1px solid rgba(213,231,251,.18); border-radius: 50%; }
.hero-visual::before { width: 430px; height: 430px; }
.hero-visual::after { width: 580px; height: 580px; }
.hero-brand { position: relative; z-index: 1; width: min(360px, 80%); aspect-ratio: 1; padding: 44px; border: 1px solid rgba(255,255,255,.7); border-radius: 28px; display: grid; place-items: center; background: radial-gradient(circle at 12% 14%, rgba(255,16,24,.08) 0 15%, transparent 15.5%), radial-gradient(circle at 88% 86%, rgba(8,112,189,.09) 0 18%, transparent 18.5%), var(--white); box-shadow: 0 32px 80px rgba(5,15,31,.42); transform: rotate(-2deg); }
.hero-brand::after { content: ""; position: absolute; right: -72px; bottom: 34px; width: 82px; height: 100px; background: radial-gradient(circle at 20px 20px, rgba(255,16,24,.72) 0 14px, transparent 15px), radial-gradient(circle at 20px 70px, rgba(8,112,189,.72) 0 14px, transparent 15px), radial-gradient(circle at 58px 45px, rgba(151,151,151,.68) 0 14px, transparent 15px); transform: rotate(2deg); }
.hero-brand img { display: block; width: 100%; height: auto; }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 19px 26px; color: var(--white); background: var(--accent); font-size: 13px; font-weight: 800; text-decoration: none; text-transform: uppercase; transition: transform .2s, background .2s; }
.button:hover { background: var(--ink); transform: translateY(-2px); }
.hero-button { background: var(--white); color: var(--ink); }
.hero-button:hover { color: var(--white); }

.stats { position: relative; z-index: 2; margin-top: -28px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); box-shadow: 0 12px 35px rgba(20,33,61,.12); }
.stats-grid div { min-height: 145px; padding: 34px 42px; border-right: 1px solid var(--line); display: flex; justify-content: center; flex-direction: column; }
.stats-grid div:last-child { border: 0; }
.stats-grid strong { color: var(--accent); font-size: 38px; }
.stats-grid span { margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.services { padding: 115px 0; background: #f7f9fc; }
.section-heading h2, h2 { margin: 0; font-size: clamp(36px, 4vw, 54px); line-height: 1.1; letter-spacing: -.04em; }
.centered { max-width: 780px; margin: 0 auto 55px; text-align: center; }
.centered p { margin: 22px auto 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--white); }
.service-grid article { min-height: 300px; padding: 38px 34px; border-right: 1px solid var(--line); }
.service-grid article:last-child { border: 0; }
.service-grid strong { color: var(--accent); font-size: 12px; }
.service-grid h3 { margin: 50px 0 14px; font-size: 23px; }
.service-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.coverage { padding: 95px 0; color: var(--white); background: linear-gradient(110deg, rgba(20,33,61,.97), rgba(46,95,151,.9)), repeating-linear-gradient(45deg, #14213d 0 16px, #1a2b4c 16px 32px); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.section-label.light { color: #c7ddf4; }
.coverage p { max-width: 520px; color: #dceafa; font-size: 17px; line-height: 1.7; }
.coverage ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.coverage li { padding: 17px 8px; border-bottom: 1px solid rgba(255,255,255,.2); font-weight: 700; }

.about { padding: 115px 0; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.about-copy { max-width: 720px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.about-copy p:first-child { margin-top: 0; color: var(--ink); font-size: 22px; font-weight: 700; line-height: 1.55; }

.career-hero { padding: 100px 0; color: var(--white); }
.career-hero-grid, .page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 90px; }
.page-hero { padding: 82px 0; color: var(--white); }
.page-hero p { max-width: 680px; margin: 24px 0 0; color: #deebf8; font-size: 18px; line-height: 1.7; }
.career-hero p { max-width: 650px; margin: 28px 0 34px; color: #deebf8; font-size: 18px; line-height: 1.7; }
.career-panel, .page-panel { padding: 42px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); box-shadow: 0 28px 65px rgba(5,15,31,.22); }
.career-panel span, .page-panel span { color: #c7ddf4; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.career-panel strong, .page-panel strong { display: block; margin: 16px 0 24px; font-size: 25px; line-height: 1.3; }
.career-panel ul, .page-panel ul { margin: 0; padding: 0; list-style: none; }
.career-panel li, .page-panel li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.15); }
.career-contact small { display: block; margin-top: 16px; color: #b9cce2; }

.contact { padding: 95px 0; background: #f7f9fc; }
.contact-card { min-height: 315px; padding: 65px; color: var(--white); background: var(--blue); display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-card h2 { margin-bottom: 14px; }
.contact-card p { margin: 0; color: #dceafa; }
.button-light { flex: 0 0 auto; color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--ink); }

footer { padding: 48px 0 25px; border-top: 1px solid var(--line); }
.footer-content { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-content > img { width: 180px; height: auto; }
.footer-info { display: flex; gap: 55px; }
.footer-info p { margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-info span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-info a, .footer-info strong { font-weight: 600; }
.copyright { margin-top: 45px; padding-top: 20px; border-top: 1px solid var(--line); color: #60697b; font-size: 13px; line-height: 1.6; }
.copyright small { display: block; margin-top: 5px; font-size: 11px; }
.copyright a, .policy a { text-decoration: underline; }
.policy { max-width: 800px; padding-block: 70px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.policy h2 { margin: 45px 0 12px; color: var(--ink); font-size: 24px; letter-spacing: -.02em; }
.policy li { margin-bottom: 10px; }
.error-body { background: var(--ink); }
.error-page { min-height: 100vh; padding: 110px 20px 80px; color: var(--white); display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.error-brand { position: absolute; top: 36px; left: max(20px, calc((100vw - 1240px) / 2)); padding: 9px 13px; border-radius: 8px; background: var(--white); }
.error-brand img { display: block; width: 145px; height: auto; }
.error-page h1 { margin-inline: auto; }
.error-page p { margin: 25px auto 35px; color: #deebf8; font-size: 18px; }

@media (max-width: 900px) {
  .header-contact a:last-child { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 470px; padding-right: 0; }
  .hero-visual { display: none; }
  .about-grid, .coverage-grid, .career-hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 230px; border: 0; border-bottom: 1px solid var(--line); }
  .footer-content, .footer-info { flex-direction: column; }
  .footer-info { gap: 25px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1240px); }
  .topbar { min-height: 72px; }
  .brand { padding-right: 12px; }
  .brand img { width: 145px; }
  .header-contact a { min-width: 0; padding: 12px 4px 12px 14px; border: 0; }
  .header-contact small { display: none; }
  .header-contact strong { font-size: 0; }
  .header-contact strong::after { content: "WhatsApp"; font-size: 13px; }
  .nav { min-height: 0; padding-block: 6px; display: grid; grid-template-columns: repeat(5, max-content); justify-content: start; gap: 6px; overflow-x: auto; font-size: 13px; scrollbar-width: none; }
  .nav a { min-height: 44px; padding: 12px 9px; display: flex; align-items: center; }
  .hero-copy { min-height: 460px; padding-block: 65px 80px; }
  h1 { font-size: 38px; }
  .hero-copy p { font-size: 16px; }
  .stats { margin-top: -20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid div { min-height: 100px; padding: 22px 28px; border: 0; border-bottom: 1px solid var(--line); }
  .stats-grid strong { font-size: 30px; }
  .services, .about, .contact { padding-block: 75px; }
  .coverage { padding-block: 70px; }
  .coverage ul { grid-template-columns: 1fr; }
  .contact-card { min-height: 0; padding: 42px 28px; align-items: flex-start; flex-direction: column; }
  .career-hero, .page-hero { padding-block: 75px; }
  .career-panel, .page-panel { padding: 30px 24px; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
