* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5f6c7b;
  --accent: #3b5bfd;
  --accent-warm: #ff7a45;
  --bg: #f7f7fb;
  --panel: #ffffff;
  --line: #dde2ea;
  --shadow: 0 18px 45px rgba(20, 25, 34, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}

.section.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px dashed var(--accent);
}

.offset-panel {
  background: var(--panel);
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.offset-panel.shift-right {
  margin-left: 8vw;
}

.offset-panel.shift-left {
  margin-right: 8vw;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.2rem;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 91, 253, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #0f172a;
  color: #fff;
  padding: 26px;
  border-radius: 20px;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.7);
}

.form-wrap {
  background: var(--panel);
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.floating-card {
  background: var(--panel);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-warm);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bg-panel {
  background: linear-gradient(120deg, rgba(59, 91, 253, 0.08), rgba(255, 122, 69, 0.08));
}

.two-tone {
  background: #111827;
  color: #f9fafb;
}

.two-tone .section-lead {
  color: rgba(249, 250, 251, 0.72);
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .hero-grid,
  .split-row,
  .card-grid,
  .pillars,
  .info-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-grid > * {
    flex: 1;
  }

  .split-row > * {
    flex: 1;
  }

  .card-grid > * {
    flex: 1;
  }

  .pillars > * {
    flex: 1;
  }

  .info-grid > * {
    flex: 1;
  }

  .hero-media {
    justify-content: center;
  }

  .offset-panel.shift-right {
    margin-left: 12vw;
  }

  .offset-panel.shift-left {
    margin-right: 12vw;
  }
}
