:root {
  --font-family: "Orbitron", sans-serif;
  --font-size-base: 18px;
  --line-height-base: 1.64;

  --max-w: 1560px;
  --space-x: 1.96rem;
  --space-y: 1.5rem;
  --gap: 1.69rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 1.18rem;
  --radius-lg: 0.79rem;
  --radius-md: 0.45rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.14);
  --shadow-lg: 0 24px 42px rgba(0,0,0,0.18);

  --overlay: rgba(10, 20, 40, 0.6);
  --anim-duration: 290ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #1e6df2;
  --brand-contrast: #ffffff;
  --accent: #e8f0fe;
  --accent-contrast: #0a2a5e;

  --neutral-0: #ffffff;
  --neutral-100: #f4f6f9;
  --neutral-300: #c8ced6;
  --neutral-600: #6b7a8f;
  --neutral-800: #2c3e50;
  --neutral-900: #0f1a2e;

  --page-bg: #ffffff;
  --page-fg: #0f1a2e;
  --muted-bg: #f4f6f9;
  --muted-fg: #0f1a2e;
  --card-bg: #ffffff;
  --card-fg: #0f1a2e;
  --card-border: #dce1e8;
  --inverse-bg: #0a2a5e;
  --inverse-fg: #ffffff;
  --primary-bg: #1e6df2;
  --primary-fg: #ffffff;
  --primary-hover: #1554c4;
  --accent-bg: #e8f0fe;
  --accent-fg: #0a2a5e;
  --accent-hover: #d0e2fc;
  --gradient-hero-bg: linear-gradient(135deg, #0a2a5e 0%, #1e6df2 100%);
  --gradient-hero-fg: #ffffff;
  --gradient-accent-bg: linear-gradient(135deg, #1e6df2 0%, #0a2a5e 100%);
  --gradient-accent-fg: #ffffff;

  --ring: #1e6df2;

  --link: #1e6df2;
  --link-hover: #e8f0fe;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
  width: 100%;
  background: var(--page-bg);
  border-bottom: 1px solid var(--muted-bg);
  padding: 0 var(--space-x);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) 0;
  gap: var(--gap);
}

.logo {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--muted-fg);
  text-decoration: none;
  font-size: var(--font-size-md);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--link-hover);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: var(--primary-bg);
  color: var(--primary-fg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--primary-hover);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 2rem;
  height: 2rem;
}

.burger-line {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--page-fg);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--page-bg);
    border-bottom: 1px solid var(--muted-bg);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

footer {
  background: var(--inverse-bg, #0f172a);
  color: var(--inverse-fg, #e2e8f0);
  padding: var(--space-section-y, 3rem) var(--space-section-x, 2rem);
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.6);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap, 2rem);
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-block, 1.5rem);
}

.footer-logo {
  font-size: var(--font-size-h2, 1.75rem);
  font-weight: 700;
  color: var(--accent-fg, #38bdf8);
  letter-spacing: 0.02em;
}

.footer-offer {
  color: var(--muted-fg, #94a3b8);
  margin: 0;
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.6);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-y, 0.75rem);
}

