* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1f;
  --muted: #5b5e66;
  --line: #e5e7eb;
  --accent: #2b5cff;
  --accent-soft: #e8eeff;
  --warm: #f6f1ea;
  --cool: #eef5f5;
  --dark: #0f172a;
  --light: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fafafa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 10px 0 60px;
  position: relative;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--light);
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.hero-copy h1 {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -20px;
  background: var(--accent);
  color: var(--light);
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 16px 35px rgba(43, 92, 255, 0.35);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: var(--light);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--light);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  margin: 70px 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  margin-bottom: 18px;
}

.offset-block {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1 1 280px;
  background: var(--warm);
  padding: 26px;
  border-radius: 24px;
  transform: translateY(12px);
}

.offset-card.dark {
  background: var(--dark);
  color: var(--light);
  transform: translateY(-10px);
}

.offset-card p {
  color: inherit;
  opacity: 0.85;
}

.feature-ribbon {
  background: var(--accent-soft);
  padding: 20px 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-ribbon span {
  font-weight: 600;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split-panel .panel {
  flex: 1 1 320px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 200px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.stat strong {
  font-size: 1.4rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--cool);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.quote-panel {
  background: var(--dark);
  color: var(--light);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-panel em {
  color: #cbd5f5;
}

.form-shell {
  background: var(--light);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 50px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 40px;
  background: var(--accent);
  color: var(--light);
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(43, 92, 255, 0.35);
}

.sticky-cta a {
  background: var(--light);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--light);
}

.cookie-actions .reject {
  background: var(--line);
  color: var(--ink);
}

.notice-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--cool);
  padding: 24px;
  border-radius: 22px;
  align-items: center;
}

.notice-strip div {
  flex: 1 1 180px;
}

.image-stack {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-stack img {
  flex: 1 1 220px;
  height: 180px;
  object-fit: cover;
}

.simple-header {
  margin: 40px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-header p {
  color: var(--muted);
}

.legal {
  background: var(--light);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--warm);
  padding: 24px;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-copy {
    padding: 28px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
