* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #5d6672;
  --paper: #f6f2ed;
  --canvas: #ffffff;
  --accent: #c46b3f;
  --accent-dark: #8f4c2c;
  --shadow: rgba(31, 35, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
  background: var(--canvas);
}

.sidebar {
  width: 240px;
  background: #14161a;
  color: #f4f4f4;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: #f4f4f4;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar .mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 244, 244, 0.4);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 6vw 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  border-radius: 28px;
  color: #fdfbf8;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)), url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero.about-hero {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)), url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 680px;
}

.hero p {
  max-width: 600px;
  font-size: 1.1rem;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section-split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.section-split > div {
  flex: 1 1 280px;
}

.section-card {
  padding: 28px;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cards .card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.band {
  background: #f1ece7;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(196, 107, 63, 0.15);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px var(--shadow);
}

.pricing-item span {
  font-weight: 600;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-panel {
  background: #131416;
  color: #f4f4f4;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d5d8dc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid #e5e5e5;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #14161a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111216;
  color: #fff;
  padding: 18px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-banner .actions {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-banner .reject {
  background: #2b2f36;
  color: #fff;
}

.note-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.note {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: #fffaf6;
  border-radius: 10px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1 1 220px;
  min-height: 180px;
  object-fit: cover;
}

.quote-banner {
  background: #21242a;
  color: #f7f4f2;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 22px var(--shadow);
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eceef1;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .main {
    padding: 32px 7vw 80px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
