@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1f2430;
  --muted: #5c6475;
  --accent: #0f5b57;
  --accent-soft: #e8f2f1;
  --sand: #f6f2ee;
  --stone: #efefef;
  --night: #14171f;
  --night-soft: #202530;
  --outline: #d8dde6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

img {
  display: block;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 64px 6vw;
  color: #ffffff;
  background-color: #1a1f28;
  background-image: url("https://images.unsplash.com/photo-1636763086471-9f29bc34ab9e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-card {
  max-width: 560px;
  background: rgba(16, 20, 27, 0.72);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-ghost {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #ffffff;
}

.section.bg-insight {
  background-color: #1f2430;
  background-image: url("https://images.unsplash.com/photo-1629280878139-038999084e23?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.bg-insight::before,
.section.bg-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 28, 0.65);
}

.section.bg-insight > * ,
.section.bg-pricing > * {
  position: relative;
  z-index: 1;
}

.section.bg-pricing {
  background-color: #2a2f3a;
  background-image: url("https://images.unsplash.com/photo-1547731269-e4073e054f12?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.content-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
}

.media-frame {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #e3e5ea;
  min-height: 280px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  border-radius: 20px;
  border: 1px solid var(--outline);
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-media {
  border-radius: 14px;
  overflow: hidden;
  background: #e6e7ec;
  height: 180px;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.testimonial {
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: #f7f8fa;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-area {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 360px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-family: inherit;
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.sticky-cta a {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(16, 20, 27, 0.2);
}

.page-hero {
  padding: 80px 6vw 40px;
  min-height: 40vh;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  background-color: #1c212b;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-text {
  background: rgba(16, 20, 27, 0.65);
  padding: 20px 26px;
  border-radius: 16px;
  max-width: 560px;
}

.content-layout {
  padding: 48px 6vw 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.legal-block {
  background: var(--stone);
  padding: 24px;
  border-radius: 18px;
}

.footer {
  background: var(--night-soft);
  color: #ffffff;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--outline);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(16, 20, 27, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: var(--stone);
  color: var(--ink);
}

.about-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1533630217389-3a5e4dff5683?w=1400&q=80");
}

.services-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1621639532859-8b26570b96fc?w=1400&q=80");
}

.contact-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1549064233-945d7063292f?w=1400&q=80");
}

.privacy-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1606224103857-e4c74b0139df?w=1400&q=80");
}

.gdpr-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1625690180114-5530b1304127?w=1400&q=80");
}

.cookies-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1592853625601-bb9d23da12fc?w=1400&q=80");
}

.terms-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1580273916550-e323be2ae537?w=1400&q=80");
}

.thanks-page .page-hero {
  background-image: url("https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?w=1400&q=80");
}

@media (max-width: 900px) {
  .hero {
    padding: 48px 6vw;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
