:root {
  --plum: #582d65;
  --purple: #5c2797;
  --violet: #9b3796;
  --magenta: #c03d97;
  --gold: #c89431;
  --text: #151821;
  --muted: #4b5160;
  --border: #e6e8f0;
  --surface: #f6f7fb;
  --white: #ffffff;
  --radius: 12px;
  --gradient-primary: linear-gradient(135deg, #582d65 0%, #5c2797 55%, #c03d97 100%);
  --shadow-soft: 0 10px 30px rgba(21, 24, 33, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--white);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.skip-link:focus {
  left: 16px;
  z-index: 10;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--surface);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top left, rgba(192, 61, 151, 0.1), transparent 50%),
    radial-gradient(circle at 20% 40%, rgba(92, 39, 151, 0.1), transparent 45%);
}

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

.hero h1 {
  font-family: "Sora", "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.workflow-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 16px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workflow-card span {
  font-size: 12px;
  color: var(--muted);
}

.workflow-card strong {
  font-size: 14px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(200, 148, 49, 0.25), transparent 70%);
  top: -80px;
  right: -80px;
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-family: "Sora", "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section p.lead {
  color: var(--muted);
  max-width: 700px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 180px;
}

.card h3 {
  font-family: "Sora", "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(92, 39, 151, 0.08);
  color: var(--purple);
  font-weight: 600;
  font-size: 13px;
}

.list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.list li span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}

.step h4 {
  margin-top: 0;
  font-family: "Sora", "Montserrat", sans-serif;
}

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

.trust-item {
  border: 1px dashed rgba(92, 39, 151, 0.3);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

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

textarea {
  min-height: 120px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  width: 100%;
  text-align: left;
}

.checkbox label {
  margin: 0;
  font-weight: 500;
}

.checkbox input {
  width: auto;
  padding: 0;
}

.cta-panel {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  display: grid;
  gap: 20px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-panel .checkbox {
  color: rgba(255, 255, 255, 0.9);
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.logo-mark {
  width: 48px;
  height: 48px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: var(--white);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.motion-fade {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 60px;
  }

  .cta-panel {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
