* {
  box-sizing: border-box;
}

:root {
  --forest: #12342f;
  --teal: #0f6d62;
  --sand: #f5ede1;
  --gold: #d48f3f;
  --ink: #20302d;
  --muted: #5c6e6a;
  --white: #ffffff;
  --border: rgba(18, 52, 47, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #fcfaf6;
}

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

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

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

.top-bar {
  background: var(--forest);
  color: var(--white);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.contact-link {
  font-size: 0.95rem;
  font-weight: 700;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.login-dropdown {
  position: relative;
}

.login-button {
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.login-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 10px 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.login-dropdown:hover .login-menu,
.login-dropdown:focus-within .login-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.login-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 700;
}

.login-menu a:hover {
  background: #f5f1e8;
}

.main-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.main-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 220px;
  height: auto;
  border-radius: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: #eef3ff;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--forest);
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.hero-slider {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(95, 76, 192, 0.18), transparent 24%),
    radial-gradient(circle at bottom center, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(180deg, #1b1244 0%, #120b2d 100%);
}

.hero-overlay {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--white);
  padding: 80px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-content {
  max-width: 660px;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 12px;
  color: #bbaeff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-overlay h1 {
  margin: 0;
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 20px 0 0;
  max-width: 470px;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-button {
  display: inline-flex;
  padding: 14px 24px;
  border-radius: 999px;
  background: #2f5bff;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(47, 91, 255, 0.28);
}

.hero-secondary {
  display: inline-flex;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.video-banner-card {
  position: relative;
  padding: 22px 22px 88px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 56px;
  border-top-left-radius: 36px;
  border-bottom-right-radius: 92px;
  background: rgba(5, 2, 18, 0.76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.video-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff33ff;
  box-shadow: 0 0 20px #ff33ff, 0 0 40px rgba(255, 51, 255, 0.6);
}

.video-dot-left {
  left: 14%;
  bottom: 160px;
}

.video-dot-right {
  right: 12%;
  bottom: 160px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  border-top-left-radius: 32px;
  border-bottom-right-radius: 76px;
  background: #090313;
  aspect-ratio: 4 / 5;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(196, 84, 255, 0.08), transparent 36%),
    linear-gradient(180deg, transparent 0%, rgba(4, 2, 12, 0.12) 100%);
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.video-card-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.video-link {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  font-size: 0.9rem;
}

.video-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #2f5bff;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(47, 91, 255, 0.34);
}

.intro-section,
.highlight-section,
.why-section,
.mission-section,
.services-section,
.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.intro-copy {
  max-width: 840px;
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.intro-visual {
  display: flex;
}

.intro-visual-card {
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(47, 91, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(47, 91, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 24px 50px rgba(18, 52, 47, 0.08);
}

.intro-visual-card img {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  margin: 0 auto;
}

.intro-visual-copy {
  margin-top: 22px;
}

.intro-visual-kicker {
  margin: 0 0 10px;
  color: #2f5bff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.intro-visual-copy h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.7rem;
  line-height: 1.2;
}

.intro-visual-text {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro-section p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.9;
}

.highlight-section {
  padding-top: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.highlight-card,
.catalog-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 52, 47, 0.07);
}

.highlight-card h3,
.catalog-card h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 1.15rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.why-section {
  padding-top: 0;
}

.why-panel {
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(47, 91, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(47, 91, 255, 0.08);
  box-shadow: 0 24px 50px rgba(18, 52, 47, 0.08);
}

.why-section .why-intro {
  max-width: 760px;
}

.why-section .why-intro h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.why-section .why-intro p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.why-section .why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.why-section .why-card,
.why-section .mission-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 52, 47, 0.07);
}

.why-section .why-card {
  min-width: 0;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(47, 91, 255, 0.08);
}

.why-section .why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef3ff 0%, #dfe9ff 100%);
  color: #2f5bff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.why-section .why-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.why-section .why-card p,
.why-section .mission-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.why-section .mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.why-section .mission-card h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 1.6rem;
}

.why-section .mission-card {
  padding: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-color: rgba(47, 91, 255, 0.08);
  min-width: 0;
}

.services-section {
  padding-top: 0;
  padding-bottom: 40px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.cta-section {
  padding-top: 0;
  padding-bottom: 86px;
}

.cta-panel {
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--forest), var(--teal));
  color: var(--white);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-subtitle {
  margin: 14px 0 0;
  color: #f6ddbb;
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-panel p:last-of-type {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.cta-highlight {
  margin: 18px 0 24px;
  color: #ffe08a;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer {
  background: var(--forest);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 28px;
  padding: 40px 0;
  align-items: stretch;
}

.footer-card {
  height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-contact,
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-inner h3 {
  margin: 0;
  font-size: 1.2rem;
}

.footer-brand {
  margin: 0;
  color: #f6ddbb;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-map {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-map iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  min-height: 280px;
}

@media (max-width: 960px) {
  .main-bar-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .video-banner-card {
    max-width: 640px;
  }

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

  .why-section .why-grid,
  .why-section .mission-grid {
    grid-template-columns: 1fr;
  }

  .intro-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .top-bar-inner,
  .main-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .menu-toggle {
    display: inline-block;
    align-self: flex-end;
    margin-top: -58px;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 18px;
    background: #f7f9ff;
    border: 1px solid rgba(18, 52, 47, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .brand img {
    width: 180px;
    border-radius: 14px;
  }

  .hero-slider {
    min-height: 540px;
  }

  .hero-overlay h1 {
    max-width: none;
  }

  .hero-copy {
    max-width: none;
  }

  .video-card-footer {
    position: static;
    margin-top: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .video-banner-card {
    padding-bottom: 24px;
  }

  .highlight-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .why-panel {
    padding: 24px;
    overflow: hidden;
  }

  .why-section .why-grid,
  .why-section .mission-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .why-section .why-card,
  .why-section .mission-card {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 22px;
  }

  .why-section .why-card p,
  .why-section .mission-card p,
  .why-section .mission-card h2 {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .why-section .why-intro h2,
  .why-section .mission-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.12;
  }

  .why-section .why-intro p:last-child,
  .why-section .mission-card p:last-child {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .cta-panel {
    padding: 28px;
  }
}
