
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --red: #e3131b;
  --red-dark: #b90e14;
  --red-soft: #fff0f1;
  --navy: #0d2238;
  --navy-2: #163751;
  --ink: #172534;
  --muted: #647282;
  --surface: #f5f3ef;
  --surface-2: #edf2f5;
  --white: #ffffff;
  --line: #dce3e8;
  --success: #1c7a62;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 20px 55px rgba(13,34,56,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, .btn { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-soft { background: var(--surface); }
.section-blue { background: var(--navy); color: var(--white); }
.section-rule { border-top: 1px solid var(--line); }
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 9999;
  padding: 10px 14px; color: var(--white); background: var(--navy);
}
.skip-link:focus { left: 8px; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Archivo", "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--navy);
}
h1 {
  font-size: clamp(3rem, 6.8vw, 6rem);
  max-width: 900px;
}
h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  max-width: 850px;
}
h3 { font-size: 1.45rem; }
h4 { font-size: 1.08rem; }
p { margin: 0; }
.lead { max-width: 760px; font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: var(--muted); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-head { display: grid; gap: 18px; margin-bottom: 46px; }
.section-head > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-blue .section-head > p:not(.eyebrow) { color: rgba(255,255,255,.72); }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--red); }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { color: var(--white); background: var(--navy); }
.btn-outline { color: var(--navy); border-color: #aebbc5; background: transparent; }
.btn-light { color: var(--navy); background: var(--white); }
.text-link { color: var(--red-dark); font-weight: 800; }
.text-link:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(13,34,56,.09);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: clamp(220px, 24vw, 300px); flex: 0 0 auto; }
.brand img { width: 100%; height: auto; max-height: 76px; object-fit: contain; object-position: left center; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 24px; color: #283b4f; font-weight: 700; }
.nav-links a:not(.btn) { position: relative; padding: 9px 0; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--red); transition: right .18s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  border: 1px solid var(--line); border-radius: 8px; background: #fafafa;
}
.lang-switch a {
  min-width: 35px; padding: 5px 7px; border-radius: 5px;
  text-align: center; font-size: .82rem; font-weight: 800;
}
.lang-switch a.active { color: var(--white); background: var(--navy); }
.menu-toggle {
  display: none; width: 44px; height: 44px; place-items: center;
  border: 1px solid var(--line); border-radius: 8px; color: var(--navy); background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5,22,38,.96) 0%, rgba(5,22,38,.88) 47%, rgba(5,22,38,.35) 100%),
    url("https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=2200&q=84") center / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.18fr .82fr;
  gap: 65px; align-items: center; padding: 100px 0;
}
.hero h1 { color: var(--white); font-weight: 700; letter-spacing: -.045em; }
.hero .eyebrow { color: #ff7b81; }
.hero-copy { display: grid; gap: 25px; }
.hero-lead { max-width: 750px; color: rgba(255,255,255,.78); font-size: 1.22rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.7); font-weight: 700; }
.hero-proof span::before { content: "•"; margin-right: 8px; color: #ff7b81; }
.hero-panel {
  padding: 26px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius);
  background: rgba(10,32,50,.72); box-shadow: 0 25px 70px rgba(0,0,0,.25); backdrop-filter: blur(12px);
}
.hero-panel h3 { color: var(--white); }
.hero-panel-grid { display: grid; gap: 12px; margin-top: 20px; }
.hero-panel-item {
  display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 14px;
  border: 1px solid rgba(255,255,255,.11); border-radius: 9px; background: rgba(255,255,255,.045);
}
.hero-panel-item strong { display: block; color: var(--white); }
.hero-panel-item span { color: rgba(255,255,255,.65); font-size: .9rem; }
.hero-panel-item svg { width: 22px; color: #ff7379; }

/* Inner hero */
.page-hero {
  position: relative; overflow: hidden; padding: 110px 0 96px; color: var(--white); background: var(--navy);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(227,19,27,.23), transparent 28%),
              linear-gradient(120deg, transparent 55%, rgba(255,255,255,.04));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 920px; font-size: clamp(2.8rem, 5.8vw, 5rem); }
.page-hero p:not(.eyebrow) { max-width: 760px; margin-top: 22px; color: rgba(255,255,255,.72); font-size: 1.2rem; }

