*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fafaf8;
  --bg2: #f4f4f0;
  --white: #ffffff;
  --text: #1a1a18;
  --text-muted: #6b7280;
  --accent: #2d6a4f;
  --accent2: #52b788;
  --accent-light: #d8f3dc;
  --border: #e5e7e0;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--accent);
  color: white;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-nav:hover { background: #245c43; }

/* HERO */
.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 85vh;
}

.hero-content { flex: 1.2; }

.hero-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #245c43; transform: translateY(-1px); }

.btn-ghost {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--accent); }

.hero-aside { flex: 0.8; }

.metrics-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.metric { text-align: center; flex: 1; }
.metric-val {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.metric-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.badge-item {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* SOCIAL PROOF */
.social-proof {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.social-proof .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.proof-logos {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-logos span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #9ca3af;
  white-space: nowrap;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* SECTION LABEL */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* FEATURES */
.features {
  padding: 7rem 0;
  background: var(--bg);
}
.features h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}
.feature {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: white;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  z-index: 1;
  position: relative;
}
.feature-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 7rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.process-inner {
  display: flex;
  gap: 6rem;
  align-items: center;
}
.process-text { flex: 1; }
.process-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
}
.process-steps { display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.process-step h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.process-visual { flex: 0 0 360px; }
.dashboard-mock {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.mock-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #28ca41; }
.mock-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.5rem;
}
.mock-body { padding: 1rem; }
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mock-row:last-of-type { border-bottom: none; }
.mock-name { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.mock-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mock-status.live { background: #d1fae5; color: #065f46; }
.mock-status.new { background: #dbeafe; color: #1e40af; }
.mock-stats {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}
.mock-stat-item { text-align: center; flex: 1; }
.mock-stat-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1;
}
.mock-stat-item span { font-size: 0.7rem; color: var(--text-muted); }

/* CONTACT */
.contact {
  padding: 7rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.contact-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-perks li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent2); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form select { cursor: pointer; }
.contact-form textarea { resize: vertical; }

/* EMBEDDED FORM */
.embed-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.embed-form-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent2) #f0f0ee;
}
.embed-form-scroll::-webkit-scrollbar { width: 6px; }
.embed-form-scroll::-webkit-scrollbar-track { background: #f5f5f3; }
.embed-form-scroll::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }
.scroll-form-btn {
  display: block;
  width: 100%;
  background: #f5f9f7;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem;
  cursor: pointer;
  transition: background 0.15s;
}
.scroll-form-btn:hover { background: #e8f5ef; }

/* FOOTER */
.footer {
  background: var(--text);
  color: white;
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { color: white; }
.footer-brand .logo span { color: var(--accent2); }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.75rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 4rem;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

@media (max-width: 1024px) {
  .hero { flex-direction: column; min-height: auto; }
  .process-inner { flex-direction: column; gap: 3rem; }
  .process-visual { flex: auto; width: 100%; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { padding: 1.5rem; }
  .metrics-card { flex-direction: column; }
  .metric-sep { width: 100%; height: 1px; }
  .features-grid { grid-template-columns: 1fr; }
}
