* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f656b;
  --brand: #1b5cff;
  --accent: #f4b400;
  --bg: #f7f5f2;
  --surface: #ffffff;
  --border: #e4e2df;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fbfaf8;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--brand);
}

.hero {
  background-size: cover;
  background-position: center;
  padding: 80px 6vw;
  color: #fefefe;
  position: relative;
  background-color: #1f2430;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 23, 0.48);
}

.hero-content {
  position: relative;
  max-width: 520px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 70px 6vw;
  background: var(--surface);
}

.split.reverse {
  flex-direction: row-reverse;
  background: #fbfaf8;
}

.split .text {
  flex: 1;
}

.split .visual {
  flex: 1;
  background: #eae7e2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-title {
  margin-bottom: 14px;
  font-size: 1.9rem;
}

.callout {
  padding: 32px;
  border-left: 4px solid var(--accent);
  background: #fff3c4;
  border-radius: 20px;
  margin: 20px 0;
}

.service-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 230px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
}

.form-section {
  padding: 70px 6vw;
  background: #f0f2ff;
}

.form-wrap {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: var(--surface);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
}

.form-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin-left: auto;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.footer {
  padding: 32px 6vw 48px;
  background: #181a1f;
  color: #ececec;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer small {
  color: #b6b9bd;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.legal-wrapper {
  padding: 70px 6vw;
  background: var(--surface);
}

.legal-wrapper .visual {
  margin-top: 24px;
  height: 220px;
}

.contact-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.tagline {
  color: var(--muted);
}

.split-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-inline {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand);
}

.thanks-card {
  padding: 42px;
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--border);
  max-width: 620px;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
}

.img-fallback {
  background: #e9e6e2;
}

.bg-analytics {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-analytics::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 18, 0.55);
}

.bg-analytics .split {
  position: relative;
  background: transparent;
  color: inherit;
}

.bg-analytics .split .visual {
  background: transparent;
  box-shadow: none;
}

.bg-analytics .split .visual img {
  box-shadow: var(--shadow);
  border-radius: 26px;
}

.light-band {
  background: #fffdf9;
}

.section-note {
  margin-top: 10px;
  color: var(--muted);
}
