:root {
  --bg: #f5f3ee;
  --fg: #1a1a18;
  --green: #1a3c2a;
  --green-light: #2a5c3a;
  --copper: #c97d3b;
  --muted: #6b6b5a;
  --border: #d8d4ca;
  --card-bg: #ffffff;
  --code-bg: #1a3c2a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green);
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-tag {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(26, 60, 42, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
  display: inline-block;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--green);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--copper);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  max-width: 120px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Agent Card Visual */
.hero-visual { display: flex; justify-content: center; }

.agent-card {
  background: var(--green);
  color: #f5f3ee;
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(26, 60, 42, 0.25);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 243, 238, 0.15);
}

.agent-avatar {
  width: 40px;
  height: 40px;
  background: rgba(245, 243, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-info { display: flex; flex-direction: column; }

.agent-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(245, 243, 238, 0.6);
  margin-top: 2px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.active {
  background: #6fcf97;
  box-shadow: 0 0 0 3px rgba(111, 207, 151, 0.3);
}

.agent-workflow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 243, 238, 0.15);
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.step-icon { flex-shrink: 0; }

.workflow-step.done { color: rgba(245, 243, 238, 0.5); }
.workflow-step.active { color: #f5f3ee; font-weight: 500; }
.workflow-step.pending { color: rgba(245, 243, 238, 0.3); }

.spinning svg {
  animation: spin 1.2s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.agent-quote {
  background: rgba(245, 243, 238, 0.07);
  border-radius: 12px;
  padding: 16px;
}

.quote-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(245, 243, 238, 0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quote-product {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--copper);
}

.quote-reason {
  display: block;
  font-size: 0.8rem;
  color: rgba(245, 243, 238, 0.5);
  margin-top: 4px;
}

/* Section labels */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green);
}

/* How it works */
.how-it-works {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.step-card {
  padding: 28px 0;
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Why SureDesk */
.why-suredesk {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--green);
  margin-bottom: 20px;
}

.why-intro {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  font-size: 0.92rem;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
}

.why-list strong { color: var(--green); }

/* Comparison card */
.comparison-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.comp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.comp-header span:last-child { color: var(--green); }

.comp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.comp-row:last-child { border-bottom: none; }

.comp-row span:first-child { color: var(--muted); }
.comp-row span:last-child { color: var(--green); font-weight: 500; }

.comp-vs { color: var(--border) !important; font-weight: 400 !important; }

/* Market proof */
.market-proof {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.market-header { margin-bottom: 56px; }

.market-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.market-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.market-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.market-stat {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}

.market-label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.market-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: var(--green);
  border-radius: 16px;
  color: #f5f3ee;
}

.market-quote blockquote {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: normal;
}

.market-quote cite {
  font-size: 0.82rem;
  color: rgba(245, 243, 238, 0.55);
  font-style: normal;
}

/* Objections */
.objections {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.obj-header { margin-bottom: 56px; }

.obj-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green);
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.obj-item h3 {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 10px;
}

.obj-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 100px 0;
  background: var(--green);
  color: #f5f3ee;
}

.closing-inner {
  text-align: center;
}

.closing-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f5f3ee;
  margin-bottom: 20px;
}

.closing-inner p {
  font-size: 1.15rem;
  color: rgba(245, 243, 238, 0.65);
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}

.footer-brand .logo {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  text-decoration: none;
  margin-bottom: 8px;
}

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

.footer-note p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  text-align: right;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .market-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-note p { text-align: left; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .comp-header span:first-child { display: none; }
  .comp-row { gap: 8px; font-size: 0.8rem; }
}
