:root {
  --ink: #071827;
  --ink-soft: #173044;
  --navy: #071b2f;
  --navy-2: #0b2842;
  --paper: #f7fbfc;
  --white: #ffffff;
  --teal: #15c5b3;
  --teal-dark: #087f78;
  --gold: #ffcc57;
  --sky: #dff7f4;
  --muted: #637585;
  --line: #d9e6eb;
  --shadow: 0 22px 70px rgba(7, 27, 47, .12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: .8rem 1rem;
  border-radius: .7rem;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 251, 252, .92);
  border-bottom: 1px solid rgba(217, 230, 235, .9);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.02em;
}
.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(21, 197, 179, .26);
}
.brand-wordmark { font-size: 1.03rem; }
.brand-wordmark span { color: var(--teal-dark); }
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a { text-decoration: none; font-size: .94rem; font-weight: 700; }
.site-nav a:hover { color: var(--teal-dark); }
.lang-link {
  min-width: 46px;
  padding: .45rem .65rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: .55rem .7rem;
  color: var(--ink);
}

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) 0 5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 5%, rgba(21,197,179,.22), transparent 27rem),
    radial-gradient(circle at 12% 100%, rgba(255,204,87,.1), transparent 30rem),
    linear-gradient(135deg, var(--navy), #09253d 60%, #0b3148);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid {
  position: relative;
  display: block;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--teal);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(3rem, 6.3vw, 5.7rem); max-width: 900px; }
