
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #edf3f8;
  --surface-deep: #0f2338;
  --text: #132131;
  --muted: #5b6a79;
  --line: #d8e1ea;
  --brand: #103b66;
  --brand-2: #2c709f;
  --accent: #1b8a70;
  --shadow: 0 18px 48px rgba(16, 59, 102, 0.10);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(44,112,159,.10), transparent 32%),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(216,225,234,0.85);
}
.nav { display:flex; justify-content:space-between; align-items:center; padding: 16px 0; gap: 20px; }
.logo { display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:0.02em; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff; display:grid; place-items:center; font-weight:800;
  box-shadow: var(--shadow);
}
.nav-links { display:flex; gap: 20px; flex-wrap:wrap; font-size: 0.96rem; color: var(--muted); }
.nav-links a:hover, .lang-switch a:hover { color: var(--brand); }
.lang-switch { display:flex; gap: 10px; align-items:center; font-size: 0.94rem; }
.lang-switch a { padding:8px 10px; border-radius:999px; }
.lang-switch .active { background: var(--surface-soft); color: var(--brand); font-weight:600; }
.hero { padding: 56px 0 44px; }
.hero-shell {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch;
}
.hero-copy {
  background: linear-gradient(150deg, #112a44, #173a5f 55%, #235d81);
  color: #fff; border-radius: 30px; padding: 42px; box-shadow: var(--shadow);
}
.eyebrow { color: #9fe0d1; font-weight:700; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; }
.hero h1 { font-size: clamp(2.45rem, 6vw, 4.4rem); line-height:1.04; margin: 14px 0 18px; }
.hero p { font-size:1.05rem; color: rgba(255,255,255,0.86); max-width: 62ch; }
.actions { display:flex; gap:14px; flex-wrap:wrap; margin-top: 28px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 20px; border-radius: 999px; font-weight: 650;
  border:1px solid transparent; transition: .2s ease;
}
.btn-primary { background: #fff; color: var(--brand); box-shadow: var(--shadow); }
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.hero-stats { display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 26px; }
.hero-stat {
  background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 16px 18px;
}
.hero-stat strong { display:block; font-size: 1.25rem; }
.hero-media {
  position: relative; min-height: 560px; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position:absolute; inset:auto 22px 22px 22px;
  background: rgba(10,22,36,.55); color:#fff; border:1px solid rgba(255,255,255,.14);
  border-radius: 22px; padding: 22px;
}
.hero-overlay p { margin: 0; color: rgba(255,255,255,.86); }
.section { padding: 42px 0; }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin:0 0 12px; }
.section p.lead { color: var(--muted); max-width: 70ch; margin-top:0; }
.kpi-strip { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; margin-top:22px; }
.kpi {
  background: var(--surface); border:1px solid var(--line); border-radius:20px; padding:20px; box-shadow: var(--shadow);
}
.kpi strong { display:block; font-size:1.5rem; color: var(--brand); }
.band {
  background: linear-gradient(180deg, rgba(16,59,102,0.05), rgba(16,59,102,0.02));
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.grid-3, .grid-2 { display:grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.card {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin-top:0; margin-bottom:10px; font-size:1.18rem; }
.card p, .card li { color: var(--muted); }
.card ul { padding-left: 18px; margin-bottom:0; }
.feature-media {
  display:grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center;
}
.image-panel {
  background: var(--surface); border:1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
}
.image-panel img { width:100%; height: 100%; object-fit: cover; }
.image-caption { padding: 16px 18px 18px; color: var(--muted); }
.product-card { padding: 0; overflow: hidden; }
.product-card img {
  width: 100%; aspect-ratio: 16 / 11; object-fit: contain; background: linear-gradient(180deg, #f6f8fb, #ebf1f6);
  padding: 18px;
}
.product-card .card-body { padding: 22px 22px 24px; }
.industry-grid {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 20px; align-items: stretch;
}
.stack { display:grid; gap: 20px; }
.photo-card {
  position: relative; overflow: hidden; border-radius: 26px; min-height: 320px; box-shadow: var(--shadow);
}
.photo-card.tall { min-height: 100%; }
.photo-card img { width:100%; height:100%; object-fit: cover; }
.photo-card .copy {
  position:absolute; inset:auto 18px 18px 18px;
  background: rgba(8,21,35,.56); color:#fff; border-radius: 18px; padding: 18px;
}
.photo-card .copy p { margin: 8px 0 0; color: rgba(255,255,255,.84); }
.cta {
  display:grid; grid-template-columns: 1.1fr .9fr; gap:20px; align-items:center;
  background: linear-gradient(135deg, #12395d, #245f81);
  color:#fff; border-radius: 28px; padding: 32px; box-shadow: var(--shadow);
}
.cta p, .cta li { color: rgba(255,255,255,0.86); }
.contact-box { background: rgba(255,255,255,0.08); border-radius:20px; padding:20px; }
.footer { padding: 30px 0 46px; color: var(--muted); font-size: .95rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr .8fr .8fr; gap:20px; }
.footer a:hover { color: var(--brand); }
.legal h1 { margin-top: 16px; }
.legal h2 { margin-top: 28px; font-size: 1.3rem; }
.legal p, .legal li { color: var(--muted); }
.notice { background:#fff8e8; border:1px solid #f1deb0; border-radius:16px; padding:16px 18px; color:#705a1b; }
@media (max-width: 980px) {
  .hero-shell, .feature-media, .industry-grid, .cta, .grid-3, .grid-2, .kpi-strip, .footer-grid { grid-template-columns: 1fr; }
  .nav { align-items:flex-start; }
  .hero-media { min-height: 380px; }
}
@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-links { display:none; }
  .hero { padding-top: 52px; }
  .hero-copy { padding: 28px; }
}


.page-hero {
  padding: 48px 0 12px;
}
.page-hero-shell {
  display:grid; grid-template-columns: 1.05fr .95fr; gap:24px; align-items:stretch;
}
.page-hero-copy {
  background: linear-gradient(145deg, #102843, #17466d 62%, #2c709f);
  color:#fff; border-radius:30px; padding:40px; box-shadow: var(--shadow);
}
.page-hero-copy p { color: rgba(255,255,255,.86); max-width: 64ch; }
.page-hero-media {
  border-radius:30px; overflow:hidden; min-height:360px; box-shadow: var(--shadow); position:relative;
}
.page-hero-media img { width:100%; height:100%; object-fit:cover; }
.page-hero-media::after {
  content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,22,36,.12), rgba(10,22,36,.38));
}
.section-header { max-width: 72ch; margin-bottom: 22px; }
.icon-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.icon-card {
  background: var(--surface); border:1px solid var(--line); border-radius:26px; padding:26px; box-shadow: var(--shadow);
}
.icon-badge {
  width:56px; height:56px; border-radius:18px; display:grid; place-items:center; margin-bottom:16px;
  background: linear-gradient(135deg, rgba(16,59,102,.12), rgba(27,138,112,.18)); color: var(--brand); font-size:1.5rem; font-weight:800;
}
.icon-card h3 { margin:0 0 10px; font-size:1.15rem; }
.icon-card p { margin:0; color: var(--muted); }
.statement-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }
.statement-card {
  background: linear-gradient(180deg, #ffffff, #f6f9fc); border:1px solid var(--line); border-radius:26px; padding:26px; box-shadow: var(--shadow);
}
.statement-card .kicker { font-size:.78rem; text-transform:uppercase; letter-spacing:.12em; color: var(--brand-2); font-weight:700; }
.statement-card h3 { margin:8px 0 10px; font-size:1.25rem; }
.statement-card p { margin:0; color: var(--muted); }
.values-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.value-tile {
  background: var(--surface); border:1px solid var(--line); border-radius:24px; padding:22px; box-shadow: var(--shadow); min-height: 180px;
}
.value-tile strong { display:block; margin-bottom:10px; color: var(--brand); font-size:1.05rem; }
.value-tile p { margin:0; color: var(--muted); }
.split-panel {
  display:grid; grid-template-columns: .95fr 1.05fr; gap:22px; align-items:stretch;
}
.media-card, .text-card {
  background: var(--surface); border:1px solid var(--line); border-radius:28px; overflow:hidden; box-shadow: var(--shadow);
}
.media-card img { width:100%; height:100%; min-height:380px; object-fit:cover; }
.text-card { padding:28px; }
.text-card ul { padding-left: 18px; color: var(--muted); }
.job-listing {
  display:grid; grid-template-columns: 1fr auto; gap:18px; align-items:center;
  background: linear-gradient(180deg, #ffffff, #f6f9fc); border:1px solid var(--line); border-radius:24px; padding:24px; box-shadow: var(--shadow);
}
.job-meta { display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.job-chip {
  padding:8px 12px; border-radius:999px; background: var(--surface-soft); color: var(--brand); font-size:.9rem; font-weight:600;
}
.job-layout { display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; }
.job-panel {
  background: var(--surface); border:1px solid var(--line); border-radius:26px; padding:26px; box-shadow: var(--shadow);
}
.job-panel h2 { font-size:1.5rem; }
.job-panel ul { padding-left: 18px; color: var(--muted); }
.image-stack { display:grid; gap:20px; }
.small-photo-card {
  position:relative; overflow:hidden; border-radius:24px; min-height:220px; box-shadow: var(--shadow);
}
.small-photo-card img { width:100%; height:100%; object-fit:cover; }
.small-photo-card .copy {
  position:absolute; inset:auto 16px 16px 16px; background: rgba(8,21,35,.56); color:#fff; border-radius:16px; padding:14px 16px;
}
.small-photo-card .copy p { margin:6px 0 0; color: rgba(255,255,255,.84); }
.inline-links { display:flex; gap:12px; flex-wrap:wrap; margin-top:22px; }
@media (max-width: 980px) {
  .page-hero-shell, .icon-grid, .statement-grid, .values-grid, .split-panel, .job-layout { grid-template-columns: 1fr; }
  .job-listing { grid-template-columns: 1fr; }
}
