* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c2430;
  --muted: #5b6573;
  --soft: #eef2f6;
  --accent: #1c6ea4;
  --accent-2: #2b8f7b;
  --highlight: #f4e6d2;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(28, 36, 48, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f8f9fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header,
section,
footer,
main,
nav {
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #0f1620;
  color: #fff;
  padding: 12px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  background: #f0c674;
  color: #2a1c0f;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  color: #fff;
  padding: 70px 0 120px;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 36, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 340px;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-panel {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.hero-panel ul {
  padding-left: 18px;
  margin: 18px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: #0f1620;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.section {
  padding: 70px 0;
}

.section.asymmetric {
  position: relative;
}

.asymmetric-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 320px;
  background: var(--card);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.offset-card.highlight {
  background: var(--highlight);
}

.media-frame {
  flex: 1 1 280px;
  border-radius: 26px;
  overflow: hidden;
  background: #d7e2ed;
  box-shadow: var(--shadow);
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  background: var(--soft);
  border-radius: 28px;
  padding: 32px;
}

.split-band .copy {
  flex: 1 1 300px;
}

.split-band .stack {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.service-card .content {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #0f1620;
  color: #fff;
  padding: 28px;
  border-radius: 20px;
}

.testimonial p {
  margin: 0;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: #102034;
  color: #fff;
  padding: 34px;
  border-radius: 26px;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-shell form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d2df;
  font-size: 1rem;
  font-family: inherit;
}

.form-notes {
  flex: 1 1 260px;
  background: var(--soft);
  border-radius: 20px;
  padding: 22px;
}

.footer {
  background: #0f1620;
  color: #d7dee9;
  padding: 40px 0 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.legal-note {
  font-size: 0.9rem;
  color: #c3c9d3;
  max-width: 820px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: #eef2f6;
  padding: 52px 0;
}

.page-hero h1 {
  margin: 0;
}

.page-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.plain-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-grid .plain-card {
  flex: 1 1 260px;
}

.references {
  font-size: 0.9rem;
  color: #94a0b0;
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
