:root {
  --color-background: #FFFDFB;
  --color-surface: #FFFBF5;
  --color-elevated: #FEF7ED;
  --color-text: #521000;
  --color-strong: #140400;
  --color-border: #EBD5C1;
  --color-accent: #FF4801;
  --color-accent-hover: #FF7038;
  --color-blue: #0A95FF;
  --color-green: #19E306;
  --shadow-soft: 0 20px 60px rgba(82, 16, 0, 0.10);
  --shadow-card: 0 12px 40px rgba(82, 16, 0, 0.08);
  --radius-card: 24px;
  --radius-panel: 32px;
  --radius-button: 999px;
  --radius-input: 8px;
  --shell: min(1140px, calc(100vw - 40px));
  --font-sans: "FT Kunst Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(255, 72, 1, 0.10), transparent 34rem),
    radial-gradient(circle at top right, rgba(255, 112, 56, 0.12), transparent 28rem),
    var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }
img { max-width: 100%; display: block; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-button);
  background: var(--color-strong);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 150ms ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(235, 213, 193, 0.72);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--color-strong); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  box-shadow: 0 12px 26px rgba(255, 72, 1, 0.24);
}
.brand-mark .material-symbols-outlined {
  font-size: 26px;
}
.brand strong { display: block; line-height: 1.1; font-size: 16px; }
.brand small { display: block; line-height: 1.1; font-size: 12px; color: rgba(82, 16, 0, 0.66); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: var(--color-surface);
  overflow: hidden;
}
.lang-option {
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: rgba(82, 16, 0, 0.54);
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: background 150ms ease, color 150ms ease;
}
.lang-option.active {
  background: var(--color-accent);
  color: #fff;
}
.lang-option:not(.active):hover {
  background: var(--color-elevated);
  color: var(--color-strong);
}
.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius-button);
  color: rgba(82, 16, 0, 0.78);
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}
.nav-links a:hover { background: var(--color-elevated); color: var(--color-accent); transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero { min-height: calc(100vh - 76px); display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,72,1,.12), transparent 42%),
    radial-gradient(circle at 80% 22%, rgba(255,112,56,.18), transparent 18rem);
  mask-image: linear-gradient(to bottom, #000 70%, transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
h1, h2, h3 { color: var(--color-strong); line-height: 1.02; letter-spacing: -0.055em; margin: 0; }
h1 { font-size: clamp(36px, 5.5vw, 60px); max-width: 950px; }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: 24px; letter-spacing: -0.035em; }
.lead {
  max-width: 730px;
  margin: 26px 0 0;
  font-size: clamp(19px, 2.2vw, 24px);
  color: rgba(82, 16, 0, 0.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border);
  cursor: pointer;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.button:active { transform: translateY(0); }
.button:focus-visible, .nav-links a:focus-visible, .nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 72, 1, 0.28);
  outline-offset: 3px;
}
.button.primary { background: var(--color-accent); border-color: var(--color-accent); color: #fff; box-shadow: 0 16px 32px rgba(255, 72, 1, 0.22); }
.button.primary:hover { background: var(--color-accent-hover); color: #fff; }
.button.secondary { background: rgba(255, 251, 245, 0.88); color: var(--color-strong); }
.locked-button { cursor: not-allowed; opacity: 0.72; pointer-events: none; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span, .logo-cloud span {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: rgba(255, 251, 245, 0.68);
  padding: 8px 12px;
  color: rgba(82, 16, 0, 0.74);
  font-size: 13px;
  font-weight: 700;
}
.hero-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(254, 247, 237, 0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -72px;
  top: -72px;
  background: radial-gradient(circle, rgba(255,72,1,.18), transparent 68%);
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -30px;
  width: 310px;
  height: 230px;
  opacity: 0.16;
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 360'%3E%3Cg fill='none' stroke='%23ff4801' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M67 98c33-25 74-31 120-21 34 7 55 0 79-16 34-22 78-24 119-7 28 12 53 31 76 58'/%3E%3Cpath d='M171 126c32 17 43 45 41 82-2 42 20 62 55 79 27 14 50 34 67 61'/%3E%3Cpath d='M238 106c31 10 54 31 68 62 10 22 29 35 56 41 40 9 69 31 89 66'/%3E%3Cpath d='M103 168c33-4 57 7 72 34 13 24 13 53-1 87'/%3E%3Cpath d='M334 92c-10 33-2 58 25 75 28 18 64 21 106 11'/%3E%3Cpath d='M71 260c43-12 83-11 120 2 47 16 88 15 123-4 38-20 80-22 126-4'/%3E%3Cpath d='M36 73h448M36 301h448M98 38c-24 88-24 185 0 291M421 38c24 88 24 185 0 291' stroke-width='2' opacity='.55'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-card > * {
  position: relative;
  z-index: 1;
}
.portrait {
  width: 104px;
  height: 104px;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(20, 4, 0, 0.24);
  margin-bottom: 30px;
}
.card-kicker, .service-topline, .timeline-item span {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}
.hero-card h2 { font-size: 34px; margin-bottom: 16px; }
.hero-card p { margin: 0; color: rgba(82, 16, 0, 0.78); }
.mini-stats { margin: 24px 0 0; display: grid; gap: 12px; }
.mini-stats div {
  padding: 14px;
  border: 1px solid rgba(235, 213, 193, 0.9);
  border-radius: 16px;
  background: rgba(255, 253, 251, 0.74);
}
.mini-stats dt { font-size: 12px; text-transform: uppercase; font-weight: 900; color: rgba(82,16,0,.55); }
.mini-stats dd { margin: 2px 0 0; color: var(--color-strong); font-weight: 800; }

.intro-section { padding-top: 40px; }
.intro-grid { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 48px; align-items: start; }
.section-label {
  position: sticky;
  top: 110px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.intro-copy { max-width: 900px; }
.intro-copy p { margin: 22px 0 0; font-size: 20px; color: rgba(82, 16, 0, 0.78); }

.section-heading { margin-bottom: 34px; max-width: 820px; }
.section-heading p:not(.eyebrow) { font-size: 18px; color: rgba(82,16,0,.74); }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.cards, .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card, .service-card, .timeline-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: rgba(255, 251, 245, 0.78);
  box-shadow: var(--shadow-card);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.card:hover, .service-card:hover, .timeline-item:hover { transform: translateY(-4px); border-color: rgba(255, 72, 1, 0.42); box-shadow: var(--shadow-soft); }
.card { min-height: 280px; padding: 24px; }
.card-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin-bottom: 36px;
  background: var(--color-elevated);
  color: var(--color-accent);
  font-weight: 900;
}
.card p, .service-card p, .timeline-item p { color: rgba(82,16,0,.75); margin: 14px 0 0; }

.services { background: linear-gradient(180deg, transparent, rgba(254, 247, 237, 0.56), transparent); }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.service-card { padding: 24px; background: rgba(255, 253, 251, 0.86); }
.service-card.featured { background: linear-gradient(180deg, var(--color-strong), #3A0A00); color: #F0E3DE; border-color: rgba(255, 72, 1, 0.4); }
.service-card.featured h3, .service-card.featured p, .service-card.featured li { color: #F0E3DE; }
.service-card ul { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 10px; }
.service-card li { position: relative; padding-left: 22px; font-weight: 700; color: rgba(82,16,0,.75); }
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.experience-grid { display: grid; grid-template-columns: 0.74fr 1fr; gap: 56px; align-items: start; }
.sticky { position: sticky; top: 120px; }
.timeline { display: grid; gap: 14px; }
.timeline-item { padding: 24px; background: rgba(255, 251, 245, 0.86); }
.timeline-item h3 { font-size: 26px; }

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.logo-cloud span { padding: 12px 16px; background: rgba(255,253,251,.9); }

.process-panel {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 40px;
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius-panel);
  background: var(--color-strong);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.process-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 72, 1, 0.24);
}
.process-panel h2, .process-panel .eyebrow { color: #F0E3DE; }
.process-steps { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; position: relative; z-index: 1; }
.process-steps div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.process-steps strong { display: block; color: #fff; font-size: 22px; letter-spacing: -0.03em; }
.process-steps span { display: block; margin-top: 8px; color: rgba(240,227,222,.78); }

.contact { padding-top: 44px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius-panel);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(circle at right top, rgba(255,72,1,.18), transparent 18rem),
    rgba(255, 251, 245, 0.88);
  box-shadow: var(--shadow-soft);
}
.contact-card p { max-width: 680px; color: rgba(82,16,0,.78); font-size: 18px; }
.contact-actions { display: grid; gap: 12px; justify-items: stretch; }
.footer { padding: 28px 0 48px; color: rgba(82,16,0,.68); font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--color-border); padding-top: 22px; }
.footer p { margin: 0; }
.footer a { font-weight: 800; }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }

.training { background: linear-gradient(180deg, rgba(254, 247, 237, 0.45), transparent); }
.training-panel {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background: rgba(255, 253, 251, 0.9);
  box-shadow: var(--shadow-soft);
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.training-grid article {
  padding: 18px;
  border: 1px solid rgba(235, 213, 193, 0.9);
  border-radius: 20px;
  background: rgba(254, 247, 237, 0.75);
}
.training-grid strong { display: block; color: var(--color-strong); font-size: 19px; letter-spacing: -0.03em; }
.training-grid span { display: block; margin-top: 8px; color: rgba(82,16,0,.75); }
.tool-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  background: var(--color-strong);
  color: #F0E3DE;
}
.tool-callout h3 { color: #fff; }
.tool-callout p:not(.card-kicker) { margin: 10px 0 0; color: rgba(240,227,222,.78); }
.tool-callout .button.secondary { background: #fff; color: var(--color-strong); border-color: #fff; }
@media (max-width: 980px) { .training-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .tool-callout { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .training-grid { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
  .hero-grid, .intro-grid, .experience-grid, .process-panel, .contact-card { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-label, .sticky { position: static; }
}

@media (max-width: 720px) {
  :root { --shell: min(100vw - 28px, 1140px); }
  .section { padding: 68px 0; }
  .nav { height: 68px; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-button);
    background: var(--color-surface);
    padding: 10px 14px;
    color: var(--color-strong);
    font-weight: 900;
  }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255,253,251,.98);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  h1 { font-size: clamp(42px, 13vw, 66px); }
  h2 { font-size: clamp(32px, 9vw, 48px); }
  .cards, .service-grid, .process-steps { grid-template-columns: 1fr; }
  .hero-card { padding: 22px; }
  .trust-row span { width: 100%; }
  .footer-grid { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}