@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f6f5f2;
  --text: #1b1d1f;
  --muted: #5e646b;
  --accent: #2f6df6;
  --accent-dark: #1f4bb0;
  --soft: #ffffff;
  --highlight: #f3d9b1;
  --shadow: 0 20px 45px rgba(27, 29, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}

.link-cta {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 2px solid transparent;
}

.link-cta:hover {
  border-color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.hero {
  padding: 48px 6vw 80px;
  background: linear-gradient(120deg, #ffffff 0%, #eef3ff 45%, #f4f1ea 100%);
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 560px;
}

.hero-media {
  flex: 1 1 280px;
  position: relative;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--highlight);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section {
  padding: 80px 6vw;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.section-story {
  background: #fff;
}

.story-text {
  flex: 1 1 320px;
}

.story-image {
  flex: 1 1 260px;
}

.section-pressure {
  background: #1b1d1f;
  color: #fff;
}

.stagger {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pressure-card {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 18px;
}

.section-insight {
  background: var(--bg);
}

.steps {
  padding-left: 20px;
  color: var(--muted);
}

.section-trust {
  background: #fff;
}

.trust-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-item {
  flex: 1 1 240px;
}

.section-testimonials {
  background: linear-gradient(120deg, #ffffff, #f1f4ff);
}

.section-testimonials .section-inner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--muted);
}

.section-benefits {
  background: #fff;
}

.benefit-list ul {
  padding-left: 18px;
}

.section-pricing {
  background: #1f2330;
  color: #fff;
}

.pricing-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.pricing-card {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 18px;
}

.pricing-card.featured {
  background: #fff;
  color: var(--text);
  transform: translateY(-12px);
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 16px 0;
}

.section-form {
  background: #fff;
}

.form-card {
  flex: 1 1 280px;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-form input,
.service-form select {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #d0d4da;
  font-size: 1rem;
}

.service-form button[disabled],
.service-form input[disabled] {
  opacity: 0.6;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.section-urgency {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  color: #fff;
}

.urgency-card {
  background: rgba(0, 0, 0, 0.55);
  padding: 36px;
  border-radius: 22px;
  max-width: 620px;
}

.footer {
  background: #101214;
  color: #fff;
  padding: 40px 6vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 360px;
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 80px 6vw 40px;
  background: #fff;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.content-section {
  padding: 40px 6vw 80px;
}

.content-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-panel {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 860px) {
  .hero-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .pricing-card.featured {
    transform: none;
  }
}
