/* ─── Variables ───────────────────────────────────────────────── */
:root {
  --green-deep:  #0D2E1F;
  --green-mid:    #1A4A35;
  --green-light:  #2A6B4A;
  --amber:        #F5A623;
  --amber-light:  #F7B84B;
  --amber-dim:    rgba(245,166,35,0.15);
  --white:        #FAFAF7;
  --white-muted:  #E8EDE8;
  --text-body:    #D6E8D9;
  --text-muted:   #8FAF97;
  --text-dark:    #FAFAF7;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 24px rgba(13,46,31,0.4), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba(245,166,35,0.12);
}

/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--green-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--green-deep);
  margin-bottom: 56px;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--green-deep);
  padding: 0;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.03em;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
}

.headline-accent {
  color: var(--amber);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 440px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Agent card */
.agent-card {
  background: var(--green-mid);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agent-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.status-dot.active {
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

.agent-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.status-text {
  font-size: 0.7rem;
  color: #4ADE80;
  font-weight: 500;
}

.agent-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  line-height: 1.4;
}

.msg.incoming {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
}

.msg.outgoing {
  background: rgba(42,107,74,0.4);
  border: 1px solid rgba(42,107,74,0.5);
  flex-direction: row-reverse;
  text-align: right;
}

.msg.booked {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
}

.msg-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}

.msg-icon.sent { background: rgba(42,107,74,0.5); color: var(--green-light); }
.msg-icon.booked { background: rgba(74,222,128,0.15); color: #4ADE80; }

.msg-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.msg-sender {
  font-weight: 600;
  color: var(--white);
  font-size: 0.75rem;
}

.msg-text {
  color: var(--text-body);
  font-size: 0.78rem;
}

.msg-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.agent-ticker {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticker-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.ticker-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}

.ticker-fill {
  height: 100%;
  width: 78%;
  background: var(--amber);
  border-radius: 100px;
  animation: ticker-anim 3s ease-in-out infinite alternate;
}

@keyframes ticker-anim {
  from { width: 20%; }
  to { width: 92%; }
}

.ticker-stat {
  font-size: 0.72rem;
  color: var(--text-body);
  font-weight: 500;
}

/* ─── Stats ─────────────────────────────────────────────────────── */
.stats-section {
  background: var(--amber);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(13,46,31,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card {
  background: #F7B030;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(13,46,31,0.75);
  line-height: 1.45;
  margin-top: 4px;
}

.stat-context {
  font-size: 0.72rem;
  color: rgba(13,46,31,0.55);
  margin-top: 4px;
  font-style: italic;
}

/* ─── Process ──────────────────────────────────────────────────── */
.process-section {
  background: var(--white);
  padding: 96px 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 5px 12px;
  width: fit-content;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(13,46,31,0.65);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--amber-dim), var(--amber));
  margin-top: 28px;
  align-self: flex-start;
}

/* ─── Features ─────────────────────────────────────────────────── */
.features-section {
  background: var(--green-deep);
  padding: 96px 0;
}

.features-section .section-label {
  color: var(--amber);
}

.features-section .section-title {
  color: var(--white);
}

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

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(255,255,255,0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ─── Integrations ────────────────────────────────────────────── */
.integrations-section {
  background: var(--white-muted);
  padding: 80px 0;
}

.integrations-title {
  color: var(--green-deep);
  margin-bottom: 40px;
}

.integrations-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(13,46,31,0.12);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  box-shadow: 0 2px 8px rgba(13,46,31,0.06);
}

.integration-chip svg {
  color: var(--green-light);
}

.integrations-note {
  font-size: 0.82rem;
  color: rgba(13,46,31,0.5);
  max-width: 480px;
}

/* ─── Closing ──────────────────────────────────────────────────── */
.closing-section {
  background: var(--amber);
  padding: 96px 0;
}

.closing-inner {
  max-width: 700px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(13,46,31,0.75);
  margin-bottom: 36px;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 2px solid rgba(13,46,31,0.15);
  padding-top: 24px;
  max-width: 340px;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-deep);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.footer-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  max-width: 320px;
  text-align: right;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-visual {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    display: none;
  }

  .footer-note {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .integrations-strip {
    gap: 8px;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 16px;
  }

  .proof-divider {
    display: none;
  }
}