@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --card: #ffffff;
  --card-hover: #f8fafc;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --text: #1a1a1a;
  --text-sub: #4a5568;
  --text-dim: #718096;
  --text-muted: #a0aec0;
  --accent: #1a1a1a;
  --accent-light: #374151;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --green-dim: rgba(22,163,74,0.08);
  --red: #dc2626;
  --red-bg: #fef2f2;
  --orange: #ea580c;
  --cyan: #0891b2;
  --pink: #db2777;
  --radius: 12px;
  --radius-sm: 12px;
  --max-w: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: underline; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ========= LAYOUT ========= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--surface); }
.section-gradient { background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.01) 100%); }
.section-gray { background: var(--surface); }
.section-white { background: var(--bg); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ========= TOPBAR / NAV (floating pill) ========= */
.topbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0 28px;
  height: 54px;
  width: calc(100% - 32px);
  max-width: var(--max-w);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.topbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-color: #cbd5e0;
}

.topbar-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-logo span { color: var(--text-sub); }
.topbar-logo svg { vertical-align: middle; margin-right: 4px; }

.topbar-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.topbar-cta:hover { background: var(--accent-light); text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ========= ABSOLUTE NAV (index page) ========= */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.nav-link:hover { color: var(--text); text-decoration: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #fff;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: inherit;
}
.nav-cta:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,0.1); text-decoration: none; }

/* ========= TYPOGRAPHY ========= */
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

/* .grad is now just regular dark text — no gradient */
h1 .grad,
.grad {
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-sub);
  line-height: 1.6;
  max-width: 640px;
}

.subtitle-sm {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.6;
  max-width: 560px;
}

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #E8F0FF 0%, #F5F9FF 50%, #FFFFFF 100%);
  text-align: center;
}

.hero-content {
  max-width: var(--max-w);
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-centered,
.hero-centered .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered .subtitle,
.hero-centered .subtitle-sm {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .btn-group { justify-content: center; }
.hero-centered .hero-badges { justify-content: center; }
.hero-centered .hero-stats { justify-content: center; }

.hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero .sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 16px;
}

/* Glow effects — soft light blobs for hero */
.hero .glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero .glow-1 {
  width: 600px;
  height: 600px;
  background: #c7d2fe;
  top: -150px;
  right: -120px;
  filter: blur(180px);
  opacity: 0.3;
}
.hero .glow-2 {
  width: 400px;
  height: 400px;
  background: #bfdbfe;
  bottom: -120px;
  left: -100px;
  filter: blur(160px);
  opacity: 0.25;
}
.hero .glow-3 {
  width: 300px;
  height: 300px;
  background: #ddd6fe;
  top: 20%;
  left: 30%;
  filter: blur(200px);
  opacity: 0.15;
}
.hero .glow-4 {
  width: 250px;
  height: 250px;
  background: #a5f3fc;
  bottom: 10%;
  right: 20%;
  filter: blur(180px);
  opacity: 0.12;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.02);
  color: var(--text-sub);
}

.badge-green { border-color: rgba(22,163,74,0.3); color: var(--green); background: var(--green-bg); }
.badge-accent { border-color: var(--border); color: var(--text-sub); background: rgba(0,0,0,0.03); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value,
.hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.2); text-decoration: none; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #cbd5e0;
}
.btn-outline:hover { transform: scale(1.04); border-color: var(--text); text-decoration: none; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; justify-content: center; }

/* Legacy dark-style button aliases */
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 9999px;
  background: var(--text); color: #fff;
  font-size: 17px; font-weight: 600; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.2s; text-decoration: none; font-family: inherit;
}
.btn-dark:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.2); text-decoration: none; color: #fff; }

.btn-light {
  display: inline-flex; align-items: center;
  padding: 16px 32px; border-radius: 9999px;
  background: transparent; color: var(--text);
  font-size: 17px; font-weight: 600;
  border: 1px solid #cbd5e0; cursor: pointer;
  transition: all 0.2s; text-decoration: none; font-family: inherit;
}
.btn-light:hover { transform: scale(1.04); border-color: var(--text); text-decoration: none; }

/* ========= CARDS ========= */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  background: var(--surface);
}

