:root {
  color-scheme: light;
  --ink: #1d242a;
  --muted: #5b6a75;
  --accent: #1f6a6a;
  --accent-soft: #e4f2f1;
  --sand: #f4f0ea;
  --stone: #f7f8fa;
  --line: #d9dee3;
  --ink-soft: #28323a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  color: var(--ink);
  padding: 6px 0;
}

.nav a:hover {
  color: var(--accent);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 106, 106, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.main {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  background: #d9e6ea;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--stone);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  background: #d9e6ea;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  flex: 1 1 180px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 16px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #dce4ea;
}

.price {
  font-weight: 600;
  color: var(--ink-soft);
}

.highlight {
  background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80") center/cover no-repeat;
  border-radius: 26px;
  color: #ffffff;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 28, 0.55);
}

.highlight .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}

.form-section {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.form-card {
  flex: 1.2;
  background: var(--stone);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
}

.form-meta {
  flex: 0.8;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 15;
}

.contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: var(--stone);
  border-radius: 18px;
  padding: 20px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-small {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-small img {
  width: 220px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  background: #d9e6ea;
}

.service-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-grid .service-card {
  flex: 1 1 240px;
}

.thanks {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email {
  font-weight: 600;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
    width: 100%;
  }

  .hero,
  .split,
  .form-section,
  .hero-small {
    flex-direction: column;
  }

  .main {
    padding: 32px 24px 90px;
  }
}
