* {
  box-sizing: border-box;
}

:root {
  --ink: #141414;
  --muted: #4a4a4a;
  --paper: #f6f3ef;
  --accent: #2b4a6f;
  --accent-soft: #dde8f5;
  --warm: #f1ebe4;
  --dark: #0f172a;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: var(--dark);
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #cbd5f5;
  background: rgba(203, 213, 245, 0.12);
  padding: 10px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.side-nav a {
  padding: 8px 0;
}

.side-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #cbd5f5;
}

.side-cta .btn {
  text-align: center;
  background: #f8fafc;
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 6vw 120px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--card);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-text {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
}

.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;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.hero-image {
  flex: 1;
  background-color: #334155;
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.image-frame {
  background-color: #d7e2f2;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1518779578993-ec3579fee39f?w=1400&q=80");
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .visual {
  flex: 1;
  background: var(--warm);
  padding: 18px;
  border-radius: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 18px;
  background-color: #cbd5f5;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.badge {
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  width: fit-content;
}

.flow {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.flow-step {
  flex: 1 1 160px;
  background: #fefcf9;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 16px;
}

.form-panel {
  display: flex;
  gap: 24px;
  background: var(--dark);
  color: #e2e8f0;
  padding: 32px;
  border-radius: 28px;
}

.form-panel .text {
  flex: 1;
}

.service-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-form label {
  font-size: 13px;
  letter-spacing: 0.3px;
}

.service-form input,
.service-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
}

.service-form button {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: #f8fafc;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
}

.highlight {
  background: linear-gradient(120deg, #f8fafc 0%, #dde8f5 100%);
  padding: 28px;
  border-radius: 28px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: #fff;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #d9d2ca;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #4b5563;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e2e8f0;
  color: #111827;
}

.legal-block {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-block h2 {
  margin: 0;
}

.simple-hero {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 6vw 120px;
  }

  .hero {
    flex-direction: column;
  }

  .split {
    flex-direction: column;
  }

  .form-panel {
    flex-direction: column;
  }
}