/* Metrics */
.metric-strip {
  position: relative; z-index: 3; margin-top: -44px;
}
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow);
}
.metric { padding: 28px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--navy); font-size: 2.1rem; line-height: 1; }
.metric span { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; font-size: .94rem; }
.metric-note { margin-top: 13px; color: var(--muted); font-size: .82rem; text-align: right; }

/* Cards and grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: 0 10px 30px rgba(13,34,56,.045);
}
.card p { margin-top: 12px; color: var(--muted); }
.card .icon {
  width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 26px;
  border-radius: 9px; color: var(--red); background: var(--red-soft);
}
.card .icon svg { width: 24px; height: 24px; }
.service-card { display: flex; flex-direction: column; min-height: 400px; }
.service-card .service-number { color: var(--red); font-weight: 800; letter-spacing: .1em; font-size: .75rem; }
.service-card ul, .check-list {
  list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 9px; color: #34475a;
}
.service-card li::before, .check-list li::before { content: "—"; margin-right: 9px; color: var(--red); font-weight: 900; }
.service-card .text-link { margin-top: auto; padding-top: 26px; }
.value-card { border-top: 4px solid var(--red); }
.industry-card { min-height: 230px; }
.industry-card strong { display: block; margin-bottom: 10px; color: var(--red); font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.photo-frame {
  min-height: 520px; border-radius: var(--radius-lg); background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.copy-stack { display: grid; gap: 27px; }
.copy-stack > p { color: var(--muted); font-size: 1.06rem; }

/* Lifecycle */
.lifecycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,.15); }
.lifecycle-step { padding: 30px; border-right: 1px solid rgba(255,255,255,.15); }
.lifecycle-step:last-child { border-right: 0; }
.lifecycle-step span { color: #ff7b81; font-weight: 850; font-size: .8rem; letter-spacing: .12em; }
.lifecycle-step h3 { margin-top: 28px; }
.lifecycle-step p { margin-top: 11px; color: rgba(255,255,255,.66); }

/* Logos */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.logo-card {
  min-height: 155px; display: grid; place-items: center; padding: 24px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white);
}
.logo-card img { max-height: 82px; max-width: 100%; object-fit: contain; }
.client-disclaimer { margin-top: 24px; color: var(--muted); font-size: .87rem; }

