* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2330;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #10151f;
  color: #f2f4f8;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c7d2e4;
  border: 1px solid #2c3547;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.14);
}

.content {
  flex: 1;
  padding: 0;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.compact {
  padding: 40px 8vw;
}

.section.dark {
  background-color: #10151f;
  color: #f2f4f8;
}

.section.soft {
  background-color: #ffffff;
}

.hero {
  min-height: 62vh;
  background-color: #1b212c;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f8f9fb;
}

.hero.about-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero.services-hero {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.hero.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
}

.hero.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1448630360428-65456885c650?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 22, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #f5d86e;
  color: #1b1b1b;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid currentColor;
  background-color: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.ghost-btn:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.media {
  flex: 1;
  min-height: 240px;
  background-color: #dfe4ec;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.media.graph {
  background-color: #d7dde5;
}

.media.laptop {
  background-color: #e2d9d0;
}

.media.team {
  background-color: #273042;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #dfe4ec;
}

.text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(16, 21, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #dfe4ec;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #0f1a2b;
}

.quote {
  font-size: 16px;
  padding: 16px 20px;
  border-left: 3px solid #f5d86e;
  background-color: rgba(245, 216, 110, 0.15);
  border-radius: 10px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

form {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd5df;
  font-size: 15px;
}

.footer {
  padding: 32px 8vw 48px;
  background-color: #0d121b;
  color: #ccd4e1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #10151f;
  color: #f2f4f8;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta a {
  color: #f2f4f8;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 420px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0f1a2b;
  background-color: #f5d86e;
  padding: 4px 10px;
  border-radius: 999px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-plan {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f9fb;
}

.bg-plan .section-inner {
  background: rgba(12, 15, 22, 0.6);
  padding: 40px;
  border-radius: 18px;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.icon-row .item {
  flex: 1;
  min-width: 200px;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
