:root {
  --ink: #2c2f55;
  --ink-strong: #1f2344;
  --accent: #d0f858;
  --accent-strong: #b8e83a;
  --bg: #f7f8fb;
  --bg-2: #eef1f7;
  --line: rgba(64, 64, 120, 0.18);
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(32, 36, 66, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(208, 248, 88, 0.32), transparent 30%),
    radial-gradient(circle at 86% 2%, rgba(64, 64, 120, 0.18), transparent 32%),
    linear-gradient(160deg, #f9fafc 0%, #edf1f8 60%, #f6f7fb 100%);
  color: var(--ink);
}

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

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(208, 248, 88, 0.12), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(64, 64, 120, 0.12), transparent 30%),
    repeating-linear-gradient(120deg, rgba(64, 64, 120, 0.05) 0 1px, transparent 1px 60px);
  pointer-events: none;
  z-index: -1;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 251, 0.8);
  border-bottom: 1px solid rgba(64, 64, 120, 0.08);
}


.nav {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}



.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 1.6rem;
  font-size: 0.98rem;
  height: 100%;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
}




.nav-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  justify-self: end;
  height: 100%;
}



.lang-toggle {
  display: flex;
  gap: 0.4rem;
  border: 1px solid var(--line);
  padding: 0.25rem;
  border-radius: 999px;
  background: #fff;
}

.lang-toggle button {
  border: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: transparent;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.lang-toggle button.active {
  background: var(--accent);
  color: #1e2400;
}

button,
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 0.78rem 1.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #202600;
  background: linear-gradient(120deg, #d0f858 0%, #e6ff8a 100%);
  box-shadow: 0 14px 30px rgba(208, 248, 88, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(208, 248, 88, 0.5);
}

.btn-outline {
  color: var(--ink-strong);
  border: 1px solid rgba(64, 64, 120, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(32, 36, 66, 0.08);
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(64, 64, 120, 0.32);
}

.hero {
  padding: 4.8rem 0 3.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.8rem;
  align-items: center;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--ink-strong);
}

.hero p {
  font-size: 1.1rem;
  color: #4a4f78;
  margin: 0 0 1.6rem;
}


.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(64, 64, 120, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.2rem;
}


.hero-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Sora", sans-serif;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.2rem;
}

.hero-meta {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-meta .meta {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(64, 64, 120, 0.12);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(64, 64, 120, 0.08);
}

.section {
  padding: 3.8rem 0;
}

.section h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
  color: var(--ink-strong);
}

.section p.lead {
  max-width: 720px;
  color: #4a4f78;
}


.stack {
  display: grid;
  gap: 1.4rem;
}

.services-split {
  margin-top: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(64, 64, 120, 0.1);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(32, 36, 66, 0.16);
  border-color: rgba(64, 64, 120, 0.2);
}

.card h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 0.5rem;
}

.card p {
  color: #4a4f78;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  align-items: center; 
}

.list {
  display: grid;
  gap: 0.75rem;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  border: 1px solid rgba(64, 64, 120, 0.12);
}

.badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(64, 64, 120, 0.1);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.banner {
  background: var(--card);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  border: 1px solid rgba(64, 64, 120, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.banner h3 {
  margin: 0 0 0.4rem;
  font-family: "Sora", sans-serif;
}

.rich p {
  margin: 0 0 0.9rem;
  color: #4a4f78;
  line-height: 1.6;
}

p.rich {
  margin: 0 0 1.4rem;
  color: #4a4f78;
  line-height: 1.6;
}

.rich strong {
  color: var(--ink-strong);
}

.rich-list {
  margin: 0.6rem 0 1rem;
  padding-left: 1.1rem;
  color: #4a4f78;
  display: grid;
  gap: 0.6rem;
  line-height: 1.5;
}

.rich-note {
  margin-top: 1.6rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(64, 64, 120, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #4a4f78;
}

footer {
  padding: 2.6rem 0 3.2rem;
  color: #51557a;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-card {
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(64, 64, 120, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 18, 36, 0.42);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal.active {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow);
}

.modal-card h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
}

.modal-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.modal-actions a {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(64, 64, 120, 0.18);
  background: #f9fafc;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(64, 64, 120, 0.1);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(32, 36, 66, 0.16);
  border-color: rgba(64, 64, 120, 0.2);
}

.price-card .price-tag {
  font-size: 1.8rem;
  font-family: "Sora", sans-serif;
  margin: 0.6rem 0 1rem;
  color: var(--ink-strong);
}

.price-duration {
  margin: 0 0 0.8rem;
  color: #4a4f78;
}

.price-label {
  display: block;
  margin-top: 0.6rem;
  font-weight: 600;
  color: var(--ink-strong);
}

.price-note {
  margin: 0.4rem 0 0.8rem;
  color: #4a4f78;
}

.price-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #4a4f78;
}


.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 1.6rem;
  font-size: 0.98rem;
}




}

@media (max-width: 680px) {
  .cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .nav {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}


}

.hero-title-animate {
  opacity: 0;
  transform: translateY(12px);
  animation: heroTitleIn 0.7s ease forwards;
}

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



@media (max-width: 720px) {
  header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 251, 0.8);
  border-bottom: 1px solid rgba(64, 64, 120, 0.08);
}

}

#about .list-item[data-i18n="mission_close"] {
  margin-top: 0.2rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
