*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1d;
  --muted: #5d636f;
  --accent: #6a3df0;
  --accent-soft: #efe9ff;
  --sand: #f6f1ea;
  --sea: #e5f3f7;
  --line: #d7dbe2;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbfc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  overflow: hidden;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 0;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.9rem;
}

.nav-tagline {
  margin-left: 6vw;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 6vw 72px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: var(--accent-soft);
  border-radius: 40% 20% 30% 50%;
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(37, 12, 92, 0.28);
  z-index: 20;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section.light {
  background: var(--sand);
}

.section.sea {
  background: var(--sea);
}

.texture-bg {
  background-image: url("../img/texture.svg");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(20, 24, 30, 0.08);
}

.offset-card.right {
  margin-left: 12%;
}

.offset-card.left {
  margin-right: 12%;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.legal {
  color: var(--muted);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
}

.cookie-btn.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.thanks-highlight {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-weight: 600;
}

@media (min-width: 800px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.2;
  }

  .hero-visual {
    flex: 0.8;
    margin-left: 8%;
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .mini-grid {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .stats {
    flex-direction: row;
    gap: 32px;
  }

  .form-shell {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .form-shell > div {
    flex: 1;
  }
}
