@font-face {
  font-family: "FF DIN";
  src: url("../font/ff_din-regular.woff2") format("woff2"), url("../font/ff_din-regular.woff") format("woff"), url("../font/ff_din-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FF DIN";
  src: url("../font/ff_din-regular.woff2") format("woff2"), url("../font/ff_din-regular.woff") format("woff"), url("../font/ff_din-regular.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FF DIN";
  src: url("../font/ff_din-italic.woff2") format("woff2"), url("../font/ff_din-italic.woff") format("woff"), url("../font/ff_din-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3e3e3e;
  background-color: #ffffff;
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: #1a1a1a;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 1.875rem;
  }
}
p {
  color: #636363;
}
p + p {
  margin-top: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.625;
  color: #505050;
}
@media (min-width: 1024px) {
  .lead {
    font-size: 1.5rem;
  }
}

.text-accent {
  color: #5192c8;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 0.25rem 0.25rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #5192c8;
  outline-offset: 2px;
}

.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;
}

.sr-only-focusable:focus, .sr-only-focusable:active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #1a1a1a;
  transition: all 300ms ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav-brand {
  z-index: 1001;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #1a1a1a;
}
.logo:hover {
  color: #5192c8;
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: #1a1a1a;
}

@media (max-width: 640px) {
  .logo-text {
    display: none;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 200ms ease;
}

@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #636363;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 200ms ease;
}
.nav-link:hover, .nav-link.active {
  color: #1a1a1a;
}
@media (max-width: 1023px) {
  .nav-link {
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: normal;
  }
}

.nav-link--cta {
  color: #ffffff;
  background: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 0;
}
.nav-link--cta:hover {
  background: #5192c8;
  color: #ffffff;
}

.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    padding-right: 2rem;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
}
.footer-logo:hover {
  color: #95bbe0;
}

.footer-tagline {
  font-size: 1.125rem;
  font-weight: 500;
  color: #a0a0a0;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #777777;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a0a0a0;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: #a0a0a0;
  transition: color 200ms ease;
}
.footer-links a:hover {
  color: #ffffff;
}

.footer-contact address {
  margin-bottom: 1rem;
}
.footer-contact address p {
  font-size: 0.875rem;
  color: #a0a0a0;
  margin-bottom: 0;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-links a {
  font-size: 0.875rem;
  color: #a0a0a0;
}
.footer-contact-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid #3e3e3e;
  border-bottom: 1px solid #3e3e3e;
  margin-bottom: 2rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3e3e3e;
  border-radius: 50%;
  color: #a0a0a0;
  transition: all 200ms ease;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}
