* {
  box-sizing: border-box;
}

:root {
  --ink: #14161a;
  --muted: #5b6472;
  --accent: #3b5cff;
  --accent-dark: #2b44c9;
  --soft: #f4f6fb;
  --surface: #ffffff;
  --shadow: 0 18px 45px rgba(20, 22, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f7f8fb;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f1d56, #4c7dff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  background: #eef1f7;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.hero {
  padding: 40px 0 60px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 420px;
}

.hero .copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero .copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: #eef2ff;
}

.visual {
  border-radius: 18px;
  overflow: hidden;
  background: #e2e6f3;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--soft);
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 18px;
}

.section p {
  color: var(--muted);
}

.tagline {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 10px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-image {
  border-radius: 12px;
  overflow: hidden;
  background: #e4e8f5;
  height: 160px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 600;
}

.inline-cta span {
  font-size: 18px;
}

.list {
  padding: 0;
  list-style: none;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d5dbe8;
  font-size: 15px;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 0 60px;
  background: #0f1320;
  color: #e6ebff;
}

.footer a {
  color: #c6d2ff;
}

.footer .page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-note {
  font-size: 13px;
  color: #b5c0e9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 320px;
  z-index: 50;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  background: #eef1ff;
  border-radius: 14px;
  padding: 18px;
}

.two-col {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 320px;
}

.section-image {
  border-radius: 18px;
  overflow: hidden;
  background: #e4e8f5;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.no-click {
  color: var(--muted);
}

.header-standalone {
  padding: 26px 0 12px;
}

.page-title {
  font-size: clamp(32px, 4vw, 44px);
  margin: 20px 0 12px;
}

.content-block {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.content-block h2 {
  margin-top: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-item .service-image {
  flex: 1 1 220px;
  min-height: 170px;
  border-radius: 12px;
  overflow: hidden;
  background: #e4e8f5;
}

.service-item .service-copy {
  flex: 2 1 320px;
}

.service-item .price {
  margin-top: 12px;
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  background: #f0f3ff;
  border-radius: 999px;
  font-size: 13px;
  color: #3c4db3;
  margin-bottom: 10px;
}

.spacer {
  height: 24px;
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
