:root {
  --navy: #0a0a0a;
  --navy-2: #222222;
  --yellow: #ffd500;
  --yellow-soft: #ffe45c;
  --cream: #f3f3ef;
  --white: #ffffff;
  --ink: #171717;
  --muted: #666666;
  --line: rgba(10, 10, 10, 0.14);
  --shadow: 0 30px 80px rgba(10, 10, 10, 0.14);
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(6, 27, 49, 0.06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: flex;
  flex-direction: column;
  width: max-content;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  line-height: 0.7;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: skew(-4deg);
}

.brand-first {
  font-size: 17px;
  margin-left: 3px;
}

.brand-last {
  color: #e9c300;
  font-size: 31px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 20px;
  color: white;
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 213, 0, 0.15), transparent 25%),
    linear-gradient(120deg, #fff 0%, #fff 58%, var(--cream) 58%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -260px;
  right: -200px;
  border: 1px solid rgba(6, 27, 49, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(6, 27, 49, 0.025), 0 0 0 180px rgba(6, 27, 49, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 4px;
  margin: 0 12px 3px 0;
  background: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 span,
h2 span {
  color: #e9c300;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: #45556a;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--navy);
}

.button-primary:hover {
  box-shadow: 4px 4px 0 var(--navy);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: #c9a900;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin: 54px 0 0;
  padding: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.65 / 1;
  background: transparent;
  transform: translateY(18px) rotate(-1.5deg) scale(1.025);
  transform-origin: center bottom;
  -webkit-mask-image: radial-gradient(
    ellipse 78% 76% at 50% 45%,
    #000 34%,
    rgba(0, 0, 0, 0.82) 56%,
    rgba(0, 0, 0, 0.25) 76%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 78% 76% at 50% 45%,
    #000 34%,
    rgba(0, 0, 0, 0.82) 56%,
    rgba(0, 0, 0, 0.25) 76%,
    transparent 100%
  );
}

.visual-frame::after {
  display: none;
}

.visual-frame img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  mix-blend-mode: multiply;
}

.hero-line {
  position: absolute;
  left: -5%;
  bottom: 38px;
  width: 110%;
  height: 10px;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  grid-column: span 2;
  position: relative;
  min-height: 380px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:hover {
  z-index: 2;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(6, 27, 49, 0.1);
  transform: translateY(-6px);
}

.service-card-accent {
  background: var(--yellow);
}

.service-card-accent:hover {
  background: var(--yellow-soft);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(10, 10, 10, 0.3);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 45px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--navy);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.service-card-accent .service-icon {
  color: var(--navy);
  background: white;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.service-card-accent p {
  color: rgba(10, 10, 10, 0.72);
}

.service-card a {
  width: max-content;
  margin-top: auto;
  border-bottom: 2px solid var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.service-card-accent a {
  border-color: var(--navy);
}

.service-card a span {
  margin-left: 10px;
}

.process {
  position: relative;
  color: white;
  background: var(--navy);
  overflow: hidden;
}

.process::before {
  content: "EINFACHER";
  position: absolute;
  left: -20px;
  bottom: -78px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: 240px;
  font-weight: 900;
  line-height: 1;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.eyebrow-light,
.process h2,
.process h3 {
  color: white;
}

.process-intro > p:not(.eyebrow) {
  max-width: 460px;
  margin: 28px 0 34px;
  color: #b8c5d2;
}

.button-light {
  color: var(--navy);
  background: white;
  box-shadow: 7px 7px 0 var(--yellow);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list > li > span {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 35px;
}

.process-list p {
  max-width: 430px;
  margin-bottom: 0;
  color: #b8c5d2;
  font-size: 15px;
}

.about {
  background: var(--cream);
}

.toolbox-section {
  background: white;
}

.toolbox-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.toolbox-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 17px;
}

.toolbox-panel {
  padding: 36px;
  color: white;
  background: var(--navy);
  box-shadow: 14px 14px 0 var(--yellow);
}

.toolbox-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .1em;
}

.toolbox-status {
  color: var(--yellow);
  font-size: 12px;
}

.toolbox-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toolbox-panel li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.toolbox-panel li span {
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
}

.toolbox-panel p {
  margin: 24px 0 0;
  color: #bdbdbd;
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: 50%;
  top: 50%;
  background: var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -47%);
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 680px;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 28px rgba(10, 10, 10, 0.18));
}

.about-copy h2 {
  margin-bottom: 32px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.about-copy .about-lead {
  color: var(--ink) !important;
  font-size: 19px;
  font-weight: 600;
}

blockquote {
  margin: 42px 0 0;
  padding: 18px 0 18px 26px;
  border-left: 6px solid var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

blockquote small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-secondary {
  margin-top: 30px;
  padding: 20px 22px;
  background: white;
  border-left: 5px solid var(--yellow);
}

.about-secondary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 30px 54px 30px 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 25px;
  color: #c9a900;
  font-size: 34px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 54px 30px 0;
  color: var(--muted);
}

.contact {
  padding: 100px 0;
  background: white;
}

.contact-card {
  position: relative;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  color: white;
  background: var(--navy);
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  border: 42px solid var(--yellow);
  border-radius: 50%;
  opacity: 0.12;
}

.contact-card .eyebrow,
.contact-card h2 {
  color: white;
}

.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-actions p {
  margin-bottom: 30px;
  color: #bdc9d5;
}

.contact-actions .button {
  width: 100%;
}

.site-footer {
  padding: 52px 0;
  color: #aab8c6;
  background: #000000;
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  padding: 24px 0;
  background: white;
  border-bottom: 1px solid var(--line);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-content {
  max-width: 800px;
  padding-top: 90px;
  padding-bottom: 110px;
}

.legal-content h1 {
  margin-bottom: 60px;
  font-size: clamp(38px, 7vw, 64px);
}

.legal-content h2 {
  margin: 45px 0 14px;
  color: var(--navy);
  font-size: 30px;
  letter-spacing: 0;
}

.legal-content p {
  color: #4c4c4c;
}

.legal-content ul {
  margin: 18px 0 26px;
  padding-left: 24px;
  color: #4c4c4c;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  border-bottom: 2px solid var(--yellow);
}

.legal-note {
  margin-top: 55px;
  padding: 22px;
  background: #fff4b8;
  border: 1px solid #e2c900;
}

.toolbox-preview-note {
  width: min(1100px, calc(100% - 48px));
  margin: 40px auto 0;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 70px;
  align-items: end;
}

.brand-footer .brand-first {
  color: white;
}

.footer-contact,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-contact a,
.footer-meta a {
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-meta a:hover {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 135px 0 120px;
    background: linear-gradient(135deg, #fff 0%, #fff 64%, var(--cream) 64%);
  }

  .hero-grid,
  .process-grid,
  .about-grid {
    gap: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(760px, 94%);
  }

  .section-heading {
    gap: 40px;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card:nth-child(5) {
    grid-column: span 6;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-card {
    padding: 55px;
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 600px);
  }

  .site-header {
    height: 76px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    background: var(--navy);
    border: 0;
  }

  .nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--yellow);
    transition: transform 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 120px 32px 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: white;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .main-nav .nav-cta {
    margin-top: 26px;
    padding: 18px 22px;
    color: var(--navy);
    background: var(--yellow);
    border: 0;
    text-align: center;
  }

  .hero {
    padding: 122px 0 90px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .hero-actions .button {
    width: calc(100% - 8px);
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 42px;
  }

  .visual-frame {
    aspect-ratio: 1.55 / 1;
    transform: translateY(10px) rotate(-1.5deg) scale(1.02);
  }

  .section {
    padding: 84px 0;
  }

  .section-heading,
  .process-grid,
  .about-grid,
  .toolbox-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 30px;
    margin-bottom: 46px;
  }

  h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .service-grid {
    display: block;
    border-top: 1px solid var(--line);
  }

  .service-card {
    min-height: 330px;
    border-left: 1px solid var(--line);
  }

  .process-grid {
    gap: 60px;
  }

  .process::before {
    font-size: 140px;
  }

  .about-grid {
    gap: 70px;
  }

  .faq-grid {
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .about-visual {
    width: calc(100% - 12px);
    min-height: 540px;
  }

  .about-visual::before {
    width: min(88vw, 390px);
    height: min(88vw, 390px);
  }

  .about-visual img {
    height: 540px;
  }

  .contact {
    padding: 16px 0 72px;
    background: var(--navy);
  }

  .contact .container {
    width: calc(100% - 32px);
  }

  .contact-card {
    padding: 68px 12px 28px;
    gap: 38px;
  }

  .contact-actions .button {
    padding-inline: 16px;
    gap: 12px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
