:root {
  --n8v-ink: #0d1b2a;
  --n8v-ocean: #1b998b;
  --n8v-sand: #f5e9d4;
  --n8v-sun: #f28f3b;
  --n8v-clay: #c8553d;
  --n8v-mist: #f7f4ee;
  --n8v-stone: #2b2d42;
  --n8v-leaf: #3f7d5b;
  --n8v-shadow: rgba(13, 27, 42, 0.12);
  --n8v-radius-lg: 28px;
  --n8v-radius-md: 18px;
  --n8v-radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Gill Sans", "Trebuchet MS", Verdana, sans-serif;
  color: var(--n8v-ink);
  background: radial-gradient(circle at 15% 20%, #fff6df 0%, #f8efe2 35%, #eef3f2 70%, #e7edf1 100%);
  min-height: 100vh;
}

.n8v-page {
  position: relative;
  overflow-x: hidden;
}

.n8v-page::before,
.n8v-page::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 153, 139, 0.12), rgba(27, 153, 139, 0));
  top: -160px;
  left: -220px;
  z-index: 0;
}

.n8v-page::after {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(242, 143, 59, 0.12), rgba(242, 143, 59, 0));
  top: 520px;
  right: -180px;
  left: auto;
}

.n8v-container {
  width: min(1160px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.n8v-header {
  padding: 28px 0 10px;
}

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

.n8v-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.n8v-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--n8v-ocean), var(--n8v-sun));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

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

.n8v-nav-links a {
  text-decoration: none;
  color: var(--n8v-ink);
  font-weight: 600;
}

.n8v-nav-links a:hover {
  color: var(--n8v-ocean);
}

.n8v-hero {
  padding: 40px 0 70px;
}

.n8v-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.n8v-hero-text h1 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.n8v-hero-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.n8v-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.n8v-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 153, 139, 0.12);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.n8v-button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.n8v-button {
  background: var(--n8v-ocean);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(27, 153, 139, 0.25);
}

.n8v-button.n8v-secondary {
  background: transparent;
  color: var(--n8v-ink);
  border: 1px solid rgba(13, 27, 42, 0.2);
  box-shadow: none;
}

.n8v-hero-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.n8v-hero-media img {
  width: 100%;
  border-radius: var(--n8v-radius-md);
  box-shadow: 0 18px 40px var(--n8v-shadow);
  background: #fff;
}

.n8v-section {
  padding: 60px 0;
}

.n8v-section h2 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}

.n8v-section p {
  line-height: 1.6;
}

.n8v-surface-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.n8v-surface {
  background: #fff;
  border-radius: var(--n8v-radius-md);
  padding: 20px;
  box-shadow: 0 14px 30px var(--n8v-shadow);
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.n8v-surface h3 {
  margin-top: 4px;
}

.n8v-highlight {
  background: linear-gradient(135deg, rgba(245, 233, 212, 0.8), rgba(247, 244, 238, 0.9));
  border-radius: var(--n8v-radius-lg);
  padding: 32px;
  margin-top: 24px;
}

.n8v-steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.n8v-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.n8v-step span {
  background: var(--n8v-sun);
  color: #fff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.n8v-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.n8v-duo img {
  width: 100%;
  border-radius: var(--n8v-radius-md);
  box-shadow: 0 12px 28px var(--n8v-shadow);
  background: #fff;
}

.n8v-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.n8v-pillars .n8v-surface {
  position: relative;
  overflow: hidden;
}

.n8v-pillars .n8v-surface::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(27, 153, 139, 0.12);
  right: -40px;
  top: -40px;
}

.n8v-quote {
  font-size: 18px;
  font-style: italic;
}

.n8v-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.n8v-metric {
  padding: 18px;
  border-radius: var(--n8v-radius-md);
  background: rgba(13, 27, 42, 0.04);
  text-align: center;
}

.n8v-metric strong {
  font-size: 28px;
  display: block;
}

.n8v-faq {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.n8v-faq details {
  background: #fff;
  border-radius: var(--n8v-radius-md);
  padding: 14px 18px;
  box-shadow: 0 10px 20px var(--n8v-shadow);
}

.n8v-contact {
  background: var(--n8v-ink);
  color: #fff;
  border-radius: var(--n8v-radius-lg);
  padding: 32px;
}

.n8v-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.n8v-contact label {
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.n8v-contact input,
.n8v-contact select,
.n8v-contact textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--n8v-radius-sm);
  border: none;
  margin-bottom: 14px;
  font-family: inherit;
}

.n8v-contact button {
  background: var(--n8v-sun);
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.n8v-contact small {
  display: block;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.n8v-footer {
  padding: 36px 0 60px;
  font-size: 14px;
}

.n8v-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.n8v-footer-links a,
.n8v-footer button {
  color: var(--n8v-ink);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.n8v-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.n8v-reveal.n8v-visible {
  opacity: 1;
  transform: translateY(0);
}

.n8v-cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 18px;
  border-radius: var(--n8v-radius-md);
  box-shadow: 0 18px 40px var(--n8v-shadow);
  max-width: 320px;
  z-index: 10;
}

.n8v-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.n8v-cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.n8v-cookie-actions button.n8v-primary {
  background: var(--n8v-ocean);
  color: #fff;
}

.n8v-cookie-actions button.n8v-secondary {
  background: rgba(13, 27, 42, 0.08);
}

.n8v-cookie-panel {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.n8v-cookie-panel.n8v-open {
  display: flex;
}

.n8v-cookie-modal {
  background: #fff;
  padding: 24px;
  border-radius: var(--n8v-radius-md);
  width: min(480px, 92vw);
}

.n8v-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.n8v-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 12;
  font-size: 14px;
}

.n8v-chat button {
  background: var(--n8v-clay);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(200, 85, 61, 0.35);
}

.n8v-chat-panel {
  margin-top: 10px;
  background: #fff;
  border-radius: var(--n8v-radius-md);
  padding: 14px;
  width: 280px;
  box-shadow: 0 18px 36px var(--n8v-shadow);
  display: none;
}

.n8v-chat-panel.n8v-open {
  display: block;
}

.n8v-chat-message {
  background: rgba(27, 153, 139, 0.12);
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}

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

  .n8v-hero-media {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .n8v-hero-media {
    grid-template-columns: 1fr;
  }

  .n8v-cookie-banner {
    right: 12px;
    left: 12px;
    max-width: none;
  }

  .n8v-chat {
    left: 12px;
    right: 12px;
  }
}
