@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1d2433;
  --muted: #5f6b7a;
  --accent: #1a5cff;
  --accent-dark: #123da7;
  --soft: #f2f5f9;
  --sand: #f7f3ee;
  --mid: #e2e7ef;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
}

.hero {
  padding: 24px 6vw 0;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split-content h1,
.split-content h2 {
  margin: 0;
}

.hero-visual {
  min-height: 340px;
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  background-color: #dde4ee;
}

.panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel.dark {
  background: var(--ink);
  color: #ffffff;
}

.panel.dark a {
  color: #b7ccff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--mid);
}

.btn.dark {
  background: #ffffff;
  color: var(--ink);
}

.section {
  padding: 0 6vw;
}

.section.tight {
  padding-top: 6px;
}

.section-sand {
  background: var(--sand);
  padding: 40px 6vw;
}

.section-ink {
  background: #0f1726;
  color: #ffffff;
  padding: 48px 6vw;
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cad2dc;
  border-radius: var(--radius);
  margin: 0 6vw;
  padding: 42px;
  color: #ffffff;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.metric {
  flex: 1 1 160px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--mid);
}

.media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.media-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--mid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-frame {
  background-color: #e5ebf2;
}

.media-frame img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.media-card .copy {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  font-style: italic;
}

.form-wrap {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--mid);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--mid);
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  box-shadow: 0 12px 30px rgba(10, 25, 55, 0.18);
}

footer {
  padding: 40px 6vw 60px;
  background: #f8f9fb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--mid);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
  box-shadow: 0 10px 26px rgba(18, 25, 45, 0.16);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background-image: url("https://images.unsplash.com/photo-1455390582262-044cdead277a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfd6df;
  border-radius: var(--radius);
  padding: 42px;
  color: #ffffff;
  margin: 0 6vw;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-col .panel {
  flex: 1 1 260px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border: 1px solid var(--mid);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.service-item .media-frame img {
  width: 220px;
  height: 180px;
  object-fit: cover;
}

.service-item .details {
  flex: 1 1 240px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.contact-block {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--mid);
  padding: 22px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.inline-link {
  font-weight: 600;
}

.media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.media-strip img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #dfe6ef;
}

.media-strip .media-frame {
  border-radius: 14px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .sticky-cta {
    position: static;
    box-shadow: none;
    margin: 0 6vw 20px;
  }
}
