* {
  box-sizing: border-box;
}

:root {
  --ink: #111216;
  --muted: #4b5563;
  --soft: #f3f4f6;
  --accent: #2b6cb0;
  --accent-dark: #1f4d80;
  --sand: #f8f5f1;
  --lavender: #eef2ff;
  --slate: #e7ecf3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 120px 6vw 90px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, 0.72);
}

.hero-inner {
  position: relative;
  max-width: 820px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
}

.section {
  padding: 70px 6vw;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

.story-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.story-row.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.story-media {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--slate);
  padding: 12px;
  border-radius: 18px;
}

.story-media img {
  border-radius: 12px;
  width: 100%;
  height: 320px;
}

.layered {
  background: var(--sand);
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: -30px;
  width: 220px;
  height: 220px;
  background: var(--lavender);
  border-radius: 28px;
  z-index: 0;
}

.layered .content {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 170px;
  border-radius: 12px;
  background: #dbeafe;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #111827;
  color: #f9fafb;
  padding: 26px 6vw;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 24, 0.75);
}

.bg-insight .content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.trust-item {
  flex: 1 1 180px;
  min-width: 160px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-item {
  flex: 1 1 260px;
  min-width: 220px;
  background: #f9fafb;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  min-width: 280px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e5e7eb;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.form-panel button {
  width: 100%;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 50;
}

.footer {
  padding: 40px 6vw;
  background: #0f172a;
  color: #e2e8f0;
}

.footer a {
  color: #dbeafe;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: #e5e7eb;
  color: #111827;
}

.plain-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 6vw 80px;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}