.footer-social a:hover {
  background: #5192c8;
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p {
  font-size: 0.875rem;
  color: #777777;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.875rem;
  color: #777777;
}
.footer-legal a:hover {
  color: #ffffff;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 2rem 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__nav {
  order: 2;
}
@media (min-width: 768px) {
  .footer__nav {
    order: 1;
  }
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links a {
  font-size: 0.875rem;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer__links a:hover {
  color: #ffffff;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #777777;
  margin: 0;
  order: 1;
}
@media (min-width: 768px) {
  .footer__copyright {
    order: 2;
  }
}
.footer__copyright a {
  color: #a0a0a0;
  text-decoration: none;
}
.footer__copyright a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  transition: all 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-primary {
  color: #ffffff;
  background: #1a1a1a;
}
.btn-primary:hover {
  background: #5192c8;
}

.btn-secondary {
  color: #1a1a1a;
  background: #e2e2e2;
}
.btn-secondary:hover {
  background: #cccccc;
}

.btn-outline {
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #b6b6b6;
}
.btn-outline:hover {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #ffffff;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background: #e2e2e2;
  border-radius: 0;
  color: #636363;
}

.tag-outline {
  background: transparent;
  border: 1px solid #cccccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #505050;
}
.form-label .required {
  color: #c5728d;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #b6b6b6;
  border-radius: 0;
  background: #ffffff;
  transition: all 200ms ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #5192c8;
  box-shadow: 0 0 0 3px rgba(81, 146, 200, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group--checkbox {
  flex-direction: row;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.875rem;
  color: #636363;
}
.checkbox-text a {
  color: #5192c8;
  text-decoration: underline;
}

.form-actions {
  margin-top: 1rem;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
  overflow: hidden;
  transition: all 300ms ease;
}
.portfolio-card:hover {
  border-color: #1a1a1a;
}

@media (min-width: 768px) {
  .portfolio-card--featured {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  .portfolio-card--featured .portfolio-card-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
}

.portfolio-card-inner {
  padding: 2rem;
}

.portfolio-card-logo {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .portfolio-card--featured .portfolio-card-logo {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0;
}

.portfolio-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.portfolio-card-description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.portfolio-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.portfolio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5192c8;
}
.portfolio-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}
.portfolio-card-link:hover svg {
  transform: translate(4px, -4px);
}

.service-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
  transition: all 300ms ease;
}
.service-card:hover {
  border-color: #1a1a1a;
}

.service-number {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5192c8;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.875rem;
}

.value-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
  text-align: center;
  transition: all 300ms ease;
}
.value-card:hover {
  border-color: #1a1a1a;
}

.value-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e2e2;
  border-radius: 0;
  color: #5192c8;
}
.value-card-icon svg {
  width: 32px;
  height: 32px;
}

.value-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card-description {
  font-size: 0.875rem;
}

.contact-card {
  padding: 1.5rem;
  background: #e2e2e2;
  border-radius: 0;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 0;
  color: #5192c8;
  margin-bottom: 1rem;
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.contact-card-content {
  font-size: 0.875rem;
  color: #636363;
}
.contact-card-content p {
  color: inherit;
}

.contact-link {
  display: block;
  color: #5192c8;
  font-weight: 500;
}
.contact-link:hover {
  text-decoration: underline;
}

.team-card {
  background: #ffffff;
  border: 1px solid #cccccc;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.team-card:hover {
  border-color: #1a1a1a;
}

.team-card__image {
  aspect-ratio: 1;
  background: #e2e2e2;
  overflow: hidden;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.team-card__initials {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
}

.team-card__content {
  padding: 1.5rem;
}

.team-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.875rem;
  color: #5192c8;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.875rem;
  color: #636363;
  margin-bottom: 1rem;
}

.team-card__social {
  display: flex;
  gap: 0.75rem;
}

.team-card__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #636363;
  transition: color 200ms ease;
}
.team-card__social-link:hover {
  color: #1a1a1a;
}
.team-card__social-link .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  min-height: 50vh;
}
@media (min-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 6rem 2rem;
  }
}
.hero__container {
  text-align: center;
  max-width: 800px;
}
.hero__mark {
  margin-bottom: 2rem;
}
.hero__mark .logo-mark {
  width: 80px;
  height: 80px;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .hero__mark .logo-mark {
    width: 100px;
    height: 100px;
  }
}
.hero__title {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #1a1a1a;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__tagline {
  font-size: 1.125rem;
  color: #636363;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero__tagline {
    font-size: 1.25rem;
  }
}
.hero__about {
  font-size: 1rem;
  color: #777777;
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero__about {
    font-size: 1.125rem;
  }
}

.companies {
  padding: 4rem 1.5rem;
  background-color: #000000;
}
@media (min-width: 768px) {
  .companies {
    padding: 6rem 2rem;
  }
}
.companies__container {
  max-width: 1200px;
  margin: 0 auto;
}
.companies__heading {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .companies__heading {
    margin-bottom: 4rem;
  }
}
.companies__grid {
  display: grid;
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .companies__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.company-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #000000;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}
@media (min-width: 768px) {
  .company-card {
    padding: 3rem;
  }
}
.company-card:hover {
  background-color: #111111;
}
.company-card:hover .company-card__arrow {
  transform: translate(4px, -4px);
}
.company-card:hover .company-card__link {
  color: #ffffff;
}
.company-card__name {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .company-card__name {
    font-size: 1.875rem;
  }
}
.company-card__tagline {
  font-size: 1rem;
  color: #a0a0a0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .company-card__tagline {
    font-size: 1.125rem;
  }
}
.company-card__description {
  font-size: 0.875rem;
  color: #777777;
  line-height: 1.625;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .company-card__description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.company-card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #777777;
  margin-top: auto;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .company-card__link {
    font-size: 1rem;
  }
}
.company-card__arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .faq {
    padding: 6rem 2rem;
  }
}
.faq__container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq__heading {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .faq__heading {
    margin-bottom: 4rem;
  }
}
.faq__list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .faq__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.faq__item {
  padding: 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .faq__item {
    padding: 2rem;
  }
}
.faq__question {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .faq__question {
    font-size: 1.25rem;
  }
}
.faq__answer p {
  font-size: 0.875rem;
  color: #636363;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .faq__answer p {
    font-size: 1rem;
  }
}

