* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1d22;
  --muted: #5a616b;
  --accent: #1f5b8f;
  --accent-soft: #e8f0f7;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6vw;
  background: var(--panel);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-brand {
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 6vh 6vw 8vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-card {
  position: relative;
  max-width: 520px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  z-index: 1;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.hero-card h1 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  background: var(--panel);
}

.feature-main {
  flex: 2 1 360px;
  min-width: 280px;
}

.feature-main h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-side {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.magazine-strip {
  background: var(--accent-soft);
}

.strip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.note-card {
  flex: 1 1 220px;
  background: var(--panel);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.services-highlight {
  background: var(--panel);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.trust-section {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.trust-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.trust-card {
  position: relative;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 16px;
  z-index: 1;
}

.editorial-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.editorial-image,
.image-frame {
  background: #e1e6ed;
  border-radius: 16px;
  overflow: hidden;
}

.editorial-image {
  flex: 1 1 320px;
}

.editorial-text {
  flex: 1 1 320px;
}

.testimonials {
  background: var(--panel);
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 260px;
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 14px;
}

.form-section {
  background: #fff;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 18px;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.form-fields input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 20px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: #0c2f4f;
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

.btn.light {
  background: #fff;
  color: var(--ink);
}

.btn.accent {
  background: #2e7ec4;
  color: #fff;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.site-footer {
  background: #11151b;
  color: #fff;
  padding: 50px 6vw;
  margin-top: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-columns div {
  flex: 1 1 240px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  margin-top: 28px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 12;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-header {
  padding: 60px 6vw 30px;
  background: var(--panel);
}

.page-header h1 {
  font-size: 2rem;
}

.content-block {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.content-split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.content-split > div {
  flex: 1 1 280px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.contact-card {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 14px;
}

.bg-hero-index {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.bg-trust-index {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}
