:root {
  --navy: #062d59;
  --navy-deep: #031b36;
  --blue: #0b4f8a;
  --mist: #edf2f6;
  --silver: #8a9098;
  --ink: #101820;
  --paper: #f8fafb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible { outline: 3px solid #79a8d0; outline-offset: 4px; }

.site-header {
  width: min(1280px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { width: 186px; height: 70px; overflow: hidden; display: flex; align-items: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.site-header nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 650; color: #354657; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 28px; }
.language-switch { display: flex; align-items: center; gap: 5px; padding-left: 22px; border-left: 1px solid #d6dee5; color: #94a1ac; }
.language-switch button { padding: 5px 2px; border: 0; background: transparent; color: #8b98a4; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.language-switch button.active { color: var(--navy); }
.language-switch span { font-size: 10px; }

.hero {
  min-height: 690px;
  width: min(1380px, calc(100% - 28px));
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  background:
    radial-gradient(circle at 78% 20%, rgba(34, 107, 169, .14), transparent 30%),
    linear-gradient(135deg, #f7fafc 0%, #e7eef4 100%);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(6, 45, 89, .08);
  border-radius: 50%;
  left: -190px;
  bottom: -240px;
}
.hero-copy { padding: 100px 48px 62px 76px; position: relative; z-index: 2; }
.kicker { margin: 0 0 24px; color: var(--blue); font-size: 11px; letter-spacing: .18em; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.kicker > span { width: 30px; height: 1px; background: currentColor; display: inline-block; }
.kicker b, .hero-actions b, .closing-contact-link b, footer a b, .contact-form button b { font: inherit; }
.hero h1 { margin: 0; max-width: 700px; color: var(--navy-deep); font-size: clamp(48px, 5.4vw, 78px); line-height: .98; letter-spacing: -.055em; font-weight: 720; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 610px; margin: 28px 0 0; color: #536474; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.primary-button { border: 0; border-radius: 6px; padding: 16px 20px; background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; display: inline-flex; gap: 26px; align-items: center; box-shadow: 0 12px 28px rgba(6, 45, 89, .18); }
.primary-button span { font-size: 17px; }
.text-link { color: var(--navy); font-size: 14px; font-weight: 720; display: flex; gap: 10px; align-items: center; }
.text-link span { color: var(--blue); }
.scope-line { margin-top: 76px; display: flex; align-items: center; gap: 12px; color: #5e7182; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.scope-line i { width: 3px; height: 3px; border-radius: 50%; background: #9babba; }

.hero-visual { position: relative; overflow: hidden; min-height: 620px; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(217,228,238,.42));
  border: 1px solid rgba(255,255,255,.9);
  top: 54px;
  right: 34px;
  box-shadow: 0 40px 90px rgba(26, 63, 99, .12);
}
.logo-stage { position: absolute; width: min(520px, 82%); min-height: 310px; right: 44px; top: 155px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.95); box-shadow: 0 24px 65px rgba(6,45,89,.14); border-radius: 18px; display: flex; align-items: center; justify-content: center; transform: rotate(-2deg); }
.logo-stage p { position: absolute; top: 17px; left: 22px; margin: 0; color: #8593a0; font-size: 9px; letter-spacing: .24em; font-weight: 800; }
.logo-stage img { width: 90%; height: 80%; object-fit: contain; }
.route { position: absolute; height: 1px; background: rgba(11,79,138,.25); transform-origin: left center; z-index: 4; }
.route-one { width: 420px; top: 137px; left: 20px; transform: rotate(-18deg); }
.route-two { width: 480px; bottom: 122px; left: 54px; transform: rotate(12deg); }
.route-dot { position: absolute; z-index: 5; width: 11px; height: 11px; border-radius: 50%; border: 3px solid #fff; background: var(--blue); box-shadow: 0 0 0 1px rgba(11,79,138,.2); }
.dot-one { top: 64px; right: 89px; }
.dot-two { bottom: 55px; left: 74px; }
.visual-note { position: absolute; z-index: 8; padding: 14px 17px; background: rgba(3,27,54,.94); color: white; border-radius: 8px; box-shadow: 0 16px 34px rgba(3,27,54,.18); }
.visual-note b { display: block; font-size: 15px; }
.visual-note span { display: block; margin-top: 3px; color: #aebdcb; font-size: 10px; }
.note-one { left: 12px; top: 100px; }
.note-two { right: 34px; bottom: 72px; }

.service-section { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 128px 0 118px; }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .approach-section h2, .why-section h2, .closing-section h2 { margin: 0; color: var(--navy-deep); font-size: clamp(38px, 4.2vw, 60px); line-height: 1.06; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 6px; color: #667787; font-size: 16px; line-height: 1.75; max-width: 520px; }
.service-shell { display: grid; grid-template-columns: 310px 1fr; border-top: 1px solid #cfd8df; min-height: 850px; }
.service-tabs { border-right: 1px solid #cfd8df; padding: 17px 0; }
.service-tabs button { width: 100%; min-height: 58px; padding: 0 20px 0 8px; border: 0; border-bottom: 1px solid #dde4e9; background: transparent; color: #617180; display: grid; grid-template-columns: 34px 1fr 24px; align-items: center; text-align: left; font-size: 13px; font-weight: 720; transition: .2s ease; }
.service-tabs button span { color: #9ba9b4; font-size: 9px; letter-spacing: .12em; }
.service-tabs button i { font-style: normal; justify-self: end; opacity: 0; transform: translate(-6px, 6px); transition: .2s ease; }
.service-tabs button:hover { color: var(--navy); background: #f0f4f7; }
.service-tabs button.active { color: white; background: var(--navy); padding-left: 16px; }
.service-tabs button.active span { color: #9fb8cf; }
.service-tabs button.active i { opacity: 1; transform: none; }
.service-panel { padding: 48px 0 0 60px; animation: reveal .35s ease; }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel-intro > p:first-child { margin: 0 0 15px; color: var(--blue); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.panel-intro h3 { max-width: 780px; margin: 0; color: var(--navy-deep); font-size: clamp(28px, 3vw, 42px); line-height: 1.15; letter-spacing: -.035em; }
.panel-rule { width: 62px; height: 2px; background: var(--blue); margin: 28px 0 20px; }
.panel-summary { max-width: 740px; margin: 0; color: #617282; font-size: 15px; line-height: 1.72; }
.service-list { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
.service-list > div { border-top: 1px solid #d8e0e6; min-height: 68px; display: grid; grid-template-columns: 34px 1fr; align-items: center; }
.service-list span { color: #91a1ae; font-size: 9px; letter-spacing: .1em; }
.service-list p { margin: 0; color: #293b4b; font-size: 13px; font-weight: 650; }
.outcome-row { margin-top: 34px; padding: 18px 0; border-top: 1px solid #cfd8df; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.outcome-row small { margin-right: 10px; color: #7b8a97; text-transform: uppercase; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.outcome-row span { background: #e9eff4; color: #28445e; border-radius: 999px; padding: 8px 12px; font-size: 10px; font-weight: 750; }

.approach-section {
  padding: 112px max(7vw, 48px) 124px;
  background:
    radial-gradient(circle at 78% 22%, rgba(31,98,156,.24), transparent 27%),
    var(--navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.approach-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  right: -210px;
  top: -260px;
}
.approach-section .kicker { color: #85b1d6; }
.approach-section h2 { color: white; }
.approach-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 110px; align-items: end; max-width: 1240px; margin: 0 auto 72px; }
.approach-heading > p { color: #9fb0c0; margin: 0 0 5px; font-size: 15px; line-height: 1.75; }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1240px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.18); }
.approach-grid article { min-height: 260px; padding: 26px 28px 28px 0; border-right: 1px solid rgba(255,255,255,.13); position: relative; }
.approach-grid article:not(:first-child) { padding-left: 28px; }
.approach-grid article:last-child { border-right: 0; }
.approach-grid span { color: #6f8aa3; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.approach-grid b { display: block; margin-top: 58px; color: white; font-size: 24px; letter-spacing: -.02em; }
.approach-grid p { margin: 16px 0 0; color: #95a8ba; font-size: 13px; line-height: 1.7; }
.approach-grid article::before { content: ""; position: absolute; width: 7px; height: 7px; top: -4px; left: 0; border-radius: 50%; background: #77a8d2; box-shadow: 0 0 0 5px rgba(119,168,210,.12); }
.approach-grid article:not(:first-child)::before { left: 28px; }

.why-section { padding: 118px max(7vw, 48px) 130px; background: #f8fafb; }
.why-heading { text-align: center; }
.why-heading .kicker { justify-content: center; }
.why-heading h2 { max-width: 850px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1160px; margin: 72px auto 0; }
.why-grid article { min-height: 330px; padding: 34px; border: 1px solid #dbe3e8; background: white; position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.why-grid article:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(13,50,84,.09); }
.why-grid article::after { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid #edf1f4; border-radius: 50%; right: -98px; top: -88px; }
.why-mark { width: 66px; height: 66px; display: grid; place-items: center; background: #eef3f7; color: var(--blue); border-radius: 50%; font-weight: 820; font-size: 17px; }
.why-grid h3 { margin: 64px 0 14px; color: var(--navy-deep); font-size: 23px; letter-spacing: -.025em; }
.why-grid p { margin: 0; color: #667786; font-size: 14px; line-height: 1.72; }

.faq-section { padding: 112px max(7vw, 48px) 124px; background: white; }
.faq-heading { max-width: 830px; margin: 0 auto 54px; text-align: center; }
.faq-heading .kicker { justify-content: center; }
.faq-heading h2 { margin: 0; color: var(--navy-deep); font-size: clamp(36px, 4vw, 56px); line-height: 1.08; letter-spacing: -.045em; }
.faq-list { max-width: 940px; margin: 0 auto; border-top: 1px solid #cfd8df; }
.faq-list details { border-bottom: 1px solid #d8e0e6; }
.faq-list summary { position: relative; padding: 25px 56px 25px 0; list-style: none; cursor: pointer; color: var(--navy-deep); font-size: 17px; font-weight: 760; line-height: 1.45; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--blue); font-size: 26px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 800px; margin: -4px 0 26px; color: #667786; font-size: 14px; line-height: 1.75; }

.contact-section {
  padding: 112px max(7vw, 48px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 8vw, 130px);
  background:
    radial-gradient(circle at 15% 85%, rgba(48, 119, 180, .18), transparent 31%),
    var(--navy-deep);
  color: white;
}
.contact-copy { max-width: 560px; }
.contact-copy .kicker { color: #89b5da; }
.contact-copy h2 { margin: 0; color: white; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.06; letter-spacing: -.045em; }
.contact-copy > p:not(.kicker) { margin: 26px 0 0; max-width: 500px; color: #9fb0c0; font-size: 15px; line-height: 1.75; }
.contact-links { margin-top: 48px; display: grid; gap: 14px; }
.contact-links a { padding: 18px 20px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); transition: border-color .2s ease, background .2s ease; }
.contact-links a:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.contact-links small { display: block; margin-bottom: 6px; color: #81a6c7; text-transform: uppercase; font-size: 9px; letter-spacing: .16em; font-weight: 800; }
.contact-links strong { font-size: 17px; letter-spacing: -.01em; }
.contact-form { padding: 38px; background: white; color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.hidden-field { position: absolute; left: -10000px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 22px; }
.contact-form label { display: grid; gap: 9px; color: #526372; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #cbd6df; border-radius: 0; padding: 10px 0 12px; background: transparent; color: var(--navy-deep); font: 500 15px/1.45 Inter, "Segoe UI", Arial, sans-serif; outline: none; transition: border-color .2s ease; }
.contact-form textarea { resize: vertical; min-height: 118px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
.message-field { margin-top: 28px; }
.consent-field { margin-top: 22px; grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; text-transform: none !important; letter-spacing: 0 !important; font-size: 11px !important; line-height: 1.55; font-weight: 550 !important; color: #6f7d89 !important; }
.consent-field input { margin: 2px 0 0; accent-color: var(--navy); }
.form-submit-row { margin-top: 26px; display: flex; align-items: center; gap: 18px; }
.contact-form button { border: 0; border-radius: 5px; padding: 15px 18px; display: inline-flex; align-items: center; gap: 28px; background: var(--navy); color: white; font-weight: 760; }
.contact-form button:disabled { opacity: .65; cursor: wait; }
.form-status { margin: 0; color: #536575; font-size: 12px; line-height: 1.45; }
.form-status.success { color: #216744; }
.form-status.error { color: #a13b3b; }

.closing-section { min-height: 410px; padding: 90px max(7vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 70px; background: linear-gradient(120deg, #0b4f8a, #062d59); color: white; position: relative; overflow: hidden; }
.closing-section::after { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); right: -230px; bottom: -410px; }
.closing-section > div { max-width: 850px; position: relative; z-index: 2; }
.closing-section .kicker { color: #b3d0e9; }
.closing-section h2 { color: white; }
.closing-contact-link { position: relative; z-index: 2; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.55); border-radius: 6px; background: white; color: var(--navy); padding: 17px 19px; font-size: 13px; font-weight: 780; display: flex; align-items: center; gap: 22px; }

footer { min-height: 150px; width: min(1240px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: 190px 1fr auto; gap: 36px; align-items: center; }
footer img { width: 180px; height: 105px; object-fit: contain; }
footer p { margin: 0; color: #71808d; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 780; }
footer a { color: var(--navy); font-size: 12px; font-weight: 750; display: flex; gap: 8px; }

.cookie-banner { position: fixed; z-index: 1000; left: 24px; right: 24px; bottom: 22px; max-width: 960px; margin: 0 auto; padding: 20px 22px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; background: rgba(3,27,54,.98); color: white; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; box-shadow: 0 18px 55px rgba(3,27,54,.3); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 5px; font-size: 14px; }
.cookie-banner p { margin: 0; max-width: 660px; color: #b7c5d2; font-size: 12px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-width: 92px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 5px; font: 750 12px/1 Inter, "Segoe UI", Arial, sans-serif; cursor: pointer; }
.cookie-reject { background: transparent; color: white; }
.cookie-accept { background: white; color: var(--navy); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 72px 44px 30px; }
  .hero-visual { min-height: 540px; }
  .site-header nav { gap: 18px; }
  .header-actions { gap: 16px; }
  .language-switch { padding-left: 14px; }
  .service-shell { grid-template-columns: 250px 1fr; }
  .service-panel { padding-left: 36px; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 30px); height: 78px; }
  .brand { width: 150px; }
  .site-header nav { display: none; }
  .header-actions { gap: 0; }
  .language-switch { border-left: 0; padding-left: 0; }
  .hero { width: calc(100% - 16px); border-radius: 18px; min-height: auto; }
  .hero-copy { padding: 60px 24px 34px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .scope-line { margin-top: 52px; flex-wrap: wrap; }
  .hero-visual { min-height: 450px; }
  .hero-visual::before { width: 390px; height: 390px; right: -70px; }
  .logo-stage { width: 88%; right: 4%; top: 100px; min-height: 250px; }
  .note-one { top: 44px; left: 14px; }
  .note-two { right: 16px; bottom: 36px; }
  .service-section { width: calc(100% - 30px); padding: 92px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .service-shell { display: block; border-top: 0; min-height: auto; }
  .service-tabs { border: 0; padding: 0 0 16px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
  .service-tabs::-webkit-scrollbar { display: none; }
  .service-tabs button { flex: 0 0 auto; width: auto; min-height: 48px; border: 1px solid #d5dee5; border-radius: 5px; padding: 0 14px; display: flex; gap: 9px; }
  .service-tabs button i { display: none; }
  .service-tabs button.active { padding-left: 14px; }
  .service-panel { padding: 34px 0 0; border-top: 1px solid #cfd8df; }
  .service-list { grid-template-columns: 1fr; }
  .outcome-row { align-items: flex-start; }
  .outcome-row small { width: 100%; margin-bottom: 4px; }
  .approach-section, .why-section, .faq-section, .contact-section, .closing-section { padding-left: 24px; padding-right: 24px; }
  .approach-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 55px; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid article { min-height: 235px; }
  .approach-grid article:nth-child(2) { border-right: 0; }
  .approach-grid article:nth-child(3), .approach-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.13); }
  .approach-grid article:nth-child(3) { padding-left: 0; }
  .approach-grid article:nth-child(3)::before { left: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article { min-height: 280px; }
  .contact-section { padding-top: 88px; padding-bottom: 88px; gap: 48px; }
  .contact-form { padding: 26px 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 22px; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .closing-section { align-items: flex-start; flex-direction: column; min-height: 470px; }
  footer { min-height: 220px; grid-template-columns: 1fr; gap: 2px; padding: 24px 0 34px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: 43px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid article, .approach-grid article:not(:first-child), .approach-grid article:nth-child(3) { padding: 25px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.13); min-height: 220px; }
  .approach-grid article:not(:first-child)::before { left: 0; }
  .approach-grid b { margin-top: 38px; }
}
