:root {
  --bg: #f7f4ec;
  --ink: #111827;
  --muted: #5b6470;
  --teal: #0f3d3e;
  --teal-soft: #155e63;
  --coral: #ff6b4a;
  --sand: #f0e5d3;
  --card: #ffffff;
  --shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 220, 187, 0.6), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(191, 227, 221, 0.6), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255, 239, 211, 0.7), transparent 55%);
  z-index: -1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 10;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--teal);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.5px;
}

.brand-name {
  margin: 0;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.brand-sub {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: var(--teal);
}

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

.primary,
.secondary,
.ghost {
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 20px rgba(15, 61, 62, 0.25);
}

.secondary {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
}

.ghost {
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(15, 61, 62, 0.3);
}

.primary:hover,
.secondary:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

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

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-soft);
  font-weight: 700;
  font-size: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}

.trust-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--teal);
  font-weight: 600;
}

.trust-value {
  display: block;
  font-size: 1rem;
}

.trust-label {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.full {
  width: 100%;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--sand);
  border-radius: 40px;
  margin: 0 4vw;
}

.section-header h2 {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

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

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

.service-card,
.proof-card,
.step-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow);
}

.step-number {
  font-weight: 700;
  color: var(--coral);
  font-size: 1.2rem;
}

.cta {
  margin: 0 6vw 80px;
  padding: 40px;
  background: linear-gradient(120deg, #0f3d3e 0%, #156c6f 100%);
  border-radius: 30px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 30px 6vw 60px;
  background: #0b2f30;
  color: white;
}

.site-footer a {
  color: #f5f2ea;
}

.assistant-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--coral);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(255, 107, 74, 0.35);
  cursor: pointer;
  z-index: 20;
}

.assistant-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.assistant-overlay.active {
  display: flex;
}

.assistant-panel {
  background: var(--card);
  width: min(560px, 92vw);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #f7fbfa;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.assistant-title {
  margin: 0;
  font-weight: 700;
}

.assistant-sub {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.assistant-close {
  font-size: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.assistant-body {
  padding: 24px;
}

.assistant-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.assistant-bar {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  margin-left: 12px;
  overflow: hidden;
}

.assistant-bar div {
  height: 100%;
  background: var(--teal);
  width: 0;
  transition: width 0.3s ease;
}

.assistant-question {
  font-weight: 700;
  margin-bottom: 12px;
}

.assistant-input select,
.assistant-input input,
.assistant-input textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
}

.assistant-input textarea {
  min-height: 90px;
}

.assistant-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.assistant-actions {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px 24px;
}

.assistant-status {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--teal-soft);
}

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

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 40px;
  }

  .cta {
    margin: 0 4vw 60px;
  }

  .assistant-actions {
    flex-direction: column;
    gap: 12px;
  }
}