.hero-copy > p:not(.eyebrow):not(.hero-slogan) { max-width: 720px; margin: 1.5rem 0 0; color: #c9d9e4; font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.hero-slogan { max-width: 680px; margin: 1.1rem 0 0; color: var(--teal); font-size: 1rem; font-weight: 800; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .76rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: var(--teal); box-shadow: 0 10px 28px rgba(21,197,179,.22); }
.btn-primary:hover { background: #31d6c6; }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.btn-dark { color: var(--white); background: var(--ink); }


.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.25rem; text-align: center; border-right: 1px solid var(--line); color: var(--ink-soft); font-size: .89rem; font-weight: 750; }
.trust-item:last-child { border-right: 0; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.alt { background: var(--white); }
.section-heading { display: grid; grid-template-columns: .78fr 1.22fr; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.section-heading h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.dark-eyebrow { color: var(--teal-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 280px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(9, 34, 53, .05);
}
.service-card::after { content: ""; position: absolute; width: 95px; height: 95px; right: -36px; bottom: -40px; border-radius: 50%; background: var(--sky); }
.service-number { color: var(--teal-dark); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 2.6rem 0 .7rem; font-size: 1.45rem; }
.service-card p { margin: 0; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: center; }
.feature-panel { min-height: 480px; padding: 2rem; display: grid; align-content: end; border-radius: 32px; color: var(--white); background: linear-gradient(155deg, #0c304c, var(--navy)); box-shadow: var(--shadow); }
.feature-panel small { color: var(--teal); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.feature-panel h3 { max-width: 500px; margin: .8rem 0 0; font-size: clamp(2rem, 3.7vw, 3.7rem); }
.feature-copy h2 { margin: 0 0 1.2rem; font-size: clamp(2.2rem, 4vw, 4rem); }
.feature-copy > p { color: var(--muted); font-size: 1.1rem; }
.check-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .9rem; }
.check-list li { display: flex; align-items: flex-start; gap: .8rem; font-weight: 720; }
.check-list li::before { content: "✓"; flex: 0 0 26px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: var(--teal); font-size: .82rem; font-weight: 950; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-card { padding: 1.4rem; border-top: 3px solid var(--teal); background: var(--white); box-shadow: 0 10px 35px rgba(9,34,53,.05); }
.process-card span { color: var(--teal-dark); font-size: .8rem; font-weight: 900; }
.process-card h3 { margin: 1.2rem 0 .6rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.cta-section { padding: 0 0 clamp(4rem, 8vw, 7rem); scroll-margin-top: 6rem; }
.cta-card { position: relative; overflow: hidden; padding: clamp(2rem, 6vw, 5rem); border-radius: 34px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.cta-card::after { content: ""; position: absolute; width: 320px; height: 320px; right: -130px; top: -130px; border: 65px solid rgba(21,197,179,.16); border-radius: 50%; }
.cta-card h2 { position: relative; max-width: 780px; margin: 0; font-size: clamp(2.3rem, 5vw, 4.7rem); }
.cta-card p { position: relative; max-width: 650px; color: #c8d8e2; font-size: 1.08rem; }
.cta-card .cta-actions { position: relative; z-index: 1; }
.cta-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cta-copy { padding-top: .5rem; }
.contact-form { padding: clamp(1.25rem, 3vw, 2rem); border-radius: 22px; color: var(--ink); background: var(--white); box-shadow: 0 20px 55px rgba(0,0,0,.22); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .4rem; color: var(--ink); font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid #aebdc6; border-radius: 10px; color: var(--ink); background: #fff; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #087f75; outline: 3px solid rgba(21,197,179,.25); }
.message-field { grid-column: 1 / -1; }
.consent-row { grid-template-columns: auto 1fr !important; align-items: start; margin: 1rem 0 .65rem; font-weight: 650 !important; }
.consent-row input { width: 1.2rem; min-height: 1.2rem; margin-top: .1rem; }
.contact-form .form-note { margin: 0 0 1rem; color: #4b5f6d; font-size: .92rem; }
.form-note a { color: #086d66; font-weight: 800; }
.contact-form .btn { border: 0; cursor: pointer; }
.contact-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 3rem 0; color: #b9cbd6; background: #051522; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 2rem; }
.footer-brand { color: var(--white); font-size: 1.2rem; font-weight: 850; }
.footer-grid h3 { margin-top: 0; color: var(--white); font-size: .9rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #b9cbd6; text-decoration: none; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { margin-top: 2rem; padding-top: 1.3rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }
.wolf-partner-link { color: #b9cbd6; font-weight: 800; text-decoration: none; }
.wolf-partner-link:hover { color: var(--teal); }

.language-choice { min-height: 100vh; display: grid; place-items: center; padding: 2rem; color: var(--white); background: var(--navy); }
.language-card { width: min(100%, 680px); padding: clamp(2rem, 7vw, 5rem); text-align: center; border: 1px solid rgba(255,255,255,.15); border-radius: 32px; background: rgba(255,255,255,.06); }
.language-card h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
.language-card p { color: #c9d9e4; }
.language-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.legal-hero { padding: 4rem 0 3rem; color: var(--white); background: var(--navy); }
.legal-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 3rem; padding: 4rem 0 6rem; }
.legal-nav { position: sticky; top: 110px; align-self: start; display: grid; gap: .5rem; }
.legal-nav a { padding: .65rem .8rem; border-radius: 9px; text-decoration: none; font-weight: 750; }
.legal-nav a:hover { background: var(--sky); }
.legal-copy { min-width: 0; }
.legal-section { scroll-margin-top: 110px; padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.legal-section h3 { margin-top: 2rem; }
.legal-section p, .legal-section li { color: var(--ink-soft); }
.notice { padding: 1rem 1.2rem; border-left: 4px solid var(--gold); background: #fff9e9; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 900px) {
  .site-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); display: none; padding: 1rem; align-items: stretch; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
  .site-nav[data-open="true"] { display: flex; }
  .nav-toggle { display: inline-flex; }
  .section-heading, .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: 1fr 1fr; }
  .cta-layout { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav-shell { min-height: 68px; }
  .brand-wordmark { font-size: .94rem; }
  .hero { padding-top: 2.6rem; padding-bottom: 3.5rem; }
  h1 { font-size: clamp(2.3rem, 11.5vw, 3.25rem); }
  .hero-copy > p:not(.eyebrow):not(.hero-slogan) { margin-top: 1.1rem; font-size: 1.02rem; }
  .hero-slogan { margin-top: .8rem; font-size: .92rem; }
  .hero-actions { margin-top: 1.35rem; }
  .services-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }

  .footer-bottom { flex-direction: column; }
  .legal-nav { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .message-field { grid-column: auto; }
  .contact-form .btn { width: 100%; justify-content: center; }
}

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