.footer-menu a {
  color: var(--link, #94a3b8);
  text-decoration: none;
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  font-size: var(--font-size-sm, 0.875rem);
}

.footer-menu a:hover {
  color: var(--link-hover, #38bdf8);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: var(--space-y, 0.5rem);
  margin-top: var(--space-block, 1rem);
}

.footer-legal a {
  color: var(--muted-fg, #64748b);
  text-decoration: none;
  font-size: var(--font-size-sm, 0.8rem);
  transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
}

.footer-legal a:hover {
  color: var(--accent-fg, #38bdf8);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-y, 0.75rem);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-weight: 600;
  color: var(--accent-fg, #38bdf8);
  font-size: var(--font-size-sm, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item span:last-child,
.contact-item a {
  color: var(--inverse-fg, #e2e8f0);
  text-decoration: none;
  font-size: var(--font-size-sm, 0.875rem);
}

.contact-item a:hover {
  color: var(--accent-fg, #38bdf8);
  text-decoration: underline;
}

.footer-disclaimer {
  color: var(--muted-fg, #64748b);
  font-size: var(--font-size-sm, 0.75rem);
  line-height: var(--line-height-base, 1.5);
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-y, 1rem);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-y, 1.5rem);
  margin-top: var(--space-block, 2rem);
  max-width: var(--max-w, 1200px);
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-fg, #64748b);
  font-size: var(--font-size-sm, 0.8rem);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--gap, 2rem);
  }
}

.cookie-notice {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 760px;
  background: var(--card-bg, #ffffff);
  color: var(--card-fg, #1a1a1a);
  padding: var(--space-card, 1.25rem);
  border-radius: var(--radius-lg, 12px);
  box-shadow: var(--shadow-lg, 0 4px 24px rgba(0,0,0,0.12));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap, 1rem);
  z-index: 1000;
  font-family: var(--font-family, system-ui, sans-serif);
  font-size: var(--font-size-sm, 0.875rem);
  line-height: var(--line-height-base, 1.5);
  box-sizing: border-box;
}

.cookie-notice__copy {
  flex: 1 1 280px;
  min-width: 200px;
}

.cookie-notice__title {
  margin: 0 0 0.25rem;
  font-size: var(--font-size-md, 1rem);
  font-weight: 600;
  line-height: 1.3;
}

.cookie-notice__text {
  margin: 0;
  opacity: 0.85;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-notice__choice {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-sm, 6px);
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.cookie-notice__choice--accept {
  background: var(--primary-bg, #0055ff);
  color: var(--primary-fg, #ffffff);
}

.cookie-notice__choice--accept:hover {
  background: var(--primary-hover, #0044cc);
}

.cookie-notice__choice--reject {
  background: var(--muted-bg, #e5e7eb);
  color: var(--muted-fg, #374151);
}

.cookie-notice__choice--reject:hover {
  opacity: 0.8;
}

.cookie-notice__choice--manage {
  background: transparent;
  color: var(--link, #0055ff);
  text-decoration: underline;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.cookie-notice__choice--manage:hover {
  color: var(--link-hover, #003399);
}

@media (max-width: 640px) {
  .cookie-notice {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    transform: none;
    max-width: none;
    width: auto;
  }

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

.intro-focus {
      background: linear-gradient(135deg, #0a2a5e 0%, #1e6df2 100%);
      color: #ffffff;
      padding: 3rem 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
    }
    .intro-focus .inner {
      max-width: 720px;
      width: 100%;
      text-align: left;
    }
    .intro-focus h1 {
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      color: inherit;
    }
    .intro-focus .lead {
      font-size: 1.15rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
      color: inherit;
      opacity: 0.92;
    }
    .intro-focus .support {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0 0 1.5rem 0;
      color: inherit;
      opacity: 0.75;
    }
    .intro-focus .action {
      display: inline-block;
      background: #ffffff;
      color: #0a2a5e;
      font-size: 1rem;
      font-weight: 600;
      padding: 0.7rem 1.8rem;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .intro-focus .action:hover {
      background: #e8f0fe;
      color: #0a2a5e;
    }
    @media (max-width: 600px) {
      .intro-focus {
        padding: 2rem 1rem;
        min-height: auto;
      }
      .intro-focus h1 {
        font-size: 1.8rem;
      }
      .intro-focus .lead {
        font-size: 1rem;
      }
      .intro-focus .support {
        font-size: 0.9rem;
      }
    }

.project-list {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .project-list .inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .project-list h2 {
      font-size: 2rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.02em;
    }

    .project-list .section-desc {
      font-size: 1.1rem;
      margin: 0 0 3rem 0;
      opacity: 0.8;
      max-width: 600px;
    }

    .project-list .items {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .project-list .item {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }

    .project-list .item img {
      width: 240px;
      height: 160px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
      background: var(--muted-bg);
    }

    .project-list .item-body h3 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 0 0 0.75rem 0;
    }

    .project-list .item-body p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
      opacity: 0.85;
    }

    .project-list .item-link {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: background 0.2s;
    }

    .project-list .item-link:hover {
      background: var(--primary-hover);
    }

    @media (max-width: 700px) {
      .project-list .item {
        flex-direction: column;
      }

      .project-list .item img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
      }

      .project-list h2 {
        font-size: 1.6rem;
      }
    }

.social-proof {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .social-proof .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .social-proof h2 {
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin: 0 0 2rem 0;
      line-height: 1.3;
    }
    .social-proof .quotes {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .social-proof blockquote {
      margin: 0;
      padding: 0;
      border-left: 3px solid var(--accent-bg);
      padding-left: 1.25rem;
    }
    .social-proof blockquote p {
      margin: 0 0 0.5rem 0;
      font-size: 1rem;
      line-height: 1.55;
      color: var(--inverse-fg);
    }
    .social-proof blockquote footer {
      font-size: 0.875rem;
      opacity: 0.75;
      color: var(--inverse-fg);
    }

.social-proof .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.social-proof .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.why-choose {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }
    .why-choose .inner {
      max-width: 740px;
      margin: 0 auto;
    }
    .why-choose h2 {
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin: 0 0 1.2rem 0;
      line-height: 1.3;
    }
    .why-choose p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1.2rem 0;
      color: var(--page-fg);
    }
    .why-choose p:last-of-type {
      margin-bottom: 0;
    }
    .why-choose .note {
      margin-top: 1.8rem;
      padding: 1rem 1.2rem;
      background: var(--muted-bg);
      border-radius: 6px;
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--muted-fg);
    }
    .why-choose .note strong {
      font-weight: 600;
      color: var(--page-fg);
    }
    @media (min-width: 640px) {
      .why-choose {
        padding: 5rem 2rem;
      }
      .why-choose h2 {
        font-size: 1.85rem;
      }
      .why-choose p {
        font-size: 1rem;
      }
    }

.faq {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 60px 20px;
    }
    .faq .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 8px 0;
      letter-spacing: -0.01em;
    }
    .faq .subtitle {
      font-size: 1rem;
      margin: 0 0 40px 0;
      opacity: 0.85;
      line-height: 1.5;
    }
    .faq .item {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding: 24px 0;
    }
    .faq .item:last-child {
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .faq .item h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin: 0 0 10px 0;
      line-height: 1.4;
    }
    .faq .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.9;
    }
    @media (min-width: 600px) {
      .faq {
        padding: 80px 40px;
      }
      .faq h2 {
        font-size: 2rem;
      }
      .faq .item h3 {
        font-size: 1.1rem;
      }
    }

.gallery {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }
    .gallery .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .gallery h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .gallery .description {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      opacity: 0.85;
      max-width: 640px;
    }
    .gallery .items {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    .gallery .item {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .gallery .media {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .gallery .item h3 {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0;
      line-height: 1.4;
    }
    .gallery .item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.8;
    }
    @media (min-width: 700px) {
      .gallery .items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
      .gallery .media {
        height: 220px;
      }
    }

.visual-highlights {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .visual-highlights .inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .visual-highlights h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      line-height: 1.3;
    }
    .visual-highlights > .inner > p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem 0;
      color: var(--page-fg);
      opacity: 0.8;
    }
    .visual-highlights .items {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .visual-highlights .item {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .visual-highlights .item img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 6px;
      object-fit: cover;
      max-height: 280px;
      background: var(--muted-bg);
    }
    .visual-highlights .item-text h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.25rem 0;
      line-height: 1.4;
    }
    .visual-highlights .item-text p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color: var(--page-fg);
      opacity: 0.85;
    }
    @media (min-width: 640px) {
      .visual-highlights .item {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
      }
      .visual-highlights .item img {
        width: 240px;
        min-width: 240px;
        max-height: 180px;
      }
      .visual-highlights .item-text {
        flex: 1;
      }
    }
    @media (min-width: 900px) {
      .visual-highlights .item img {
        width: 280px;
        min-width: 280px;
        max-height: 200px;
      }
    }

.project-item {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .project-item .inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .project-item .media {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
    }
    .project-item .media img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .project-item .body {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .project-item h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0;
      line-height: 1.2;
    }
    .project-item .subtitle {
      font-size: 1.1rem;
      opacity: 0.85;
      margin: 0;
      line-height: 1.4;
    }
    .project-item .summary {
      font-size: 1rem;
      opacity: 0.7;
      margin: 0;
      line-height: 1.5;
    }
    .project-item .description,
    .project-item .results {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 1.25rem;
    }
    .project-item h3 {
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 0.5rem 0;
      opacity: 0.9;
    }
    .project-item p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
      opacity: 0.85;
    }
    @media (min-width: 768px) {
      .project-item {
        padding: 4rem 2rem;
      }
      .project-item .inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
      }
      .project-item .media {
        flex: 0 0 45%;
        max-width: 45%;
      }
      .project-item .body {
        flex: 1;
      }
      .project-item h2 {
        font-size: 2rem;
      }
    }

.feedback {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3rem 1.5rem;
    }
    .feedback .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .feedback h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .feedback .lead {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }
    .feedback .entries {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .feedback .entry {
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.25rem;
    }
    .feedback .entry-text {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 0.5rem;
    }
    .feedback .entry-author {
      font-size: 0.85rem;
      color: var(--muted-fg);
      margin: 0;
    }

.project-item {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 4rem 1.5rem;
    }
    .project-item .inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .project-item h2 {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0 0 0.5rem;
      line-height: 1.2;
    }
    .project-item .sub {
      font-size: 1rem;
      opacity: 0.75;
      margin: 0 0 2rem;
      line-height: 1.5;
    }
    .project-item .media {
      margin-bottom: 2.5rem;
      border-radius: 8px;
      overflow: hidden;
      background: #0f1a2e;
    }
    .project-item .media img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .project-item .body {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .project-item .col {
      flex: 1 1 280px;
      min-width: 0;
    }
    .project-item h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.75rem;
      line-height: 1.3;
    }
    .project-item p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.5rem;
      opacity: 0.88;
    }
    .project-item .col p:last-child {
      margin-bottom: 0;
    }
    @media (min-width: 768px) {
      .project-item {
        padding: 5rem 2rem;
      }
      .project-item h2 {
        font-size: 2rem;
      }
    }

.project-item {
      background: var(--inverse-bg, #0a2a5e);
      color: var(--inverse-fg, #ffffff);
      padding: 3rem 1.5rem;
    }
    .project-item .inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .project-item h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.25rem 0;
      line-height: 1.2;
    }
    .project-item .subtitle {
      font-size: 1rem;
      margin: 0 0 1.5rem 0;
      opacity: 0.8;
    }
    .project-item .summary {
      font-size: 1.1rem;
      line-height: 1.5;
      margin: 0 0 2rem 0;
      border-left: 3px solid var(--primary-bg, #1e6df2);
      padding-left: 1rem;
    }
    .project-item .description-block,
    .project-item .results-block {
      margin-bottom: 2rem;
    }
    .project-item h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .project-item p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
    }
    @media (min-width: 640px) {
      .project-item {
        padding: 4rem 2rem;
      }
      .project-item h2 {
        font-size: 2rem;
      }
      .project-item .subtitle {
        font-size: 1.1rem;
      }
    }

.people-behind {
      background: var(--inverse-bg, #0a2a5e);
      color: var(--inverse-fg, #ffffff);
      padding: 4rem 1.5rem;
    }

    .people-behind .inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .people-behind h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.02em;
    }

    .people-behind .subtitle {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 0 2.5rem 0;
      opacity: 0.8;
    }

    .people-behind .team-list {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .people-behind .member {
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 1.5rem;
    }

    .people-behind .member:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .people-behind .role {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: var(--accent-bg, #e8f0fe);
      color: var(--accent-fg, #0a2a5e);
      padding: 0.2rem 0.6rem;
      border-radius: 3px;
      margin-bottom: 0.4rem;
    }

    .people-behind h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.3rem 0;
    }

    .people-behind .member p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      opacity: 0.85;
    }

    @media (min-width: 640px) {
      .people-behind {
        padding: 5rem 2rem;
      }

      .people-behind h2 {
        font-size: 2rem;
      }

      .people-behind .team-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
      }

      .people-behind .member {
        border-bottom: none;
        padding-bottom: 0;
      }
    }

.identity {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 5rem 1.5rem;
    }
    .identity .inner {
      max-width: 48rem;
      margin: 0 auto;
    }
    .identity h1 {
      
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      margin: 0 0 1.5rem;
      line-height: 1.2;
      color: var(--page-fg);
    }
    .identity .lead {
      font-size: 1.15rem;
      line-height: 1.6;
      margin: 0 0 1rem;
      color: var(--page-fg);
    }
    .identity .description {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 2rem;
      color: var(--page-fg);
    }
    .identity .topics {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .identity .topics li {
      position: relative;
      padding: 0.5rem 0 0.5rem 1.5rem;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--page-fg);
    }
    .identity .topics li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.85rem;
      width: 0.6rem;
      height: 0.6rem;
      background: var(--primary-bg, #1e6df2);
      border-radius: 1px;
    }
    .identity .topics li + li {
      border-top: 1px solid var(--muted-bg, #f4f6f9);
    }
    @media (max-width: 640px) {
      .identity {
        padding: 3rem 1.25rem;
      }
      .identity h1 {
        font-size: 1.6rem;
      }
      .identity .lead {
        font-size: 1rem;
      }
    }

.identity .visual {
  margin: var(--space-card) 0 0;
  max-width: min(42rem, 100%);
}
.identity .visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.support {
      background: #ffffff;
      color: #0f1a2e;
      padding: 60px 24px;
    }
    .support .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .support h2 {
      font-size: 28px;
      font-weight: 500;
      line-height: 1.2;
      margin: 0 0 20px 0;
      letter-spacing: -0.01em;
    }
    .support p {
      font-size: 16px;
      line-height: 1.6;
      margin: 0 0 28px 0;
      color: #0f1a2e;
      max-width: 640px;
    }
    .support .faq-link {
      display: inline-block;
      background: #1e6df2;
      color: #ffffff;
      padding: 10px 28px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s ease;
    }
    .support .faq-link:hover {
      background: #1554c4;
    }
    @media (max-width: 600px) {
      .support {
        padding: 40px 20px;
      }
      .support h2 {
        font-size: 24px;
      }
      .support p {
        font-size: 15px;
      }
    }

.contacts {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .contacts .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.6rem;
      font-weight: 500;
      margin: 0 0 0.75rem;
      letter-spacing: -0.01em;
    }
    .contacts .desc {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 2rem;
      opacity: 0.85;
    }
    .contacts .body {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      padding: 1.5rem 0;
      border-top: 1px solid rgba(255,255,255,0.15);
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .contacts .entry {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem 1rem;
    }
    .contacts .label {
      min-width: 6.5rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.6;
    }
    .contacts address,
    .contacts a,
    .contacts p {
      font-style: normal;
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
    }
    .contacts a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: rgba(255,255,255,0.35);
      transition: text-decoration-color 0.2s;
    }
    .contacts a:hover {
      text-decoration-color: currentColor;
    }
    .contacts .footnote {
      margin: 1.5rem 0 0;
      font-size: 0.85rem;
      opacity: 0.65;
      line-height: 1.5;
    }
    @media (min-width: 640px) {
      .contacts {
        padding: 4rem 2rem;
      }
      .contacts h2 {
        font-size: 1.8rem;
      }
      .contacts .body {
        gap: 1.5rem;
      }
    }

.form {
      background: #ffffff;
      color: #0f1a2e;
      padding: 3rem 1.5rem;
    }
    .form .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .form h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 1rem 0;
      line-height: 1.2;
    }
    .form p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
      color: #0f1a2e;
    }
    .form p:last-of-type {
      margin-bottom: 2rem;
    }
    .form form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .form .field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .form label {
      font-size: 0.9rem;
      font-weight: 500;
      color: #0f1a2e;
    }
    .form input,
    .form textarea {
      font-size: 1rem;
      padding: 0.65rem 0.75rem;
      border: 1px solid #dce1e8;
      border-radius: 4px;
      background: #ffffff;
      color: #0f1a2e;
      
      transition: border-color 0.15s;
    }
    .form input:focus,
    .form textarea:focus {
      outline: none;
      border-color: #1e6df2;
    }
    .form textarea {
      resize: vertical;
      min-height: 100px;
    }
    .form button {
      background: #1e6df2;
      color: #ffffff;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.15s;
      align-self: flex-start;
    }
    .form button:hover {
      background: #1554c4;
    }
    @media (max-width: 480px) {
      .form {
        padding: 2rem 1rem;
      }
      .form h2 {
        font-size: 1.4rem;
      }
    }

.policy-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 2.5rem 1.25rem;
    }
    .policy-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .policy-items h2 {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.3;
      margin: 0 0 1rem 0;
    }
    .policy-items p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0 0 1rem 0;
    }
    .policy-items .note {
      font-size: 0.85rem;
      color: var(--muted-fg);
      border-top: 1px solid var(--muted-bg);
      padding-top: 1rem;
      margin-top: 1.5rem;
    }

.terms-items {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .terms-items .inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .terms-items h2 {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 1.2rem 0;
      letter-spacing: -0.01em;
    }
    .terms-items p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 1.2rem 0;
    }
    .terms-items .item {
      margin-top: 2rem;
    }
    .terms-items .item h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem 0;
    }
    .terms-items .item p {
      margin-bottom: 0.5rem;
    }
    .terms-items a {
      color: var(--accent-bg);
      text-decoration: underline;
    }
    .terms-items a:hover {
      color: var(--accent-hover);
    }
    @media (min-width: 640px) {
      .terms-items {
        padding: 4rem 2rem;
      }
      .terms-items h2 {
        font-size: 1.8rem;
      }
      .terms-items p {
        font-size: 1rem;
      }
    }

.thank {
      background: var(--inverse-bg);
      color: var(--inverse-fg);
      padding: 3rem 1.5rem;
    }
    .thank .inner {
      max-width: 640px;
      margin: 0 auto;
    }
    .thank .note {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .thank .badge {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary-fg);
      font-size: 0.8rem;
      padding: 0.25rem 0.75rem;
      border-radius: 4px;
      width: fit-content;
      margin: 0;
    }
    .thank .title {
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0;
      line-height: 1.2;
    }
    .thank .subtitle {
      font-size: 0.95rem;
      line-height: 1.5;
      margin: 0;
      opacity: 0.85;
    }
    .thank .next {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .thank .next-step-title {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      opacity: 0.7;
    }
    .thank .next-step-text {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 0;
      opacity: 0.85;
    }
    .thank .next-step-text a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .thank .next-step-text a:hover {
      opacity: 0.8;
    }

.404 {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 80px 24px;
    text-align: center;
}
.404 .inner {
    max-width: 640px;
    margin: 0 auto;
}
.404 h1 {
    font-size: 72px;
    line-height: 1;
    margin: 0 0 8px;
    color: var(--brand-primary-bg, #1e6df2);
    font-weight: 700;
}
.404 h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px;
    color: var(--page-fg);
}
.404 p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: var(--muted-fg, #4a5568);
}
.404 .note {
    font-size: 14px;
    background: var(--muted-bg, #f4f6f9);
    padding: 12px 16px;
    border-radius: 6px;
    margin: 24px 0;
    color: var(--muted-fg, #4a5568);
}
.404 .actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.404 .actions a {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}
.404 .actions .primary {
    background: var(--brand-primary-bg, #1e6df2);
    color: var(--brand-primary-fg, #ffffff);
}
.404 .actions .primary:hover {
    background: var(--brand-primary-hover, #1554c4);
}
.404 .actions .secondary {
    background: var(--accent-bg, #e8f0fe);
    color: var(--accent-fg, #0a2a5e);
}
.404 .actions .secondary:hover {
    background: var(--accent-hover, #d0e2fc);
}