.card-icon-red { background: var(--red-bg); }
.card-icon-green { background: var(--green-bg); }
.card-icon-cyan { background: #ecfeff; }
.card-icon-orange { background: #fff7ed; }
.card-icon-pink { background: #fdf2f8; }
.card-icon-accent { background: var(--surface); }

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}

.card-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ========= UNIVERSAL CARD ========= */
.u-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.u-card:hover {
  border-color: #cbd5e0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* ========= PAIN CARDS ========= */
.pain-card {
  background: var(--red-bg);
  border: 1px solid rgba(220,38,38,0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.pain-card .card-icon { background: rgba(220,38,38,0.08); }

/* ========= STEPS / HOW IT WORKS ========= */
.steps {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

.step + .step { border-top: 1px dashed var(--border); }

.step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content { flex: 1; }
.step-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.step-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ========= COMPARISON TABLE ========= */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comp-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 2px solid var(--text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.comp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.comp-table tr:hover td { background: rgba(0,0,0,0.02); }

.comp-table .us { background: rgba(0,0,0,0.03); font-weight: 600; color: var(--text); }

.check { color: var(--green); font-weight: 700; }
.cross { color: var(--text-muted); }
.partial { color: var(--orange); }

/* ========= FEATURES ROW ========= */
.feature-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.feature-chip:hover { border-color: #cbd5e0; }
.feature-chip .fi { font-size: 16px; }

/* ========= QUOTE / EMPHASIS ========= */
.emphasis {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  padding: 24px 28px;
  border-left: 3px solid var(--text);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 700px;
  color: var(--text);
}

.emphasis strong { color: var(--text); font-weight: 700; }

/* ========= TRUST ROW ========= */
.trust-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item { text-align: center; }

.trust-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}

.trust-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ========= CTA SECTION ========= */
.cta-section {
  padding: 80px 0;
  background: var(--surface);
}

.cta-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 { margin-bottom: 12px; }

/* ========= FORM STYLING ========= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus { border-color: var(--text); }
.form-input::placeholder { color: var(--text-muted); }

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ========= FAQ ========= */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.open .faq-q::after { content: '\2212'; }

.faq-a {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}

.faq-item.open .faq-a { display: block; }

/* ========= FOOTER ========= */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.footer-brand span { color: var(--text-sub); }

.footer-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); text-decoration: none; }
.footer-links a.active { color: var(--text); font-weight: 600; }

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-muted);
}

/* ========= FLOW DIAGRAM ========= */
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 24px 0;
}

.flow-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  min-width: 130px;
}

.flow-box-title { font-weight: 700; font-size: 14px; }
.flow-box-desc { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.flow-arrow {
  font-size: 20px;
  color: var(--text-muted);
  margin: 0 10px;
  flex-shrink: 0;
}

.flow-box-accent { border-color: var(--text); }

/* ========= PRICING EXAMPLE ========= */
.price-example {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 440px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.price-row + .price-row { border-top: 1px solid var(--border); }

.price-row.total {
  font-weight: 700;
  font-size: 16px;
  border-top: 2px solid var(--text);
  padding-top: 12px;
  margin-top: 4px;
}

.price-row .dim { color: var(--text-dim); }
.price-row .accent { color: var(--text); font-weight: 600; }
.price-row .green { color: var(--green); }

/* ========= CAROUSEL ========= */
.carousel-section {
  padding: 0 0 80px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 24px 24px 16px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-fade-l,
.carousel-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.carousel-fade-l { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.carousel-fade-r { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

/* Auto-scrolling carousel */
@keyframes scroll-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-track-auto {
  display: flex;
  gap: 20px;
  animation: scroll-carousel 40s linear infinite;
  padding: 24px 0;
}
.carousel-track-auto:hover { animation-play-state: paused; }

/* ========= TASK CARDS (carousel items) ========= */
.task-card {
  flex-shrink: 0;
  width: 320px;
  height: 200px;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.task-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.12); text-decoration: none; }

.task-card-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.task-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.task-card-1 { background: linear-gradient(135deg, #1e293b, #475569); }
.task-card-2 { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.task-card-3 { background: linear-gradient(135deg, #0f766e, #2dd4bf); }
.task-card-4 { background: linear-gradient(135deg, #059669, #34d399); }
.task-card-5 { background: linear-gradient(135deg, #ea580c, #fb923c); }
.task-card-6 { background: linear-gradient(135deg, #db2777, #f472b6); }
.task-card-7 { background: linear-gradient(135deg, #1d4ed8, #60a5fa); }

/* ========= JOB-TO-BE-DONE CARDS ========= */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.job-grid .u-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-when {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.job-want { font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--text); margin-bottom: 4px; }
.job-so { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ========= ALTERNATIVE COMPARISON CARDS ========= */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.alt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.alt-card:hover { border-color: #cbd5e0; }

.alt-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.alt-problem { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.alt-verdict { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-top: 10px; font-style: italic; }

/* ========= VERSUS COMPARISON ========= */
.vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
}

.vs-side {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.vs-side h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }

.vs-vs {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  align-self: center;
}

.vs-list {
  list-style: none;
  font-size: 13px;
}
.vs-list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-sub);
}

.vs-bad { color: var(--red); font-weight: 600; }
.vs-good { color: var(--green); font-weight: 600; }

/* ========= OUTCOME STATS ========= */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.outcome-num { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.outcome-label { font-size: 13px; color: var(--text-sub); }

/* ========= PRICING CARDS ========= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.price-card:hover { border-color: #cbd5e0; box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }

.price-card.featured {
  background: var(--card);
  border-color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.price-head { padding: 28px 24px 20px; }

.price-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sub);
  line-height: 1.4;
}

.price-body {
  border-top: 1px dashed var(--border);
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-amount span { font-size: 18px; font-weight: 400; color: var(--text-muted); }

.price-unit { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.price-features {
  text-align: left;
  list-style: none;
  margin-top: 20px;
  flex: 1;
}
.price-features li {
  font-size: 13px;
  color: var(--text-sub);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { padding: 80px 20px 48px; min-height: auto; }
  .section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .flow-box { min-width: 100px; padding: 10px 14px; }
  .vs-row { grid-template-columns: 1fr; }
  .vs-vs { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .job-grid { grid-template-columns: 1fr 1fr; }
  .alt-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav { padding: 16px 20px; }
  .task-card { width: 280px; height: 180px; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { padding: 0 20px; width: calc(100% - 24px); }
  .container { padding: 0 16px; }
  .comp-table { font-size: 12px; }
  .comp-table th, .comp-table td { padding: 8px 10px; }
  .trust-row { gap: 20px; }
  .job-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-num, .hero-stat-value { font-size: 28px; }
  .nav { padding: 16px; }
  .task-card { width: 260px; height: 170px; }
  .carousel-fade-l,
  .carousel-fade-r { width: 80px; }
}

/* ========= ANIMATIONS ========= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= TAG ========= */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.tag-green { background: var(--green-bg); color: var(--green); }
.tag-accent { background: var(--surface); color: var(--text); }
.tag-orange { background: #fff7ed; color: var(--orange); }
