/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #5a6672;
  --accent: #1b5ed7;
  --accent-2: #0e8f7e;
  --paper: #f6f6f2;
  --soft: #f0f3f6;
  --dark: #101418;
  --border: rgba(18, 24, 32, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b5ed7 10%, #39b29b 100%);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.hero {
  padding: 70px 0 40px;
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 60%);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-media,
.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(27, 94, 215, 0.2);
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--border);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-2);
  border: 1px dashed rgba(14, 143, 126, 0.4);
}

.panel {
  padding: 26px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel.dark {
  background: var(--dark);
  color: #ffffff;
}

.panel.dark a {
  color: #ffffff;
  text-decoration: underline;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(15, 20, 35, 0.18);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(16, 20, 24, 0.78);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
}

.price {
  color: var(--accent-2);
  font-weight: 700;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-2);
}

.highlight {
  background: linear-gradient(110deg, rgba(27, 94, 215, 0.08), rgba(14, 143, 126, 0.08));
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.grid-two {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 20px;
  z-index: 4;
}

.sticky-cta .panel {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(16, 20, 24, 0.22);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 60px 0 30px;
  background: var(--paper);
}

.page-section {
  padding: 48px 0;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .grid-two {
    flex-direction: row;
  }

  .split-media,
  .split-content {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