/* Service detail */
.service-detail-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 62px; align-items: start; }
.sticky-summary {
  position: sticky; top: 125px; padding: 28px; border-left: 4px solid var(--red); background: var(--surface);
}
.sticky-summary h3 { margin-bottom: 14px; }
.sticky-summary p { color: var(--muted); }
.detail-sections { display: grid; gap: 48px; }
.detail-block { padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.detail-block:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-block h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
.detail-block > p { margin-top: 15px; color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.tag { padding: 7px 11px; border: 1px solid #cfd8df; border-radius: 5px; color: #33475a; background: #fafafa; font-weight: 700; font-size: .88rem; }

/* Process */
.process-list { counter-reset: process; display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-row {
  counter-increment: process; display: grid; grid-template-columns: 90px 1fr 1.25fr; gap: 30px;
  padding: 30px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.process-row::before { content: "0" counter(process); color: var(--red); font-weight: 850; letter-spacing: .08em; }
.process-row p { color: var(--muted); }

/* CTA */
.cta-box {
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  padding: 48px; border-radius: var(--radius-lg); color: var(--white); background: var(--navy);
}
.cta-box h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3.35rem); }
.cta-box p { max-width: 720px; margin-top: 13px; color: rgba(255,255,255,.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: start; }
.contact-panel {
  position: sticky; top: 125px; padding: 34px; border-radius: var(--radius); color: var(--white); background: var(--navy);
}
.contact-panel h2 { color: var(--white); font-size: 2.5rem; }
.contact-panel > p { margin-top: 16px; color: rgba(255,255,255,.7); }
.contact-items { display: grid; gap: 18px; margin-top: 32px; }
.contact-item { display: grid; grid-template-columns: 26px 1fr; gap: 12px; }
.contact-item svg { width: 21px; color: #ff7b81; }
.contact-item strong { display: block; color: var(--white); }
.contact-item span, .contact-item a { color: rgba(255,255,255,.75); }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
label { font-weight: 750; font-size: .92rem; }
input, select, textarea {
  width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid #bcc8d1;
  border-radius: 7px; color: var(--ink); background: #fff; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,19,27,.1); }
textarea { min-height: 145px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; }
.checkbox input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; }
.form-note { color: var(--muted); font-size: .82rem; }
.form-status { display: none; padding: 12px 14px; border-radius: 7px; background: #edf7f3; color: var(--success); font-weight: 700; }
.map-shell {
  margin-top: 34px; overflow: hidden; display: grid; grid-template-columns: .7fr 1.3fr;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.map-copy { padding: 38px; background: var(--white); }
.map-copy p { margin-top: 12px; color: var(--muted); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* Careers */
.role-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.role-tag { padding: 9px 13px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); font-weight: 700; }
.application-note { padding: 22px; border-left: 4px solid var(--red); background: var(--red-soft); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 21px 0; border: 0; color: var(--navy); background: transparent; text-align: left; font-weight: 800;
}
.faq-answer { display: none; padding: 0 0 21px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-icon { color: var(--red); font-size: 1.3rem; }

/* Cookie */
.cookie-banner {
  position: fixed; z-index: 2000; left: 20px; right: 20px; bottom: 20px;
  display: none; max-width: 850px; margin-inline: auto; padding: 20px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: var(--white);
  background: #071929; box-shadow: 0 25px 80px rgba(0,0,0,.3);
}
.cookie-banner.show { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.cookie-banner p { color: rgba(255,255,255,.75); font-size: .91rem; }
.cookie-banner a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 0 14px; border-radius: 6px; border: 1px solid rgba(255,255,255,.22); font-weight: 800; }
.cookie-accept { color: var(--white); background: var(--red); }
.cookie-reject { color: var(--white); background: transparent; }

/* Floating WhatsApp */
.whatsapp {
  position: fixed; z-index: 900; right: 20px; bottom: 20px; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%; color: white; background: #1fae59;
  box-shadow: 0 15px 38px rgba(0,0,0,.22);
}
.cookie-banner.show ~ .whatsapp { bottom: 140px; }
.whatsapp svg { width: 29px; height: 29px; }

/* Footer */
footer { padding: 64px 0 28px; color: rgba(255,255,255,.68); background: #071624; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr .9fr; gap: 38px; }
.footer-logo { width: 290px; max-width: 100%; margin-bottom: 18px; }
.footer-intro { max-width: 390px; }
.footer-grid h3 { margin-bottom: 15px; color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem;
}

/* Legal */
.legal-content { display: grid; gap: 34px; }
.legal-content section { display: grid; gap: 10px; }
.legal-content h2 { font-family: "IBM Plex Sans", Arial, sans-serif; font-size: 1.45rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { margin: 0; }

/* Responsive */
@media (max-width: 1050px) {
  .menu-toggle { display: grid; }
  .nav-right { gap: 10px; }
  .nav-links {
    position: fixed; inset: 94px 16px auto; display: none; flex-direction: column; align-items: stretch;
    gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px !important; }
  .nav-links .btn { margin-top: 8px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 700px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .sticky-summary, .contact-panel { position: static; }
  .lifecycle { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-step:nth-child(2) { border-right: 0; }
  .lifecycle-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .nav { min-height: 80px; }
  .brand { width: 190px; }
  .nav-links { inset-top: 80px; top: 80px; }
  .lang-switch { display: none; }
  .hero { min-height: auto; background-position: 65% center; }
  .hero-inner { padding: 82px 0; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-proof { display: grid; gap: 7px; }
  .page-hero { padding: 82px 0 74px; }
  .metrics, .grid-2, .grid-3, .grid-4, .logo-grid { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .metric-note { text-align: left; }
  .photo-frame { min-height: 380px; }
  .lifecycle { grid-template-columns: 1fr; }
  .lifecycle-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .lifecycle-step:last-child { border-bottom: 0; }
  .process-row { grid-template-columns: 58px 1fr; }
  .process-row p { grid-column: 2; }
  .cta-box { grid-template-columns: 1fr; padding: 34px 24px; }
  .form-row, .map-shell { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .map-frame iframe { min-height: 340px; }
  .cookie-banner.show { grid-template-columns: 1fr; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