.footer {
  padding: 2rem 1.5rem;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer__copyright {
  font-size: 0.875rem;
  color: #636363;
}
.footer__copyright a {
  color: #777777;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__copyright a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.hero-pattern {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5192c8;
  margin-bottom: 1rem;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  color: #5192c8;
}

.hero-description {
  font-size: 1.125rem;
  color: #636363;
  margin-bottom: 2rem;
  max-width: 540px;
}
@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.hero-shape {
  width: 100%;
  max-width: 400px;
  color: #5192c8;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #a0a0a0;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.hero--team {
  padding: 8rem 0 4rem;
  background: #e2e2e2;
  border-bottom: 1px solid #1a1a1a;
}
.hero--team .hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .hero--team .hero__title {
    font-size: 4.5rem;
  }
}
.hero--team .hero__subtitle {
  font-size: 1.125rem;
  color: #636363;
  max-width: 640px;
}

.section-header {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header--center {
  text-align: center;
}
.section-header--center .section-description {
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5192c8;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #777777;
}

.section-action {
  text-align: center;
  margin-top: 3rem;
}

.section__header {
  margin-bottom: 3rem;
}

.section__title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-size: 1rem;
  color: #636363;
  max-width: 640px;
}

.page-header {
  padding: 8rem 0 4rem;
  background: #e2e2e2;
}
@media (min-width: 1024px) {
  .page-header {
    padding: 8rem 0 5rem;
  }
}

.page-header--large {
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .page-header--large {
    padding-bottom: 6rem;
  }
}

.page-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5192c8;
  margin-bottom: 1rem;
}

.page-title {
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.25rem;
  color: #777777;
  max-width: 640px;
}
@media (min-width: 1024px) {
  .page-description {
    font-size: 1.5rem;
  }
}

.page-description--large {
  max-width: 800px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-text .lead {
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e2e2;
  border-radius: 0;
  color: #5192c8;
}
.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.value-content p {
  font-size: 0.875rem;
}

.about-image .image-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #e2e2e2;
  aspect-ratio: 4/3;
}
.about-image .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.mission-content p {
  margin-bottom: 1rem;
}
.mission-content p:last-child {
  margin-bottom: 0;
}

.mission-image img {
  width: 100%;
  border-radius: 0;
  background: #e2e2e2;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.section--values {
  padding: 4rem 0;
  background: #e2e2e2;
  border-top: 1px solid #cccccc;
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card__icon svg {
  width: 32px;
  height: 32px;
  fill: #5192c8;
}

.value-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card__description {
  font-size: 0.875rem;
  color: #636363;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portfolio-item {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
  overflow: hidden;
}

.portfolio-item-inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .portfolio-item-inner {
    grid-template-columns: 300px 1fr;
  }
}

.portfolio-item-media {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e2e2;
}
@media (min-width: 1024px) {
  .portfolio-item-media {
    padding: 3rem;
  }
}

.logo-large {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  border-radius: 0;
}

.portfolio-item-content {
  padding: 2rem;
}
@media (min-width: 1024px) {
  .portfolio-item-content {
    padding: 3rem;
  }
}

.portfolio-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.portfolio-item-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5192c8;
}

.portfolio-item-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: #559a6a;
  color: #ffffff;
  border-radius: 0;
}

