* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #4b5563;
  --soft: #f4f1ec;
  --accent: #2f6fed;
  --accent-dark: #254fb8;
  --sand: #efe9e1;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #e8e4dd;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-center {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  background: rgba(12, 16, 25, 0.65);
  padding: 88px 0;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  max-width: 560px;
  margin-bottom: 24px;
  color: #f3f4f6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 28px;
  font-weight: 600;
}

.split {
  display: flex;
  gap: 32px;
  padding: 64px 0;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  flex: 1;
  background-color: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow);
}

.split-image img {
  height: 360px;
}

.callout {
  background: var(--soft);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 14px 30px var(--shadow);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 180px;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.section-dark {
  background: #111827;
  color: #f9fafb;
}

.section-dark a {
  color: #dbeafe;
}

.section-dark .split-image {
  background-color: #1f2937;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 30px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

button {
  padding: 14px 20px;
  border: none;
  border-radius: 28px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section-bg .overlay {
  background: rgba(16, 24, 38, 0.7);
  padding: 72px 0;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 32px;
  padding: 10px 18px;
  box-shadow: 0 12px 28px var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-dark);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 32px 0;
  background: #f9fafb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.legal {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 18px 32px var(--shadow);
  max-width: 340px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button.secondary {
  background: #e5e7eb;
  color: var(--ink);
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
