* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b2330;
  --muted: #54606f;
  --cream: #f5f2ee;
  --fog: #e7ecf2;
  --accent: #2b6cb0;
  --accent-dark: #1a4b7a;
  --sun: #f4b942;
  --slate: #2d3643;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.top-bar {
  background: var(--slate);
  color: #fff;
  padding: 12px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  background: #182030;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80")
    center/cover no-repeat;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  padding: 110px 0 90px;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-text h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-text p {
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 24px;
  border-radius: 18px;
  transform: translateY(30px);
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.3);
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  gap: 8px;
}

.btn.alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn:hover {
  background: #f7c868;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section.split {
  background: var(--fog);
}

.offset-block {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.offset-text {
  flex: 1 1 320px;
}

.offset-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.offset-media {
  flex: 1 1 320px;
  background: #cfd7e3;
  padding: 16px;
  border-radius: 20px;
  transform: translateX(40px);
}

.offset-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
}

.insight {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(24, 32, 48, 0.08);
}

.insight p {
  margin-top: 12px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(24, 32, 48, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #d6dee9;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(24, 32, 48, 0.12);
}

.form-panel .form-text {
  flex: 1 1 280px;
}

.form-panel form {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd5e0;
  font-size: 1rem;
  background: #fff;
}

.testimonials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 260px;
  background: #fff;
  border-left: 4px solid var(--sun);
  padding: 18px 20px;
  border-radius: 16px;
}

.business-model {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.business-model .panel {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(24, 32, 48, 0.08);
}

.panel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  background: #cfd7e3;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(27, 35, 48, 0.92);
  color: #fff;
  padding: 14px 0;
  z-index: 10;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta button {
  background: var(--sun);
  color: var(--ink);
}

.footer {
  background: #101622;
  color: #d8dde6;
  padding: 50px 0 60px;
}

.footer a {
  color: #d8dde6;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.page-hero {
  background: #1a2233;
  color: #fff;
  padding: 70px 0;
}

.page-hero .container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero img {
  width: 100%;
  max-width: 420px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  background: #c9d2df;
}

.content-block {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 0 80px;
}

.content-block p,
.content-block li {
  margin-bottom: 16px;
  color: var(--muted);
}

.content-block h2 {
  margin: 22px 0 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(24, 32, 48, 0.08);
}

.service-row img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #d6dee9;
}

.service-row .info {
  flex: 1 1 280px;
}

.contact-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(24, 32, 48, 0.08);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(24, 32, 48, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .hero-card {
    transform: none;
  }

  .offset-media {
    transform: none;
  }

  .service-row img {
    width: 100%;
    height: 220px;
  }
}
