@charset "UTF-8";
/* CSS Document */
:root {
  --bg: #05070b;
  --bg-2: #0a0d14;
  --bg-3: #10141e;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f6f8fc;
  --muted: #bbc3d3;
  --muted-2: #8f99ab;
  --blue: #7dd3fc;
  --violet: #a78bfa;
  --pink: #f472b6;
  --orange: #fb923c;
  --green: #34d399;
  --shadow-xl: 0 35px 100px rgba(0, 0, 0, 0.52);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(125, 211, 252, 0.10), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(167, 139, 250, 0.10), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(244, 114, 182, 0.08), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg-3) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

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

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
  color: var(--blue);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

.glass-card,
.glass-panel,
.legal-details,
.contact-form,
.contact-info-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 13, 0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 108px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.38));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.nav-link-en,
.footer-link-en,
.footer-copy-en {
  display: none;
}

.lang-switch {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.36rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-md);
}

.lang-btn {
  border: none;
  cursor: pointer;
  min-width: 54px;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  color: #040506;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7.8rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(125, 211, 252, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(167, 139, 250, 0.10), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(244, 114, 182, 0.06), transparent 16%);
  pointer-events: none;
}

.hero-prism {
  position: absolute;
  right: -160px;
  top: 70px;
  width: 480px;
  height: 480px;
  background:
    conic-gradient(from 180deg,
      rgba(125, 211, 252, 0.10),
      rgba(167, 139, 250, 0.12),
      rgba(244, 114, 182, 0.10),
      rgba(251, 146, 60, 0.08),
      rgba(52, 211, 153, 0.08),
      rgba(125, 211, 252, 0.10));
  filter: blur(70px);
  opacity: 0.9;
  pointer-events: none;
  animation: prismFloat 10s ease-in-out infinite;
}

@keyframes prismFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-20px, 16px, 0) rotate(8deg);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  min-height: 240px;
}

.hero-logo {
  position: relative;
  width: min(100%, 920px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.42));
  animation: logoReveal 1.7s ease forwards;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.logo-glass-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.12), rgba(255,255,255,0.02) 55%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.logo-light-beam {
  position: absolute;
  left: 8%;
  top: 50%;
  transform-origin: left center;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0;
  animation: beamIn 2.1s ease forwards;
}

.beam-1 {
  width: 360px;
  height: 18px;
  transform: translateY(-24px) rotate(-10deg);
  background: linear-gradient(90deg,
    rgba(255,255,255,0.0),
    rgba(125, 211, 252, 0.9),
    rgba(167, 139, 250, 0.72),
    rgba(244, 114, 182, 0.0)
  );
}

.beam-2 {
  width: 420px;
  height: 14px;
  transform: translateY(16px) rotate(8deg);
  background: linear-gradient(90deg,
    rgba(255,255,255,0.0),
    rgba(251, 146, 60, 0.0),
    rgba(244, 114, 182, 0.76),
    rgba(52, 211, 153, 0.8),
    rgba(255,255,255,0.0)
  );
  animation-delay: 0.24s;
}

@keyframes beamIn {
  0% {
    opacity: 0;
    transform: translateX(-26px) scaleX(0.75);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.72;
    transform: translateX(0) scaleX(1);
  }
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.35rem, 5.2vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-text {
  margin: 1.35rem 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #040506;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  box-shadow: 0 12px 34px rgba(167, 139, 250, 0.22);
  border: none;
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.panel-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.06);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 1.7rem;
  line-height: 1.1;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

.panel-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.panel-point {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
}

.section {
  padding: 5.3rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.018);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  margin-bottom: 2rem;
}

.section-kicker {
  margin: 0 0 0.55rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-head p {
  margin: 0.9rem 0 0;
  max-width: 760px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
}

.service-number {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.16rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.profile-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.profile-text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.profile-panel,
.contact-info-panel,
.contact-form {
  padding: 1.35rem;
  border-radius: var(--radius-xl);
}

.profile-item + .profile-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.profile-label,
.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.profile-value,
.contact-value {
  color: var(--text);
}

.contact-info-item + .contact-info-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.link:hover {
  text-decoration: underline;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(125, 211, 252, 0.55);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.08);
}

.checkbox-field {
  margin-top: 0.35rem;
}

.checkbox-wrap {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  width: 100%;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-wrap input {
  width: 18px;
  height: 18px;
  margin: 0.2rem 0 0 0;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.checkbox-wrap span {
  display: block;
  min-width: 0;
  width: 100%;
  line-height: 1.6;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}
.contact-form {
  overflow: hidden;
}

.field,
.field-full,
.checkbox-field {
  min-width: 0;
}

.form-grid {
  align-items: start;
}
.submit-btn {
  width: 100%;
}

.legal-container {
  max-width: 980px;
}

.accordion {
  display: grid;
  gap: 1rem;
}

.legal-details {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.legal-details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.25rem 1.35rem;
  font-weight: 800;
  color: var(--text);
  transition: background 0.2s ease;
}

.legal-details summary:hover {
  background: rgba(255,255,255,0.04);
}

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

.legal-details summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--blue);
}

.legal-details[open] summary::after {
  content: "–";
}

.legal-box {
  padding: 0 1.35rem 1.35rem;
}

.legal-box p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.legal-box strong {
  color: var(--text);
}

.legal-box ul {
  margin: 0 0 1rem 1.25rem;
  padding-left: 0.8rem;
  color: var(--muted);
}

.legal-box li + li {
  margin-top: 0.35rem;
}

.site-footer {
  padding: 1.8rem 0 2rem;
  border-top: 1px solid var(--line-soft);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.95rem;
}

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

.footer-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--text);
}

@media (max-width: 1120px) {
  .hero-grid,
  .profile-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-logo {
    width: min(100%, 760px);
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    justify-content: center;
  }

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

  .brand-logo {
    height: 94px;
  }

  .hero {
    padding: 6.7rem 0 4rem;
  }
}

@media (max-width: 720px) {
  .nav-links {
    justify-content: center;
  }

  .brand-logo {
    height: 82px;
  }

  .hero-logo {
    width: min(100%, 100%);
  }

  .hero-logo-wrap {
    min-height: 160px;
  }

  .logo-glass-ring {
    width: 300px;
    height: 300px;
  }

  .beam-1,
  .beam-2 {
    width: 230px;
  }

  .services-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}