* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f24;
  --muted: #5b616b;
  --accent: #2f5cff;
  --accent-dark: #1b3ab2;
  --sand: #f5f1ea;
  --mist: #eef2f7;
  --pebble: #e4e0d9;
  --night: #11141a;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #efeff2;
}

.topbar .logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar .ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  background: var(--mist);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 64px 6vw 32px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 240px;
  height: 240px;
  background: rgba(47, 92, 255, 0.08);
  transform: rotate(12deg);
  border-radius: 36px;
}

.hero-text {
  flex: 1 1 360px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d6d9e0;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 360px;
  position: relative;
}

.hero-visual .image-frame {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #d8d1c5;
}

.offset-card {
  position: absolute;
  bottom: -26px;
  left: 8%;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(29, 31, 36, 0.12);
  max-width: 220px;
}

.offset-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  background: var(--night);
  color: #f2f3f7;
}

.section.bg-structure {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f4f5f9;
  position: relative;
}

.section.bg-structure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 23, 0.68);
}

.section.bg-structure > * {
  position: relative;
  z-index: 1;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.section-title h2 {
  margin: 0;
  font-size: 2rem;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel.highlight {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(17, 20, 26, 0.1);
}

.panel .mini {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.image-box {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #d1d8e8;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(29, 31, 36, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-image {
  height: 160px;
  background: #e9e4dc;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.service-card button {
  margin-top: auto;
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.insight {
  padding: 18px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(29, 31, 36, 0.08);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(29, 31, 36, 0.08);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(29, 31, 36, 0.1);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5dbe6;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(17, 20, 26, 0.18);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 6vw 80px;
  background: #0f1217;
  color: #c9d0dc;
  margin-top: auto;
}

.footer a {
  color: #c9d0dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #98a2b3;
  margin-top: 18px;
  max-width: 640px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(17, 20, 26, 0.15);
  padding: 16px 18px;
  max-width: 320px;
  z-index: 20;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-page {
  padding: 64px 6vw;
}

.legal-page h1 {
  margin-bottom: 16px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
