/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EFEB;
  --fg: #111111;
  --fg-muted: #6B6B6B;
  --fg-subtle: #9A9A9A;
  --accent: #0D9488;
  --accent-light: #CCFBF1;
  --accent-dark: #0F766E;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --surface: #FFFFFF;
  --border: #E5E5DF;
  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  backdrop-filter: blur(16px);
  background: rgba(250, 250, 248, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,148,136,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,148,136,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  bottom: 100px;
  left: -50px;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-light);
  border: 1px solid rgba(13,148,136,0.2);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* ===== HERO WIDGET ===== */
.hero-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.06),
    0 20px 60px rgba(0,0,0,0.08);
}

.widget-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
}

.widget-dots {
  display: flex;
  gap: 6px;
}

.widget-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-subtle);
  opacity: 0.4;
}

.widget-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.widget-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.widget-call {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--accent-light);
  border-radius: var(--radius);
  border: 1px solid rgba(13,148,136,0.15);
}

.widget-call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-8deg); }
  50%, 100% { transform: rotate(0deg); }
}

.widget-call-number {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  font-family: var(--font-head);
}

.widget-call-type {
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 500;
}

.widget-conversation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-msg {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 85%;
}

.widget-msg-ai {
  background: var(--bg-alt);
  color: var(--fg);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.widget-msg-user {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.widget-msg-confirm {
  background: var(--accent-light) !important;
  border: 1px solid rgba(13,148,136,0.2);
}

.widget-msg-dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 2px;
  opacity: 0.7;
  display: inline-block;
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(13,148,136,0.05);
  border-radius: 8px;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 500;
}

.widget-status-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-head);
  margin-bottom: 20px;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 80px 40px;
  background: var(--fg);
  color: white;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-stat {
  flex: 1;
  padding: 40px 32px;
  text-align: center;
}

.problem-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

.problem-stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--amber);
  margin-bottom: 8px;
}

.problem-stat-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

.problem-body {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 40px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 80px 40px;
  background: var(--bg-alt);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.outcomes-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.outcome {
  background: var(--surface);
  padding: 40px 32px;
  text-align: center;
}

.outcome-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.outcome-note {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 40px;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.pricing-card-main {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pricing-tier {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-head);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.pricing-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.pricing-period {
  font-size: 16px;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-side {
  background: var(--bg);
}

.pricing-card-side .pricing-num {
  font-size: 40px;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-subtle);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  background: var(--fg);
  color: white;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
}

.closing-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.closing-ring-1 { width: 300px; height: 300px; }
.closing-ring-2 { width: 450px; height: 450px; }
.closing-ring-3 { width: 600px; height: 600px; }

.closing-headline {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  margin-bottom: 28px;
}

.closing-body {
  position: relative;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-subtle);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .problem { padding: 60px 20px; }
  .problem-stats { flex-direction: column; }
  .problem-stat-divider { width: 80%; height: 1px; }
  .services { padding: 60px 20px; }
  .outcomes { padding: 60px 20px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome { padding: 24px 16px; }
  .outcome-num { font-size: 36px; }
}