:root {
  --bg: #f6f3ee;
  --bg-2: #eef4f2;
  --ink: #1b1b1b;
  --muted: #5a646b;
  --accent: #0d6b6b;
  --accent-2: #f2b705;
  --card: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "Unbounded", "Manrope", sans-serif;
  letter-spacing: -0.01em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 1.8vw + 1rem, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
}

li {
  margin-bottom: 0.4rem;
}

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

.bg-glow {
  position: fixed;
  inset: -20% -20% auto auto;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, rgba(13, 107, 107, 0.18), rgba(242, 183, 5, 0.12), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.site-header {
  padding: 1.6rem 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(246, 243, 238, 0.7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-text {
  display: grid;
}

.brand-title {
  font-weight: 700;
}

.brand-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  padding: 4rem 0 3rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 107, 107, 0.08);
  color: var(--accent);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 2rem;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.metric-value {
  font-weight: 700;
  display: block;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card.highlight {
  border: 1px solid rgba(13, 107, 107, 0.2);
}

.card.soft {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.card-note {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.section {
  padding: 3rem 0;
}

.section-title {
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.steps {
  display: grid;
  gap: 1.2rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

.step-index {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.form-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.form-card {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(13, 107, 107, 0.25);
  border-color: rgba(13, 107, 107, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 32px rgba(13, 107, 107, 0.25);
}

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

.btn.outline {
  border-color: rgba(13, 107, 107, 0.4);
  color: var(--accent);
  background: transparent;
}

.btn.ghost {
  background: rgba(13, 107, 107, 0.08);
  color: var(--accent);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: var(--accent);
}

.form-status[data-state="error"] {
  color: #b42318;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hp {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.22s;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
  }
  .btn {
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .metric {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
  }
}
