* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d22;
  background: #f4f5f7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  min-height: 100vh;
  background: #f4f5f7;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  width: 240px;
  background: #11131a;
  color: #f7f7f8;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.sidebar nav a {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar .cta-link {
  background: #fbd46d;
  color: #1b1d22;
  font-weight: 600;
  text-align: center;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 48px 24px;
  background: #fef7e4;
}

.hero-copy {
  flex: 1;
  min-width: 280px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: #11131a;
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: #11131a;
  border-color: #11131a;
}

.section {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}

.section.split > div {
  flex: 1;
  min-width: 260px;
}

.section.alt {
  background: #ffffff;
}

.section.tinted {
  background: #f1f4ff;
}

.section.dark {
  background: #11131a;
  color: #f7f7f8;
}

.inline-cta {
  font-weight: 600;
  color: #3559e0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(17, 19, 26, 0.08);
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3559e0;
}

.service-choose {
  margin-top: auto;
  align-self: flex-start;
}

.quote {
  border-left: 4px solid #fbd46d;
  padding-left: 16px;
  font-style: italic;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(17, 19, 26, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd3dd;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 24px 48px 36px;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  background: #0d0f14;
  color: #f7f7f8;
}

.footer a {
  color: #f7f7f8;
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: #3559e0;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(53, 89, 224, 0.3);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #11131a;
  color: #f7f7f8;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #fbd46d;
  color: #1b1d22;
}

.cookie-actions .reject {
  background: #ffffff;
  color: #1b1d22;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(17, 19, 26, 0.1);
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 16px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .footer {
    padding: 32px 20px;
  }

  .sidebar {
    padding: 24px 20px;
  }
}
