* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1a16;
  --muted: #6a655a;
  --accent: #8b2f2a;
  --accent-light: #f3e6df;
  --bg: #f9f5f0;
  --card: #ffffff;
  --line: #e3ddd4;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  color: var(--accent);
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
  gap: 24px;
  padding: 24px 24px 90px;
}

.sidebar {
  flex: 0 0 240px;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--line);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
  font-weight: 600;
}

.nav a:hover {
  background: var(--accent-light);
}

.sidebar .cta-mini {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  background: linear-gradient(120deg, rgba(15, 12, 7, 0.6), rgba(139, 47, 42, 0.25)),
    url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  color: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  max-width: 520px;
}

.hero p {
  max-width: 480px;
  color: #f7efe8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary {
  background: #fff;
  color: var(--accent);
}

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.section {
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--accent-light);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed var(--line);
  background: #fffdfb;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.step {
  flex: 1 1 180px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

button {
  cursor: pointer;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #f7f4ef;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-header {
  background: var(--card);
  border-radius: 22px;
  padding: 28px 32px;
  border: 1px solid var(--line);
}

.plain-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 28px 32px;
  border: 1px solid var(--line);
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  padding: 18px;
  background: #fffaf6;
  border-radius: 18px;
  border: 1px solid var(--line);
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex: 0 0 auto;
    width: 100%;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
