:root {
  --bg: #f6f7fb;
  --ink: #1e2430;
  --muted: #5c677a;
  --accent: #2f6bff;
  --accent-dark: #244fc2;
  --warm: #ffe8d2;
  --cool: #e6f0ff;
  --sand: #f5f0ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0 12px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 60px 0 80px;
  background: #111827;
  color: #fefefe;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.asymmetric {
  background: var(--sand);
}

.section.cool {
  background: var(--cool);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .visual {
  flex: 1 1 320px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(20, 24, 36, 0.08);
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-stack .offset-card:nth-child(2) {
  margin-left: 24px;
}

.offset-stack .offset-card:nth-child(3) {
  margin-left: 48px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(20, 24, 36, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3d8e2;
  font-size: 15px;
  font-family: inherit;
}

label {
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 0;
}

.footer a {
  color: #93c5fd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #cbd5f5;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1d4ed8;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 50;
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background: #f8fafc;
  color: #111827;
  border-radius: 20px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
}

.page-hero {
  padding: 50px 0 40px;
  background: #e2ecff;
}

.page-hero .hero-title {
  font-size: 32px;
  margin-bottom: 6px;
}

.image-frame {
  background: #dbeafe;
  border-radius: 18px;
  overflow: hidden;
}

.frame-indigo {
  background: #e0e7ff;
}

.frame-mint {
  background: #d1fae5;
}

.frame-sand {
  background: #fff7ed;
}

.frame-sky {
  background: #e2e8f0;
}

.frame-slate {
  background: #cbd5f5;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-panel .overlay {
  background: rgba(17, 24, 39, 0.65);
  padding: 50px 0;
}

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .offset-stack .offset-card:nth-child(2),
  .offset-stack .offset-card:nth-child(3) {
    margin-left: 0;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    text-align: center;
  }
}
