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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
}

a { color: inherit; }

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

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  z-index: 50;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: #2563eb; }

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

.nav-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #0f172a; }
.nav-links a.active { color: #2563eb; }

.nav-cta {
  background: #2563eb;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover { background: #1d4ed8; }

/* ── Buttons ── */
.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover { background: #1d4ed8; }

.btn-secondary {
  background: #fff;
  color: #1e293b;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover { background: #f8fafc; border-color: #cbd5e1; }

.btn-secondary--light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary--light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Tags ── */
.hero-tag {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ── Page hero (image banner used on all inner pages) ── */
.page-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 64px;
}

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

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.page-hero .hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Generic section ── */
.section {
  padding: 80px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.section--tight { padding: 48px 64px; }

.section-head { max-width: 640px; margin-bottom: 48px; }

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section .lead {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 560px;
}

.eyebrow {
  display: inline-block;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Stats ── */
.stats {
  display: flex;
  gap: 64px;
  padding: 60px 64px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 4px;
}

.stat p { color: #64748b; font-size: 0.9rem; font-weight: 500; }

/* ── Card grids (services / case studies / insights) ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.card p { color: #64748b; font-size: 0.92rem; line-height: 1.6; }

.card .card-link {
  display: inline-block;
  margin-top: 16px;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Offering detail (service pages) ── */
.offering-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
}

.panel h3 { font-size: 1.05rem; color: #0f172a; margin-bottom: 16px; }

.checklist { list-style: none; }
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #475569;
  font-size: 0.95rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.prose p { color: #475569; margin-bottom: 16px; max-width: 720px; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: #2563eb;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.12);
}

.pricing-card h3 { font-size: 1.2rem; color: #0f172a; margin-bottom: 6px; }
.pricing-card .term { color: #64748b; font-size: 0.85rem; margin-bottom: 18px; }
.pricing-card .price { font-size: 1.5rem; font-weight: 700; color: #2563eb; margin-bottom: 18px; }
.pricing-card p { color: #475569; font-size: 0.92rem; margin-bottom: 20px; }
.pricing-card .btn-primary, .pricing-card .btn-secondary { margin-top: auto; text-align: center; }

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 28px;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.team-card h3 { font-size: 1.1rem; color: #0f172a; margin-bottom: 2px; }
.team-card .role { color: #2563eb; font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: #64748b; font-size: 0.9rem; }

/* ── Testimonial ── */
.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 48px;
  max-width: 720px;
}

.testimonial-card blockquote {
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-name { font-weight: 600; color: #0f172a; font-size: 0.95rem; }
.testimonial-role { color: #64748b; font-size: 0.85rem; }

/* ── Case studies ── */
.case-meta {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.case-result {
  margin-top: 16px;
  font-weight: 700;
  color: #0f172a;
}

/* ── Insights / articles ── */
.article-card .article-tag {
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.article-card .article-date { color: #94a3b8; font-size: 0.8rem; margin-top: 14px; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-list { list-style: none; }
.contact-list li { margin-bottom: 22px; }
.contact-list .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
}
.contact-list .value { font-size: 1.05rem; color: #0f172a; font-weight: 500; }
.contact-list a { color: #2563eb; text-decoration: none; }

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 18px;
  background: #f8fafc;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid #2563eb; border-color: #2563eb; }

/* ── CTA band ── */
.cta { padding: 80px 64px; max-width: 1200px; margin: 0 auto; }

.cta-card {
  background: #0f172a;
  border-radius: 16px;
  padding: 64px;
  text-align: center;
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-card .btn-primary { background: #2563eb; padding: 16px 40px; font-size: 1rem; }

/* ── Footer ── */
footer {
  padding: 40px 64px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

footer a { color: #64748b; text-decoration: none; }
footer a:hover { color: #0f172a; }
.footer-links { display: flex; gap: 24px; }

/* ── Content figures (real <img> for extraction) ── */
.figure {
  margin: 8px 0 32px;
}
.figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: block;
}
.figure figcaption {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.85rem;
}

/* ── Download button + row ── */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-download:hover { border-color: #2563eb; box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1); }
.btn-download .file-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2563eb;
  background: #eff6ff;
  padding: 3px 8px;
  border-radius: 5px;
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

/* ── Resource / asset cards ── */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.asset-card {
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
}
.asset-card .file-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2563eb;
  background: #eff6ff;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 14px;
}
.asset-card h3 { font-size: 1.05rem; color: #0f172a; margin-bottom: 8px; }
.asset-card p { color: #64748b; font-size: 0.9rem; flex: 1; margin-bottom: 18px; }

/* ── ROI calculator ── */
.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.calc-form .field { margin-bottom: 20px; }
.calc-form label { display: block; font-weight: 600; color: #334155; font-size: 0.9rem; margin-bottom: 6px; }
.calc-form input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #f8fafc;
}
.calc-form input:focus { outline: 2px solid #2563eb; border-color: #2563eb; }
.calc-results {
  background: #0f172a;
  border-radius: 14px;
  padding: 32px;
  color: #fff;
}
.calc-results .result { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.calc-results .result:last-of-type { border-bottom: none; }
.calc-results .result .label { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.calc-results .result .value { font-size: 1.9rem; font-weight: 700; color: #60a5fa; }
.calc-note { color: #94a3b8; font-size: 0.8rem; margin-top: 16px; }

@media (max-width: 900px) {
  .asset-grid { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-3, .pricing-grid, .team-grid { grid-template-columns: 1fr; }
  .grid-2, .offering-cols, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 18px; flex-wrap: wrap; }
  .page-hero { padding: 80px 24px; }
  .page-hero h1 { font-size: 2.1rem; }
  .section { padding: 48px 24px; }
  .stats { flex-direction: column; gap: 24px; padding: 40px 24px; }
  .cta { padding: 40px 24px; }
  .cta-card { padding: 40px 24px; }
  footer { padding: 24px; flex-direction: column; gap: 16px; }
}
