* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1c1c;
  background: #f6f2ec;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #12202b;
  color: #f4f1eb;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.disclosure {
  font-size: 12px;
  line-height: 1.4;
  color: #c7d2d9;
  border-left: 3px solid #e7b657;
  padding-left: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
}

.nav a:hover,
.nav a:focus {
  color: #e7b657;
}

.cta-btn,
.ghost-btn,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-btn {
  background: #e7b657;
  color: #12202b;
}

.ghost-btn {
  background: transparent;
  color: #f4f1eb;
  border: 1px solid #f4f1eb;
}

.cta-btn:hover,
.ghost-btn:hover,
.inline-link:hover {
  transform: translateY(-1px);
}

.main {
  flex: 1;
  padding: 32px 36px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  border-radius: 24px;
  padding: 48px;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1d2d3a;
  color: #fdf7ef;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 33, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 36px;
  margin: 0;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.section {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(15, 24, 32, 0.06);
}

.section.alt {
  background: #1d2d3a;
  color: #f4f1eb;
}

.section.dark {
  background: #111a22;
  color: #f4f1eb;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 240px;
}

.image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7d2c9;
}

.tone-1 {
  background-color: #cfc7bb;
}

.tone-2 {
  background-color: #c9c4ba;
}

.tone-3 {
  background-color: #cfc9bf;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1;
  min-width: 220px;
  background: #f7f3ee;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card.dark {
  background: #223040;
  color: #f4f1eb;
}

.service-card img {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
  background-color: #c6bfb4;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e7b657;
  color: #12202b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-card {
  background: #fef7ee;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
}

.form-field select,
.form-field input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d3c8;
  font-size: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: #111a22;
  color: #f4f1eb;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  z-index: 2;
}

.sticky-cta a {
  color: #f4f1eb;
}

.badge-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7b657;
  font-size: 12px;
  font-weight: 600;
}

.footer {
  padding: 24px 0 0;
  font-size: 12px;
  color: #4b4b4b;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1d2d3a;
  color: #f4f1eb;
  padding: 18px;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hamburger {
  display: none;
}

.bg-languages {
  background-image: url("https://images.unsplash.com/photo-1455390582262-044cdead277a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #243542;
}

.bg-workflow {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2f3a;
}

.bg-proof {
  background-image: url("https://images.unsplash.com/photo-1508780709619-79562169bc64?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1c2630;
}

.section.overlay {
  position: relative;
  color: #f4f1eb;
}

.section.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 33, 0.62);
  border-radius: 20px;
}

.section.overlay > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    width: 100%;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e7b657;
    color: #12202b;
    border-radius: 999px;
    border: none;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
  }
}