.portfolio-item-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.portfolio-item-description {
  margin-bottom: 1.5rem;
}

.portfolio-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.filter-btn {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0;
  color: #636363;
  transition: all 200ms ease;
}
.filter-btn:hover {
  color: #1a1a1a;
  background: #e2e2e2;
}
.filter-btn.active {
  color: #ffffff;
  background: #1a1a1a;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

.services-header .section-description {
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0;
  border-bottom: 1px solid #cccccc;
}
.service-detail:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .service-detail--reverse .service-detail-visual {
    order: -1;
  }
}

.service-detail-number {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #cccccc;
  margin-bottom: 1rem;
}

.service-detail-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-detail-lead {
  font-size: 1.25rem;
  color: #505050;
  margin-bottom: 1rem;
}

.service-detail-list {
  margin-top: 1.5rem;
}
.service-detail-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #636363;
}
.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #5192c8;
  border-radius: 50%;
}

.service-visual-box {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: #e2e2e2;
  border-radius: 0;
  padding: 3rem;
}
.service-visual-box svg {
  width: 100%;
  max-width: 200px;
  color: #5192c8;
}

.section-stats {
  background: #1a1a1a;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: #a0a0a0;
}

.section-cta {
  background: #e2e2e2;
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 400px;
    gap: 4rem;
  }
}

.contact-form-header {
  margin-bottom: 2rem;
}
.contact-form-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-header p {
  color: #777777;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link-inline {
  font-weight: 500;
  color: #636363;
}
.social-link-inline:hover {
  color: #5192c8;
}

.section-map {
  padding: 0;
}

.map-placeholder {
  height: 400px;
  background: #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-content {
  text-align: center;
  color: #a0a0a0;
}
.map-placeholder-content svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}
.map-placeholder-content p {
  font-size: 1.125rem;
  color: #777777;
}
.map-placeholder-content span {
  font-size: 0.875rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #cccccc;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 1.5rem;
}
.faq-answer p {
  font-size: 1rem;
}

.section--team-grid {
  padding: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  text-align: center;
}

.team-member-image {
  margin-bottom: 1.5rem;
}
.team-member-image .image-placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e2e2;
  border-radius: 50%;
}
.team-member-image .image-placeholder svg {
  width: 80px;
  height: 80px;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-member-role {
  font-size: 0.875rem;
  color: #777777;
}

.focus-content .focus-header {
  margin-bottom: 3rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .focus-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.focus-item {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
  text-align: center;
}

.focus-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e2e2;
  border-radius: 0;
  color: #5192c8;
}
.focus-icon svg {
  width: 28px;
  height: 28px;
}

.focus-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.focus-item p {
  font-size: 0.875rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #cccccc;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: calc(-2rem - 1px);
  transform: translateX(-50%);
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #5192c8;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  border: 2px solid #cccccc;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  font-size: 0.875rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
}

.process-step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5192c8;
  color: #ffffff;
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.process-step-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step-description {
  font-size: 0.875rem;
}

.process-connector {
  display: none;
}
@media (min-width: 1024px) {
  .process-connector {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    color: #b6b6b6;
  }
  .process-connector svg {
    width: 60px;
    height: 20px;
  }
}

.section--legal {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .section--legal {
    padding-bottom: 6rem;
  }
}

.container--narrow {
  max-width: 800px;
}

.section--legal h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
@media (min-width: 1024px) {
  .section--legal h1 {
    font-size: 3rem;
  }
}

.legal-updated {
  font-size: 0.875rem;
  color: #777777;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
}

.legal-content {
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e2e2;
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
@media (min-width: 1024px) {
  .legal-content h2 {
    font-size: 1.5rem;
  }
}
.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p {
  font-size: 1rem;
  color: #505050;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.legal-content ul {
  list-style-type: disc;
}
.legal-content ol {
  list-style-type: decimal;
}
.legal-content li {
  font-size: 1rem;
  color: #505050;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  padding-left: 0.5rem;
}
.legal-content li::marker {
  color: #5192c8;
}
.legal-content a {
  color: #5192c8;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease;
}
.legal-content a:hover {
  color: #416789;
}
.legal-content address {
  font-style: normal;
  background: #e2e2e2;
  padding: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid #5192c8;
  font-size: 1rem;
  color: #505050;
  line-height: 1.8;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  background: #ffffff;
  border: 1px solid #cccccc;
}
.cookie-table thead {
  background: #e2e2e2;
}
.cookie-table thead th {
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 2px solid #cccccc;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cookie-table tbody tr {
  border-bottom: 1px solid #e2e2e2;
}
.cookie-table tbody tr:last-child {
  border-bottom: none;
}
.cookie-table tbody tr:hover {
  background: #e2e2e2;
}
.cookie-table tbody td {
  padding: 1rem;
  color: #505050;
  vertical-align: top;
}
.cookie-table tbody td:first-child {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  color: #416789;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .cookie-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.legal-nav {
  position: sticky;
  top: 100px;
}
.legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-nav li {
  margin-bottom: 0.5rem;
}
.legal-nav a {
  display: block;
  font-size: 0.875rem;
  color: #777777;
  padding: 0.5rem 1rem;
  border-left: 2px solid transparent;
  transition: all 200ms ease;
}
.legal-nav a:hover {
  color: #1a1a1a;
  border-left-color: #b6b6b6;
}
.legal-nav a.active {
  color: #1a1a1a;
  border-left-color: #5192c8;
  font-weight: 500;
}

.legal-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #cccccc;
}
.legal-links h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.legal-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #636363;
  padding: 0.5rem 1rem;
  background: #e2e2e2;
  border: 1px solid #cccccc;
  transition: all 200ms ease;
}
.legal-links a:hover {
  background: #ffffff;
  border-color: #5192c8;
  color: #5192c8;
}

