* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #51606b;
  --accent: #2f5b4a;
  --accent-soft: #e7f1ec;
  --sand: #f7f3ee;
  --slate: #eef2f5;
  --coal: #121517;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e9ec;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--slate);
  padding: 6px 10px;
  border-radius: 16px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--ink);
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 6vw 80px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-color: #1f2933;
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 70px 8vw;
  color: #ffffff;
  display: flex;
  align-items: center;
  min-height: 380px;
}

.hero-content {
  max-width: 520px;
  background: rgba(18, 21, 23, 0.68);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-content p {
  color: #f5f5f5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-text h2 {
  font-size: 1.9rem;
}

.split-text p {
  color: var(--muted);
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--sand);
  min-height: 260px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tone-panel {
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.tone-panel .column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-card {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e4eaee;
  overflow: hidden;
  flex-wrap: wrap;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-card .service-info {
  flex: 1 1 280px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.quote {
  background: var(--coal);
  color: #ffffff;
  padding: 34px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote span {
  color: #c8d4de;
}

.insight-band {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-color: #2a353d;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-band p {
  color: #f2f4f6;
  max-width: 620px;
}

.form-wrap {
  background: var(--slate);
  padding: 36px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cdd6dd;
  font-size: 1rem;
  width: 100%;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: -20px;
  display: flex;
  justify-content: center;
}

.sticky-cta .btn {
  box-shadow: 0 10px 24px rgba(18, 21, 23, 0.15);
}

footer {
  background: var(--coal);
  color: #ffffff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-cols {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cols .col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #d9e1e7;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 16px 32px rgba(18, 21, 23, 0.15);
  display: none;
  z-index: 10;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4eaee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.light-panel {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid #e1e7ec;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 860px) {
  .hero {
    padding: 48px 8vw;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
