* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 250px;
  padding: 32px 28px;
  background: #111115;
  color: #ffffff;
}

.brand {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.98rem;
}

.nav-links a {
  color: #ffffff;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: #f3a712;
  color: #111115;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #f3a712;
  color: #f3a712;
}

.main-content {
  flex: 1;
  padding: 40px 48px 90px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 36px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(12, 12, 20, 0.08);
}

.section-hero {
  flex-direction: row;
  gap: 32px;
  background: #16161d;
  color: #ffffff;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.section-story {
  background: #f7efe5;
}

.section-steps {
  background: #fff3f0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  align-items: flex-start;
}

.step span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f25f5c;
}

.section-stats {
  background: #e8f4f6;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
}

.section-pricing {
  background: #f6f0ff;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.price-card img {
  border-radius: 16px;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3b2e7e;
}

.section-team {
  background: #eff4ee;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.team-card {
  flex: 1 1 200px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-space {
  background: #f9f0f2;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.layered-card {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
}

.layered-card::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: #e0d6ff;
  border-radius: 18px;
  z-index: -1;
}

.section-form {
  background: #1d1d23;
  color: #ffffff;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-faq {
  background: #ffffff;
  border: 1px solid #eee;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  padding: 16px;
  border-radius: 14px;
  background: #f6f4f1;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  color: #f25f5c;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  padding: 18px;
  background: #111115;
  color: #ffffff;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: #111115;
  color: #ffffff;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-split {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.content-split > div {
  flex: 1 1 240px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 980px) {
  .site-shell {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .main-content {
    padding: 24px 20px 80px;
  }

  .section-hero {
    flex-direction: column;
  }

  .section-space {
    flex-direction: column;
  }
}
