* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1d1f;
  --muted: #5a6570;
  --sand: #f6f3ef;
  --mist: #eef1f4;
  --clay: #d3c6b9;
  --sky: #a7c7e7;
  --leaf: #2d6a4f;
  --sun: #f7b267;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e5e5e5;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
}

.nav a:hover {
  color: var(--leaf);
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px 18px;
  background: var(--leaf);
  color: var(--white);
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 6vw 72px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(120deg, rgba(167, 199, 231, 0.35), rgba(247, 178, 103, 0.15));
  padding: 48px;
  border-radius: 28px;
}

.hero h1 {
  font-size: 42px;
  max-width: 620px;
}

.hero p {
  font-size: 18px;
  max-width: 640px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--leaf);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--leaf);
  color: var(--leaf);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 260px;
}

.pill {
  display: inline-block;
  background: var(--mist);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--leaf);
}

.highlight {
  background: var(--mist);
  padding: 24px;
  border-radius: 20px;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--sun);
  padding: 20px 24px;
  border-radius: 14px;
}

.form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd5dd;
  font-size: 14px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-start;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid #e1e1e1;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 50;
}

.banner button {
  border: none;
}

.banner-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.banner.hidden {
  display: none;
}

.page-hero {
  background: var(--mist);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .main {
    padding: 24px 7vw 64px;
  }
}