.legal-notice {
  background: rgba(81, 146, 200, 0.05);
  border: 1px solid rgba(81, 146, 200, 0.2);
  border-left: 3px solid #5192c8;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.legal-notice p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #505050;
}

.legal-intro {
  font-size: 1.125rem;
  color: #636363;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
  line-height: 1.7;
}

.policy {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.policy__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .policy__container {
    padding: 0 2rem;
  }
}

.policy__header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 768px) {
  .policy__header {
    padding: 6rem 0 3rem;
  }
}

.policy__title {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .policy__title {
    font-size: 2.25rem;
  }
}

.policy__subtitle {
  font-size: 1.125rem;
  color: #636363;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .policy__subtitle {
    font-size: 1.25rem;
  }
}

.policy__updated {
  font-size: 0.875rem;
  color: #777777;
}

.policy__content {
  flex: 1;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .policy__content {
    padding: 4rem 0;
  }
}
.policy__content h2 {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e2e2;
}
.policy__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
@media (min-width: 768px) {
  .policy__content h2 {
    font-size: 1.5rem;
  }
}
.policy__content h3 {
  font-family: "FF DIN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.policy__content p {
  font-size: 1rem;
  color: #505050;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.policy__content ul,
.policy__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.policy__content ul {
  list-style-type: disc;
}
.policy__content ol {
  list-style-type: decimal;
}
.policy__content li {
  font-size: 1rem;
  color: #505050;
  line-height: 1.625;
  margin-bottom: 0.5rem;
}
.policy__content a {
  color: #1a1a1a;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.policy__content a:hover {
  color: #3e3e3e;
}
.policy__content strong {
  font-weight: 600;
  color: #3e3e3e;
}

.policy__nav {
  padding: 2rem 0 4rem;
  border-top: 1px solid #cccccc;
}
@media (min-width: 768px) {
  .policy__nav {
    padding: 3rem 0 6rem;
  }
}

.policy__back {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #636363;
  text-decoration: none;
  transition: color 0.2s ease;
}
.policy__back:hover {
  color: #1a1a1a;
}

.link {
  color: #5192c8;
  text-decoration: underline;
}
.link:hover {
  color: #416789;
}

.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;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-lg {
  max-width: 640px;
}

.max-w-xl {
  max-width: 800px;
}