:root {
  --navy-950: #061a26;
  --navy-900: #0b2534;
  --navy-800: #123747;
  --teal-700: #075b64;
  --teal-600: #08747b;
  --teal-100: #dceeed;
  --gold-600: #c88a24;
  --gold-800: #8b5b0f;
  --gold-400: #e2b761;
  --cream: #f6f3eb;
  --sand: #ece8dc;
  --white: #ffffff;
  --text: #172d38;
  --muted: #60727b;
  --line: #dbe2e1;
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 8px 28px rgba(6, 26, 38, 0.08);
  --shadow-lg: 0 28px 70px rgba(6, 26, 38, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1200px;
  --transition: 220ms cubic-bezier(.2, .7, .2, 1);
  --font-display: 'Manrope', Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', Arial, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html[data-theme="light"] { --muted: #596b74; color-scheme: light; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }
::selection { background: var(--gold-400); color: var(--navy-950); }

.container { width: min(var(--max-width), calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold-600); }
.eyebrow.light { color: var(--gold-400); }
.eyebrow.light::before { background: var(--gold-400); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-600); color: var(--navy-950); box-shadow: 0 10px 28px rgba(200, 138, 36, .24); }
.btn-primary:hover { background: var(--gold-400); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.btn-secondary:hover, .btn-outline:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-outline { color: var(--white); border-color: var(--line-dark); }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--teal-700); font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translateX(5px); }

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 26, 38, .94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); flex-shrink: 0; }
.brand-mark { width: 39px; height: 48px; object-fit: contain; }
.brand-copy { display: flex; align-items: center; line-height: 1; white-space: nowrap; }
.brand-copy strong { font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: .045em; }
.nav-links { display: flex; align-items: center; gap: 31px; margin-left: auto; }
.nav-links a { position: relative; padding: 29px 0 27px; color: #b8c7ce; font-size: 13.5px; font-weight: 600; transition: color var(--transition); }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--gold-400); transition: right var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; min-width: 44px; height: 44px; min-height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: transparent; color: #c4d0d5; font-family: var(--font-display); font-size: 11px; font-weight: 700; line-height: 1; cursor: pointer; transition: transform var(--transition), color var(--transition), background var(--transition), border-color var(--transition); }
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--gold-400); color: var(--gold-400); background: rgba(255,255,255,.1); }
.theme-choice { display: none; align-items: center; gap: 7px; }
.theme-choice-light { display: inline-flex; }
html[data-theme="light"] .theme-choice-light { display: none; }
html[data-theme="light"] .theme-choice-dark { display: inline-flex; }
.theme-choice > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.theme-choice svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--white); transition: var(--transition); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 96px 0 88px; background: var(--navy-950); color: var(--white); }
.hero::before { content: ''; position: absolute; width: 620px; height: 620px; top: -300px; left: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(8,116,123,.24), transparent 70%); }
.hero::after { content: ''; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent 15%, #000 70%, transparent); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.hero h1 { max-width: 690px; margin: 22px 0 24px; color: var(--white); font-size: clamp(45px, 5.2vw, 72px); font-weight: 700; }
.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero .lead { max-width: 625px; margin-bottom: 34px; color: #b8c7ce; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-visual { position: relative; display: grid; min-width: 0; min-height: 500px; place-items: center; }
.visual-glow { position: absolute; inset: 10% 8%; border-radius: 50%; background: radial-gradient(circle, rgba(8,116,123,.48), rgba(8,116,123,.05) 56%, transparent 70%); filter: blur(3px); }
.delivery-board { position: relative; z-index: 1; width: min(100%, 520px); min-width: 0; padding: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: linear-gradient(155deg, rgba(18,55,71,.96), rgba(11,37,52,.94)); box-shadow: 0 28px 70px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.delivery-board::after { content: ''; position: absolute; z-index: -1; inset: 17px -17px -17px 17px; border: 1px solid rgba(226,183,97,.15); border-radius: inherit; pointer-events: none; }
.delivery-board-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.delivery-kicker { color: var(--gold-400); font-family: var(--font-display); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.delivery-status { display: inline-flex; align-items: center; gap: 7px; color: #b8c7ce; font-size: 10px; font-weight: 700; }
.delivery-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #58bea8; box-shadow: 0 0 0 4px rgba(88,190,168,.12); }
.delivery-board h2 { max-width: 445px; margin: 22px 0 30px; color: var(--white); font-size: clamp(25px, 2.35vw, 34px); line-height: 1.18; }
.delivery-flow { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.delivery-flow::before { content: ''; position: absolute; left: 16%; right: 16%; top: 18px; height: 1px; background: rgba(226,183,97,.25); }
.delivery-step { position: relative; z-index: 1; min-width: 0; padding: 0 11px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.045); }
.delivery-step-index { display: grid; place-items: center; width: 36px; height: 36px; margin: -1px 0 17px; border: 1px solid rgba(226,183,97,.3); border-radius: 50%; background: var(--navy-900); color: var(--gold-400); font-family: var(--font-display); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.delivery-step strong, .delivery-step small { display: block; }
.delivery-step strong { margin-bottom: 5px; color: var(--white); font-family: var(--font-display); font-size: 14px; }
.delivery-step small { color: #94aab3; font-size: 9.5px; line-height: 1.45; overflow-wrap: anywhere; }
.delivery-capabilities { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.delivery-capabilities > span { color: #a9bbc3; font-size: 9.5px; font-weight: 700; }
.delivery-capabilities ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.delivery-capabilities li { padding: 5px 8px; border-radius: 999px; background: rgba(255,255,255,.07); color: #c7d5da; font-size: 8.5px; font-weight: 700; }

.trust-strip { padding: 0; background: var(--teal-700); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 27px 25px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-grid > div:last-child { border: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 4px; color: var(--white); font-family: var(--font-display); font-size: 13px; }
.trust-grid span { color: #c3dddd; font-size: 10.5px; line-height: 1.5; }

/* Sections */
section { padding: 96px 0; }
.section-light { background: var(--cream); }
.section-alt { background: var(--sand); }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head-row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.section-head h2, .split-intro h2, .approach-copy h2 { margin-top: 16px; font-size: clamp(34px, 4vw, 52px); }
.split-intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: 100px; align-items: end; }
.intro-copy { padding-bottom: 4px; color: var(--muted); font-size: 16.5px; }
.intro-copy p { margin-bottom: 25px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 330px; padding: 30px; overflow: hidden; border: 1px solid rgba(7,91,100,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.72); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(7,91,100,.42); box-shadow: var(--shadow-sm); }
.service-card.featured { background: var(--teal-700); color: var(--white); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: #c6dddd; }
.service-index { position: absolute; right: 24px; top: 22px; color: rgba(7,91,100,.45); font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.featured .service-index { color: rgba(255,255,255,.6); }
.service-symbol { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 36px; border-radius: 12px; background: var(--teal-100); color: var(--teal-700); font-family: var(--font-display); font-size: 21px; font-weight: 800; line-height: 1; }
.service-symbol.code-icon { font-size: 12px; letter-spacing: -.04em; }
.featured .service-symbol { background: rgba(255,255,255,.12); color: var(--gold-400); }
.service-card h3 { margin-bottom: 14px; font-size: 20px; line-height: 1.25; }
.service-card p { margin-bottom: 26px; color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.service-card a { position: absolute; left: 30px; bottom: 27px; color: var(--teal-700); font-family: var(--font-display); font-size: 12px; font-weight: 800; }
.featured a { color: var(--gold-400); }

.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.approach-copy h2 { color: var(--white); }
.approach-copy p { max-width: 520px; margin: 22px 0 30px; color: #a7bbc3; }
.mini-process li { display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line-dark); }
.mini-process li:last-child { border: 0; }
.mini-process > li > span { color: var(--gold-400); font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.mini-process b, .mini-process small { display: block; }
.mini-process b { color: var(--white); font-family: var(--font-display); font-size: 16px; }
.mini-process small { margin-top: 3px; color: #8ea5ae; font-size: 11.5px; }
.cta-banner { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 60px; border-radius: var(--radius-lg); background: linear-gradient(125deg, var(--teal-700), var(--navy-950)); color: var(--white); box-shadow: var(--shadow-lg); }
.cta-banner::after { content: ''; position: absolute; width: 310px; height: 310px; right: -100px; top: -145px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.035), 0 0 0 76px rgba(255,255,255,.025); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { max-width: 690px; margin: 14px 0 10px; color: var(--white); font-size: clamp(30px, 3.5vw, 46px); }
.cta-banner p { max-width: 690px; margin: 0; color: #c8dddd; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; padding: 92px 0 82px; background: var(--navy-950); color: var(--white); }
.page-hero::after { content: ''; position: absolute; width: 520px; height: 520px; right: -140px; top: -300px; border-radius: 50%; border: 1px solid rgba(226,183,97,.15); box-shadow: 0 0 0 48px rgba(255,255,255,.02), 0 0 0 96px rgba(255,255,255,.015); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { margin-bottom: 24px; color: #8ea5ae; font-size: 11px; font-weight: 600; }
.breadcrumb a:hover { color: var(--gold-400); }
.page-hero h1 { max-width: 850px; margin: 18px 0 18px; color: var(--white); font-size: clamp(40px, 5vw, 62px); }
.page-hero p { max-width: 720px; color: #b5c6cd; font-size: 17px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.content-grid h2 { margin: 15px 0 22px; font-size: clamp(32px, 3.6vw, 46px); }
.content-grid p { color: var(--muted); }
.info-panel { padding: 34px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.info-panel h3 { margin-bottom: 20px; font-size: 20px; }
.facts-list li { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.facts-list li:last-child { border: 0; }
.facts-list b { color: var(--navy-900); text-align: right; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 30px; border-top: 3px solid var(--teal-700); border-radius: 0 0 var(--radius-md) var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.value-card span { color: var(--gold-800); font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.value-card h3 { margin: 16px 0 10px; font-size: 20px; }
.value-card p { color: var(--muted); font-size: 13.5px; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { position: relative; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.service-detail .service-symbol { margin-bottom: 24px; }
.service-detail h3 { margin-bottom: 12px; font-size: 23px; }
.service-detail > p { color: var(--muted); font-size: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tag { padding: 7px 11px; border-radius: 999px; background: var(--teal-100); color: var(--teal-700); font-size: 10.5px; font-weight: 700; }
.engagement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.engagement-card { padding: 36px; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: var(--navy-900); }
.engagement-card h3 { margin-bottom: 13px; color: var(--white); font-size: 22px; }
.engagement-card p { color: #a9bbc3; font-size: 14px; }

.process-list { counter-reset: process; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.process-step { position: relative; min-height: 265px; padding: 27px 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.process-step .num { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 42px; border-radius: 50%; background: var(--teal-700); color: var(--white); font-family: var(--font-display); font-size: 10px; font-weight: 800; }
.process-step h3 { margin-bottom: 11px; font-size: 19px; }
.process-step p { color: var(--muted); font-size: 12.5px; line-height: 1.7; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.principle-panel { padding: 38px; border-radius: var(--radius-md); background: var(--white); }
.principle-panel h2 { margin: 14px 0 22px; font-size: 29px; }
.check-list li { position: relative; padding: 13px 0 13px 31px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13.5px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 13px; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); font-size: 11px; font-weight: 800; }
.check-list li:last-child { border: 0; }

/* Contact */
.contact-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 56px; }
.contact-tile { min-height: 170px; padding: 27px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-tile .contact-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 23px; border-radius: 11px; background: var(--teal-100); color: var(--teal-700); font-family: var(--font-display); font-size: 19px; font-weight: 800; line-height: 1; }
.contact-tile .contact-icon.whatsapp { background: #def7e7; color: #177f3e; font-size: 15px; }
.contact-tile h4 { margin-bottom: 7px; font-size: 16px; }
.contact-tile a, .contact-tile p { color: var(--muted); font-size: 13px; }
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; }
.contact-layout h2 { margin: 15px 0 30px; font-size: 34px; }
.contact-side { padding: 38px; border-radius: var(--radius-md); background: var(--navy-950); color: var(--white); }
.contact-side h2 { color: var(--white); }
.contact-side p { color: #b0c2c8; }
.contact-side .check-list li { border-color: var(--line-dark); color: #bfd0d6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: var(--navy-900); font-size: 12px; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--text); font: inherit; font-size: 13px; transition: border var(--transition), box-shadow var(--transition); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(8,116,123,.12); }
.hp-field { position: absolute; left: -9999px; }
.form-note { margin-top: 14px; color: var(--muted); font-size: 10.5px; }
.form-note a { color: var(--teal-700); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.form-status { display: none; margin-top: 18px; padding: 12px 15px; border-radius: 9px; font-size: 13px; font-weight: 700; }
.form-status.show { display: block; }
.form-status.ok { background: #dff2e7; color: #1b6640; }
.form-status.err { background: #fae3e3; color: #943a3a; }

/* Footer */
.site-footer { padding: 75px 0 28px; background: #04141e; color: #9db0b8; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .7fr 1fr 1.25fr; gap: 56px; }
.footer-logo { margin-bottom: 22px; }
.footer-brand p { max-width: 375px; font-size: 13px; line-height: 1.75; }
.registration-chip { display: inline-flex; margin-top: 12px; padding: 7px 10px; border: 1px solid var(--line-dark); border-radius: 999px; color: #a9bdc4; font-size: 9.5px; letter-spacing: .05em; }
.footer-col h4 { margin-bottom: 20px; color: var(--white); font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #9db0b8; font-size: 12.5px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact > a { margin-bottom: 8px; color: var(--gold-400); }
.footer-contact > a, .contact-tile a, .legal-section a, .privacy-contact a { overflow-wrap: anywhere; }
.footer-contact address { margin-top: 12px; color: #7f959e; font-size: 11.5px; font-style: normal; line-height: 1.75; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #708690; font-size: 10.5px; }

/* WhatsApp contact */
.whatsapp-fab { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 7px 16px 7px 7px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; background: #1f9d50; color: var(--white); box-shadow: 0 14px 32px rgba(6,26,38,.25); font-family: var(--font-display); font-size: 12px; font-weight: 800; transition: transform var(--transition), background var(--transition); }
.whatsapp-fab:hover { transform: translateY(-3px); background: #188743; }
.whatsapp-fab-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--white); color: #177f3e; font-size: 14px; }

/* Privacy notice */
.legal-hero p { max-width: 790px; }
.legal-layout { display: grid; grid-template-columns: 235px minmax(0, 1fr); gap: 72px; align-items: start; }
.legal-nav { position: sticky; top: 142px; display: flex; flex-direction: column; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.legal-nav span { margin-bottom: 14px; color: var(--navy-950); font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-nav a { padding: 8px 0; color: var(--muted); font-size: 11.5px; line-height: 1.4; }
.legal-nav a:hover { color: var(--teal-700); }
.legal-content { max-width: 790px; }
.legal-updated { display: inline-flex; margin-bottom: 34px; padding: 7px 11px; border-radius: 999px; background: var(--teal-100); color: var(--teal-700); font-size: 10.5px; font-weight: 700; }
.legal-section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-section h2 { margin-bottom: 17px; font-size: 25px; letter-spacing: -.025em; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 13.5px; line-height: 1.8; }
.legal-section ul { margin: 14px 0 20px; }
.legal-section li { position: relative; padding: 5px 0 5px 22px; }
.legal-section li::before { content: ''; position: absolute; left: 0; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-600); }
.legal-section a { color: var(--teal-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-fact { display: grid; grid-template-columns: 145px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.legal-fact b { color: var(--navy-900); }
.legal-fact span { color: var(--muted); }
.privacy-contact { display: flex; flex-wrap: wrap; gap: 9px 22px; margin: 17px 0 24px; }
.privacy-contact a { display: inline-flex; padding: 9px 13px; border-radius: 999px; background: var(--teal-100); text-decoration: none; }

/* Custom 404 */
.not-found { min-height: 68vh; display: grid; align-items: center; padding: 100px 0; overflow: hidden; background: var(--navy-950); color: var(--white); }
.not-found-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: center; }
.not-found h1 { max-width: 720px; margin: 20px 0; color: var(--white); font-size: clamp(44px, 5.5vw, 72px); }
.not-found p { max-width: 620px; margin-bottom: 30px; color: #b8c7ce; }
.not-found-mark { position: relative; display: grid; place-items: center; min-height: 360px; }
.not-found-mark span { position: absolute; color: rgba(255,255,255,.045); font-family: var(--font-display); font-size: clamp(150px, 20vw, 270px); font-weight: 800; letter-spacing: -.08em; }
.not-found-mark img { position: relative; width: 170px; max-height: 230px; object-fit: contain; filter: drop-shadow(0 20px 34px rgba(0,0,0,.35)); }

/* Light theme */
html[data-theme="light"] body { background: #f8f6f0; }
html[data-theme="light"] :focus-visible { outline-color: var(--teal-600); }
html[data-theme="light"] .site-header { background: rgba(255,255,255,.94); border-color: var(--line); box-shadow: 0 8px 28px rgba(6,26,38,.055); }
html[data-theme="light"] .site-header .brand { color: var(--navy-950); }
html[data-theme="light"] .nav-links a { color: #536b76; }
html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links a.active { color: var(--teal-700); }
html[data-theme="light"] .theme-toggle { border-color: #d5dfde; background: transparent; color: #536b76; }
html[data-theme="light"] .theme-toggle:hover { border-color: var(--teal-600); background: var(--white); color: var(--teal-700); }
html[data-theme="light"] .nav-toggle span { background: var(--navy-950); }

html[data-theme="light"] .hero { background: linear-gradient(135deg, #fbfcf9 0%, #edf5f2 56%, #deece9 100%); color: var(--text); }
html[data-theme="light"] .hero::before { background: radial-gradient(circle, rgba(226,183,97,.24), transparent 70%); }
html[data-theme="light"] .hero::after { opacity: .72; background-image: linear-gradient(rgba(7,91,100,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(7,91,100,.055) 1px, transparent 1px); }
html[data-theme="light"] .hero h1 { color: var(--navy-950); }
html[data-theme="light"] .hero .eyebrow { color: var(--teal-700); }
html[data-theme="light"] .hero .eyebrow::before { background: var(--gold-600); }
html[data-theme="light"] .hero h1 em { color: var(--gold-800); }
html[data-theme="light"] .hero .lead { color: #526a75; }
html[data-theme="light"] .visual-glow { background: radial-gradient(circle, rgba(8,116,123,.2), rgba(8,116,123,.04) 58%, transparent 72%); }
html[data-theme="light"] .delivery-board { border-color: rgba(7,91,100,.14); background: rgba(255,255,255,.9); box-shadow: 0 28px 70px rgba(6,26,38,.14); }
html[data-theme="light"] .delivery-board::after { border-color: rgba(7,91,100,.12); }
html[data-theme="light"] .delivery-kicker { color: var(--teal-700); }
html[data-theme="light"] .delivery-status { color: var(--muted); }
html[data-theme="light"] .delivery-board h2 { color: var(--navy-950); }
html[data-theme="light"] .delivery-flow::before { background: rgba(7,91,100,.2); }
html[data-theme="light"] .delivery-step { border-color: rgba(7,91,100,.12); background: #f5f9f7; }
html[data-theme="light"] .delivery-step-index { border-color: rgba(7,91,100,.2); background: var(--white); color: var(--teal-700); }
html[data-theme="light"] .delivery-step strong { color: var(--navy-950); }
html[data-theme="light"] .delivery-step small { color: var(--muted); }
html[data-theme="light"] .delivery-capabilities { border-color: rgba(7,91,100,.12); }
html[data-theme="light"] .delivery-capabilities > span { color: var(--muted); }
html[data-theme="light"] .delivery-capabilities li { background: var(--teal-100); color: var(--teal-700); }
html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .btn-outline { border-color: rgba(7,91,100,.34); background: rgba(255,255,255,.62); color: var(--navy-950); }
html[data-theme="light"] .btn-secondary:hover,
html[data-theme="light"] .btn-outline:hover { border-color: var(--teal-600); background: var(--white); color: var(--teal-700); }

html[data-theme="light"] .section-dark { background: #e7f0ee; color: var(--text); }
html[data-theme="light"] .eyebrow.light { color: var(--teal-700); }
html[data-theme="light"] .eyebrow.light::before { background: var(--gold-600); }
html[data-theme="light"] .approach-copy h2 { color: var(--navy-950); }
html[data-theme="light"] .approach-copy p { color: var(--muted); }
html[data-theme="light"] .mini-process li { border-color: rgba(7,91,100,.16); }
html[data-theme="light"] .mini-process > li > span { color: var(--gold-800); }
html[data-theme="light"] .mini-process b { color: var(--navy-950); }
html[data-theme="light"] .mini-process small { color: var(--muted); }
html[data-theme="light"] .engagement-card { border-color: var(--line); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
html[data-theme="light"] .engagement-card h3 { color: var(--navy-950); }
html[data-theme="light"] .engagement-card p { color: var(--muted); }
html[data-theme="light"] .cta-banner { border: 1px solid rgba(7,91,100,.12); background: linear-gradient(125deg, #d8ebe8, #fbfcf9); color: var(--text); box-shadow: 0 24px 58px rgba(6,26,38,.12); }
html[data-theme="light"] .cta-banner::after { border-color: rgba(7,91,100,.16); box-shadow: 0 0 0 38px rgba(7,91,100,.035), 0 0 0 76px rgba(7,91,100,.025); }
html[data-theme="light"] .cta-banner h2 { color: var(--navy-950); }
html[data-theme="light"] .cta-banner p { color: var(--muted); }

html[data-theme="light"] .page-hero { background: linear-gradient(135deg, #f8fbf8, #e3efec); color: var(--text); }
html[data-theme="light"] .page-hero::after { border-color: rgba(200,138,36,.2); box-shadow: 0 0 0 48px rgba(7,91,100,.025), 0 0 0 96px rgba(7,91,100,.018); }
html[data-theme="light"] .breadcrumb { color: var(--muted); }
html[data-theme="light"] .page-hero h1 { color: var(--navy-950); }
html[data-theme="light"] .page-hero p { color: #526a75; }
html[data-theme="light"] .contact-side { border: 1px solid rgba(7,91,100,.12); background: #e3efec; color: var(--text); }
html[data-theme="light"] .contact-side h2 { color: var(--navy-950); }
html[data-theme="light"] .contact-side p { color: var(--muted); }
html[data-theme="light"] .contact-side .check-list li { border-color: rgba(7,91,100,.14); color: #526a75; }

html[data-theme="light"] .site-footer { background: #e5eeec; color: #526a75; }
html[data-theme="light"] .site-footer .brand { color: var(--navy-950); }
html[data-theme="light"] .registration-chip { border-color: rgba(7,91,100,.18); color: var(--muted); }
html[data-theme="light"] .footer-col h4 { color: var(--navy-950); }
html[data-theme="light"] .footer-col a { color: #526a75; }
html[data-theme="light"] .footer-col a:hover,
html[data-theme="light"] .footer-contact > a { color: var(--teal-700); }
html[data-theme="light"] .footer-contact address { color: var(--muted); }
html[data-theme="light"] .footer-bottom { border-color: rgba(7,91,100,.15); color: #667b84; }

html[data-theme="light"] .not-found { background: linear-gradient(135deg, #f8fbf8, #e3efec); color: var(--text); }
html[data-theme="light"] .not-found h1 { color: var(--navy-950); }
html[data-theme="light"] .not-found p { color: var(--muted); }
html[data-theme="light"] .not-found-mark span { color: rgba(7,91,100,.065); }
html[data-theme="light"] .not-found-mark img { filter: drop-shadow(0 20px 34px rgba(6,26,38,.16)); }

html[data-theme="light"] .nav-links { border-color: var(--line); }
html[data-theme="light"] .nav-links a { border-color: var(--line); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1050px) {
  .nav-links { gap: 20px; }
  .hero-grid { gap: 34px; }
  .hero-visual { min-height: 470px; }
  .delivery-board { padding: 27px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr .8fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav { gap: 12px; }
  .nav-cta { gap: 8px; }
  .theme-choice { gap: 0; }
  .theme-choice svg { width: 19px; height: 19px; }
  .nav-toggle { display: block; width: 48px; height: 48px; flex: 0 0 48px; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100vh - 78px); max-height: calc(100dvh - 78px); margin: 0; padding: 12px 24px 22px; overflow-y: auto; overscroll-behavior: contain; background: var(--navy-950); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); box-shadow: 0 18px 38px rgba(3, 16, 24, .3); visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity var(--transition), transform var(--transition), visibility 0s linear 220ms; }
  html[data-theme="light"] .nav-links { background: rgba(255,255,255,.98); box-shadow: 0 18px 38px rgba(6,26,38,.14); }
  .nav-links.open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
  .nav-links a { display: flex; align-items: center; min-height: 50px; padding: 12px 4px; border-bottom: 1px solid var(--line-dark); }
  .nav-links a::after { display: none; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 82px 0 72px; }
  .hero-grid, .split-intro, .approach-grid, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 28px; }
  .delivery-board { width: min(100%, 590px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .split-intro, .approach-grid, .content-grid, .contact-layout { gap: 42px; }
  .section-head-row { align-items: flex-start; flex-direction: column; }
  .value-grid { grid-template-columns: 1fr; }
  .text-link, .service-card a, .contact-tile a { display: inline-flex; align-items: center; min-height: 44px; }
  .service-card a { bottom: 15px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .contact-tiles { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: 1fr; }
  .legal-layout, .not-found-grid { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .legal-nav span { grid-column: 1 / -1; }
  .not-found-mark { min-height: 250px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-col li a, .footer-contact > a { display: inline-flex; align-items: center; min-height: 44px; }
  .whatsapp-fab { width: 50px; padding: 7px; }
  .whatsapp-fab-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@media (max-width: 580px) {
  .container { width: min(100% - 32px, var(--max-width)); }
  .eyebrow { max-width: 100%; gap: 8px; font-size: 9.5px; letter-spacing: .1em; line-height: 1.5; }
  .eyebrow::before { flex: 0 0 20px; width: 20px; }
  .nav { min-height: 68px; gap: 6px; }
  .nav-cta { gap: 4px; }
  .nav-links { top: 100%; max-height: calc(100vh - 68px); max-height: calc(100dvh - 68px); padding-inline: 16px; }
  .nav-toggle { width: 48px; height: 48px; flex: 0 0 48px; }
  .brand { min-width: 0; gap: 8px; }
  .brand-mark { width: 31px; height: 38px; }
  .brand-copy strong { font-size: 11px; letter-spacing: .02em; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { margin-top: 18px; font-size: clamp(36px, 12vw, 42px); }
  .hero .lead { margin-bottom: 28px; font-size: 15px; line-height: 1.65; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .text-link { min-height: 44px; }
  .hero-visual { min-height: 0; margin-top: 30px; }
  .visual-glow { inset: 5% 4%; }
  .delivery-board { padding: 22px 20px; border-radius: 20px; }
  .delivery-board::after { inset: 10px -7px -10px 7px; }
  .delivery-board-top { align-items: flex-start; flex-direction: column; gap: 9px; }
  .delivery-board h2 { margin: 17px 0 23px; font-size: 23px; }
  .delivery-flow { grid-template-columns: 1fr; gap: 8px; }
  .delivery-flow::before { display: none; }
  .delivery-step { display: grid; grid-template-columns: 36px 1fr; column-gap: 12px; align-items: center; min-height: 70px; padding: 10px 12px; }
  .delivery-step-index { grid-row: 1 / span 2; margin: 0; }
  .delivery-step strong { align-self: end; margin: 0; }
  .delivery-step small { align-self: start; }
  .delivery-capabilities { align-items: flex-start; flex-direction: column; gap: 11px; margin-top: 19px; padding-top: 17px; }
  .delivery-capabilities ul { justify-content: flex-start; }
  .trust-grid, .services-grid, .service-detail-grid, .engagement-grid, .process-list, .form-grid { grid-template-columns: 1fr; }
  .contact-tiles { grid-template-columns: 1fr; gap: 14px; margin-bottom: 44px; }
  .trust-grid > div { padding: 22px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head-row { gap: 18px; }
  .section-head h2, .split-intro h2, .approach-copy h2 { font-size: clamp(30px, 9.5vw, 38px); }
  .split-intro, .approach-grid, .content-grid, .contact-layout { gap: 36px; }
  .intro-copy { font-size: 15.5px; }
  .service-card { min-height: 300px; padding: 24px; }
  .service-card a { left: 24px; bottom: 16px; display: inline-flex; align-items: center; min-height: 44px; }
  .service-symbol { margin-bottom: 28px; }
  .service-detail, .engagement-card, .principle-panel, .info-panel, .contact-side { padding: 24px; }
  .process-step { min-height: 0; padding: 24px; }
  .process-step .num { margin-bottom: 24px; }
  .facts-list li { align-items: flex-start; flex-direction: column; gap: 4px; }
  .facts-list b { text-align: left; }
  .contact-tile { min-height: 0; padding: 24px; }
  .contact-layout h2 { margin-bottom: 24px; font-size: 30px; }
  .field input, .field select, .field textarea { min-height: 52px; font-size: 16px; }
  .field textarea { min-height: 140px; }
  .form-note { font-size: 11.5px; line-height: 1.65; }
  .cta-banner { align-items: flex-start; flex-direction: column; gap: 28px; padding: 34px 24px; }
  .cta-banner h2 { font-size: 30px; }
  .cta-banner .btn { width: 100%; }
  .page-hero { padding: 58px 0 54px; }
  .page-hero h1 { font-size: clamp(34px, 10.5vw, 42px); }
  .page-hero p { font-size: 15.5px; line-height: 1.7; }
  .content-grid h2 { font-size: 30px; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .site-footer { padding-top: 60px; }
  .footer-grid { gap: 30px; }
  .footer-col li { margin-bottom: 0; }
  .footer-col li a, .footer-contact > a { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-bottom { flex-direction: column; gap: 10px; margin-top: 40px; }
  .whatsapp-fab { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); width: 52px; min-height: 52px; padding: 7px; }
  .whatsapp-fab-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .legal-nav { display: flex; flex-direction: row; gap: 18px; padding: 12px 16px; overflow-x: auto; scrollbar-width: thin; }
  .legal-nav span { display: none; }
  .legal-nav a { flex: 0 0 auto; min-height: 44px; display: inline-flex; align-items: center; white-space: nowrap; }
  .legal-section h2 { font-size: 22px; }
  .legal-fact { grid-template-columns: 1fr; gap: 4px; }
  .privacy-contact { flex-direction: column; gap: 8px; }
  .privacy-contact a { width: 100%; }
  .not-found { padding: 58px 0; }
  .not-found-grid { gap: 28px; }
  .not-found h1 { font-size: clamp(36px, 11vw, 46px); }
  .not-found-mark { min-height: 200px; }
}

@media (max-width: 380px) {
  .brand-copy strong { font-size: 10.5px; }
  .hero h1 { font-size: 36px; }
}
