/* ALIKS Warm Light theme — teal + coral, Nunito + Inter */

:root {
  --color-bg: #fefdfb;
  --color-surface: #ffffff;
  --color-surface-warm: #f5f1ea;
  --color-surface-cream: #faf6ef;
  --color-text: #2a2a2a;
  --color-text-muted: #6b6259;
  --color-text-soft: #8c8278;
  --color-border: #e8e3d8;
  --color-border-soft: #f0ebe1;

  --color-primary: #2A9D8F;
  --color-primary-dark: #21867a;
  --color-primary-light: #e6f4f1;
  --color-accent: #E76F51;
  --color-accent-dark: #d35d3f;
  --color-accent-light: #fbe9e3;
  --color-warning: #E9C46A;
  --color-success: #52b788;

  --font-display: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

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

  --shadow-sm: 0 1px 3px rgba(42, 42, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(42, 42, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(42, 42, 42, 0.10);
  --shadow-xl: 0 24px 60px rgba(42, 42, 42, 0.15);

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { color: var(--color-text-muted); }

a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-primary-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ----- NAV ----- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: var(--color-text); display: flex; align-items: center; gap: 10px; }
.nav-brand-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--color-accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link { color: var(--color-text-muted); font-weight: 500; font-size: 0.95rem; }
.nav-link:hover { color: var(--color-primary); }
.nav-cta { background: var(--color-primary); color: white !important; padding: 10px 20px; border-radius: var(--radius-md); font-weight: 600; }
.nav-cta:hover { background: var(--color-primary-dark); color: white !important; }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  color: white;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(33, 134, 122, 0.85) 0%, rgba(42, 42, 42, 0.75) 60%, rgba(231, 111, 81, 0.6) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 { color: white; max-width: 900px; margin-bottom: 24px; }
.hero-sub { color: rgba(255, 255, 255, 0.92); font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 720px; margin-bottom: 40px; font-weight: 400; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; max-width: 800px; margin-top: 40px; }
.hero-stat { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-md); padding: 20px; backdrop-filter: blur(8px); }
.hero-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; color: white; }
.hero-stat-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); margin-top: 4px; }

/* ----- SECTIONS ----- */
section { padding: 90px 0; }
.section-eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; max-width: 800px; }
.section-lead { font-size: 1.1rem; color: var(--color-text-muted); max-width: 720px; margin-bottom: 60px; }

.section-warm { background: var(--color-surface-cream); }
.section-cream { background: var(--color-surface-warm); }

/* ----- METRICS GRID ----- */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.metric-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.metric-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.metric-label { font-size: 0.85rem; color: var(--color-text-soft); font-weight: 500; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.metric-before { font-size: 0.95rem; color: var(--color-text-muted); text-decoration: line-through; margin-bottom: 4px; }
.metric-after { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--color-primary); }
.metric-arrow { color: var(--color-accent); font-size: 1.5rem; margin: 4px 0; }

/* ----- PAIN POINTS ----- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .2s;
}
.pain-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); }
.pain-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.pain-card h3 { margin-bottom: 12px; }
.pain-card ul { list-style: none; padding: 0; }
.pain-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--color-border-soft);
}
.pain-card li:last-child { border-bottom: none; }
.pain-card li::before {
  content: '–';
  position: absolute; left: 0; top: 8px;
  color: var(--color-accent);
  font-weight: 700;
}

/* ----- ROADMAP / TIMELINE ----- */
.timeline { display: flex; flex-direction: column; gap: 32px; }
.timeline-quarter {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.timeline-quarter::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 6px; width: 100%;
}
.timeline-q1::before { background: linear-gradient(90deg, var(--color-primary), #5fbeb1); }
.timeline-q2::before { background: linear-gradient(90deg, #5fbeb1, var(--color-warning)); }
.timeline-q3::before { background: linear-gradient(90deg, var(--color-warning), var(--color-accent)); }
.timeline-q4::before { background: linear-gradient(90deg, var(--color-accent), #b5446f); }

.timeline-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }
.timeline-month { font-family: var(--font-display); font-weight: 900; color: var(--color-primary); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.timeline-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-top: 4px; }
.timeline-goal { color: var(--color-text-muted); margin-top: 8px; max-width: 600px; }
.timeline-roi {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.automation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.automation {
  background: var(--color-surface-cream);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all .2s;
}
.automation:hover { background: var(--color-surface); box-shadow: var(--shadow-sm); border-color: var(--color-primary); }
.automation-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.automation h4 { margin-bottom: 10px; font-size: 1.05rem; line-height: 1.3; }
.automation-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 12px; }
.automation-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; }
.automation-tag {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.automation-roi { color: var(--color-primary-dark); font-weight: 700; }

/* ----- ROI SUMMARY ----- */
.roi-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  color: white;
  position: relative;
  overflow: hidden;
}
.roi-block::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.3), transparent);
  border-radius: 50%;
}
.roi-block-inner { position: relative; z-index: 1; }
.roi-block h2 { color: white; margin-bottom: 16px; }
.roi-block p { color: rgba(255,255,255,0.9); }

.roi-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.roi-table td { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.roi-table td:last-child { text-align: right; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.roi-table tr:last-child td { border-bottom: none; padding-top: 20px; font-size: 1.2rem; }
.roi-table tr:last-child td:last-child { color: var(--color-warning); font-size: 1.5rem; }
.roi-total-label { font-weight: 800; }

.roi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.roi-stat { background: rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 24px; backdrop-filter: blur(8px); }
.roi-stat-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: white; }
.roi-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-top: 4px; }

/* ----- PROCESS STEPS ----- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.95rem; }

/* ----- WHY ALIKS ----- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature { padding: 28px; background: var(--color-surface); border-radius: var(--radius-lg); border-left: 4px solid var(--color-accent); }
.feature h4 { color: var(--color-primary-dark); margin-bottom: 8px; }

/* ----- CTA ----- */
.cta-section {
  background: linear-gradient(135deg, var(--color-surface-warm) 0%, var(--color-surface-cream) 100%);
  padding: 80px 0;
}
.cta-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--color-primary); color: white !important; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--color-primary) !important; border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary-light); }
.btn-accent { background: var(--color-accent); color: white !important; }
.btn-accent:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ----- CHECKLIST ----- */
.checklist-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 50px;
  margin-top: 40px;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin-top: 24px;
}
.checklist li {
  padding: 14px 16px 14px 48px;
  background: var(--color-surface-cream);
  border-radius: var(--radius-md);
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
}

/* ----- IMAGE GALLERY ----- */
.image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) { .image-feature { grid-template-columns: 1fr; } }
.image-feature-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.image-feature.reverse .image-feature-text { order: 2; }
.image-feature.reverse .image-feature-img { order: 1; }
.image-feature h3 { margin-bottom: 16px; font-size: 1.75rem; }
.image-feature p { margin-bottom: 16px; }

/* ----- FOOTER ----- */
.footer {
  background: #1f1d1a;
  color: #b8b3aa;
  padding: 50px 0 30px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer p { color: #b8b3aa; font-size: 0.9rem; }
.footer a { color: var(--color-warning); }
.footer-brand { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; color: white; }

@media print {
  .nav, .footer { display: none; }
  section { padding: 30px 0; page-break-inside: avoid; }
  .hero { min-height: 60vh; }
  .timeline-quarter { page-break-inside: avoid; }
}
