* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #121418;
  --muted: #5a6472;
  --accent: #2c6bff;
  --accent-dark: #1b4ccc;
  --surface: #f7f8fb;
  --surface-strong: #eef1f6;
  --highlight: #fff3d8;
  --shadow: 0 18px 40px rgba(17, 23, 34, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
  background: #fff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 270px;
  padding: 2.5rem 2rem;
  background: var(--surface);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--accent);
}

.side-note {
  background: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  color: var(--muted);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 3.5rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section.alt {
  background: var(--surface);
}

.section.highlight {
  background: var(--highlight);
}

.hero {
  position: relative;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 5rem 5vw 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(14, 24, 43, 0.92), rgba(14, 24, 43, 0.4));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: 0.2s ease;
}

.button.outline {
  background: transparent;
  border-color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button.outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.flex-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.flex-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.flex-card img {
  border-radius: 0.9rem;
  height: 160px;
  object-fit: cover;
}

.split-panel {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.split-panel .panel {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.layered-block {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.layered-block::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 1.8rem;
  border: 2px solid rgba(44, 107, 255, 0.18);
  z-index: -1;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  font-style: italic;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

input,
select,
textarea {
  padding: 0.8rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid #d3d9e5;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 99;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.footer {
  background: #0f1726;
  color: #c9d4f0;
  padding: 2.5rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer a {
  color: #c9d4f0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  max-width: 360px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.55rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid #cfd6e3;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
}

.notice {
  background: var(--surface-strong);
  padding: 1.4rem;
  border-radius: 1rem;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 5vw;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .side-note {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 6rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
