/* ===== PAGE-SPECIFIC STYLES ===== */
/* Organized by page/component type. Each section prefixed with page name. */

/* ─── MISSING ICON SVG SIZES (inherited from stripped inline CSS) ─── */
.icon-wrap { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-wrap svg { width: 24px; height: 24px; }
.platform-item svg { width: 24px; height: 24px; flex-shrink: 0; }
.cc-feat svg { width: 16px; height: 16px; flex-shrink: 0; }
.pf svg { width: 16px; height: 16px; flex-shrink: 0; }
.included-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── HERO (index.html) ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFCFE 0%, #F3F7FB 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62,123,250,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,123,250,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,123,250,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute; bottom: -10%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-left { max-width: 640px; }
.hero-left h1 { margin-bottom: 24px; }
.hero-left .body-lg { margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 48px; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-family: 'Satoshi', sans-serif; font-size: 2rem; font-weight: 900; color: #0B1320; }
.stat-label { font-size: 0.85rem; color: #64748B; }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  position: relative; padding: 140px 0 80px;
  background: linear-gradient(180deg, #FAFCFE, #F3F7FB);
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62,123,250,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,123,250,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero .hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,123,250,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #94A3B8; margin-bottom: 24px; }
.breadcrumb a { color: #64748B; transition: color 0.2s; }
.breadcrumb a:hover { color: #3E7BFA; }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero-content h1 { margin-bottom: 20px; }
.page-hero-content .body-lg { max-width: 600px; color: #64748B; }

/* ─── HOW IT WORKS ─── */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 40px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #E2E8F0 0%, #3E7BFA 50%, #E2E8F0 100%);
}
.timeline-item { position: relative; padding-left: 100px; padding-bottom: 64px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .step-dot {
  position: absolute; left: 26px; top: 4px;
  width: 30px; height: 30px; border-radius: 50%; background: #fff;
  border: 2px solid #E2E8F0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 0.8rem;
  color: #94A3B8; z-index: 2;
}
.timeline-item.active .step-dot {
  background: #3E7BFA; border-color: #3E7BFA; color: #fff;
  box-shadow: 0 0 0 4px rgba(62,123,250,0.15);
}
.timeline-item .step-card {
  border-radius: 20px; padding: 32px; background: #fff;
  border: 1px solid #E2E8F0; transition: all 0.3s;
}
.timeline-item .step-card:hover { border-color: #CBD5E1; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.timeline-item.active .step-card { border-color: rgba(62,123,250,0.2); box-shadow: 0 0 0 1px rgba(62,123,250,0.1); }
.step-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.step-card-head .icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(62,123,250,0.08); border: 1px solid rgba(62,123,250,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-card-head .icon-wrap svg { width: 24px; height: 24px; }
.step-card-head h3 { font-size: 1.2rem; margin-bottom: 2px; }
.step-tag { font-size: 0.7rem; font-weight: 600; color: #3E7BFA; background: rgba(62,123,250,0.08); padding: 2px 10px; border-radius: 100px; }
.step-card p { font-size: 0.9rem; color: #64748B; line-height: 1.7; margin-bottom: 12px; }
.step-details { display: flex; flex-wrap: wrap; gap: 8px; }
.step-details span { font-size: 0.8rem; color: #94A3B8; background: #F3F7FB; padding: 4px 12px; border-radius: 100px; border: 1px solid #E2E8F0; }

.collab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.collab-col { padding: 36px 28px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; }
.collab-col.ai { border-color: rgba(62,123,250,0.2); background: rgba(62,123,250,0.03); }
.collab-col h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 1.1rem; }
.collab-col ul { display: flex; flex-direction: column; gap: 12px; }
.collab-col ul li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #42536A; }
.collab-col ul li svg { width: 18px; height: 18px; flex-shrink: 0; }

.stack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.stack-item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: 16px; background: #fff; border: 1px solid #E2E8F0; transition: all 0.3s; }
.stack-item:hover { border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.stack-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #94A3B8; width: 100px; flex-shrink: 0; }
.stack-value { font-size: 0.9rem; color: #42536A; font-weight: 500; }

/* ─── INDEX: EVOLUTION / COMPARISON ─── */
.evolution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.evolution-item { padding: 28px 24px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; text-align: center; transition: all 0.3s; }
.evolution-item.featured { border-color: #3E7BFA; background: rgba(62,123,250,0.03); }
.evolution-item h4 { font-size: 1rem; margin-bottom: 8px; }
.evolution-item p { font-size: 0.85rem; color: #64748B; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-bottom: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 32px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; transition: all 0.3s; }
.step-card:hover { border-color: #CBD5E1; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.step-number { font-family: 'Satoshi', sans-serif; font-size: 2.5rem; font-weight: 900; color: #3E7BFA; margin-bottom: 12px; }
.step-label { font-family: 'Satoshi', sans-serif; font-size: 1.2rem; font-weight: 700; color: #0B1320; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: #64748B; line-height: 1.7; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-card { padding: 32px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; text-align: center; }
.stat-value { font-family: 'Satoshi', sans-serif; font-size: 2.5rem; font-weight: 900; color: #3E7BFA; margin-bottom: 4px; }
.stat-desc { font-size: 0.9rem; color: #64748B; }
.platforms-scroll { overflow: hidden; padding: 20px 0; }
.platforms-track { display: flex; gap: 40px; animation: scroll 30s linear infinite; }
.platform-item { flex-shrink: 0; display: flex; align-items: center; gap: 12px; padding: 16px 24px; background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; font-size: 0.9rem; font-weight: 500; color: #64748B; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { padding: 28px 24px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; transition: all 0.3s; }
.industry-card:hover { border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.industry-card .icon-wrap { width: 44px; height: 44px; border-radius: 14px; background: rgba(62,123,250,0.08); border: 1px solid rgba(62,123,250,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.industry-card .icon-wrap svg { width: 22px; height: 22px; }
.industry-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.industry-card p { font-size: 0.85rem; color: #64748B; line-height: 1.6; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.comparison-card { padding: 32px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; }
.comparison-card h4 { margin-bottom: 20px; font-size: 1.1rem; }
.cc-features { display: flex; flex-direction: column; gap: 12px; }
.cc-feat { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #42536A; }
.check svg { width: 18px; height: 18px; color: #10B981; }
.cross svg { width: 18px; height: 18px; color: #EF4444; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card { padding: 32px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; }
.testimonial-card .body-small { margin-bottom: 20px; font-style: italic; }
.quote-icon { margin-bottom: 12px; }
.quote-icon svg { width: 28px; height: 28px; color: #3E7BFA; }
.author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-info .name { font-size: 0.9rem; font-weight: 600; color: #0B1320; }
.author-info .role { font-size: 0.8rem; color: #94A3B8; }
.cta-section { background: #0B1320; padding: 80px 0; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: #94A3B8; max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #64748B; }
.dashboard-mockup { background: #0B1320; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; display: flex; align-items: center; justify-content: center; }

/* ─── FEATURES ─── */
.feature-card { padding: 32px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; transition: all 0.3s; }
.feature-card:hover { border-color: #CBD5E1; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.feature-card .icon-wrap { width: 48px; height: 48px; border-radius: 14px; background: rgba(62,123,250,0.08); border: 1px solid rgba(62,123,250,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card .icon-wrap svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #64748B; line-height: 1.7; }
.featured { border-color: rgba(62,123,250,0.2); background: rgba(62,123,250,0.03); }
.feature-card.featured { border-color: rgba(62,123,250,0.2); background: rgba(62,123,250,0.03); }
.features-list { display: flex; flex-direction: column; gap: 8px; }
.fc-visual { background: #0B1320; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.fc-body .body-small { margin-bottom: 8px; }
.fc-number { font-family: 'Satoshi', sans-serif; font-size: 2rem; font-weight: 900; color: #3E7BFA; }
.feature-card.fc-body h4 { font-size: 1.1rem; margin-bottom: 8px; }
.caps { position: absolute; bottom: 12px; right: 12px; display: flex; gap: 4px; }
.caps span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.engine-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.engine-pill { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 14px; background: rgba(62,123,250,0.04); border: 1px solid rgba(62,123,250,0.1); font-size: 0.9rem; color: #42536A; }
.engine-pill svg { width: 18px; height: 18px; flex-shrink: 0; color: #3E7BFA; }

/* ─── INDUSTRIES ─── */
.industry-card { padding: 28px 24px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; transition: all 0.3s; }
.industry-card:hover { border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.industry-card .icon-wrap { width: 44px; height: 44px; border-radius: 14px; background: rgba(62,123,250,0.08); border: 1px solid rgba(62,123,250,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.industry-card .icon-wrap svg { width: 22px; height: 22px; }
.industry-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.industry-card p { font-size: 0.85rem; color: #64748B; line-height: 1.6; }
.deepdive { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.deepdive-text h3 { margin-bottom: 12px; }
.deepdive-text p { font-size: 0.95rem; color: #64748B; line-height: 1.7; margin-bottom: 16px; }
.phases { display: flex; flex-direction: column; gap: 12px; }
.phase { display: flex; align-items: center; gap: 16px; }
.phase-num { font-family: 'Satoshi', sans-serif; font-size: 1.5rem; font-weight: 900; color: #3E7BFA; min-width: 36px; }
.meta { font-size: 0.8rem; color: #94A3B8; }
.obj { font-size: 0.9rem; color: #42536A; }

/* ─── CASE STUDIES ─── */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card { border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; overflow: hidden; transition: all 0.3s; }
.case-card:hover { border-color: #CBD5E1; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.cc-visual { background: #0B1320; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cc-body { padding: 24px; }
.cc-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; color: #3E7BFA; background: rgba(62,123,250,0.08); padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.cc-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cc-body p { font-size: 0.85rem; color: #64748B; line-height: 1.7; margin-bottom: 12px; }
.cc-stat { font-size: 1.5rem; font-weight: 900; color: #3E7BFA; font-family: 'Satoshi', sans-serif; }
.featured-case { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.featured-case .cc-visual { height: 100%; }
.fc-results { font-size: 0.8rem; color: #94A3B8; }
.fc-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; color: #3E7BFA; background: rgba(62,123,250,0.08); padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.fc-content { padding: 32px; }
.fc-content h3 { font-size: 1.3rem; margin-bottom: 12px; }
.fc-content p { font-size: 0.9rem; color: #64748B; line-height: 1.7; margin-bottom: 16px; }
.fc-desc { font-size: 0.85rem; color: #64748B; margin-bottom: 16px; }
.r-num { font-family: 'Satoshi', sans-serif; font-size: 2rem; font-weight: 900; color: #3E7BFA; }
.r-label { font-size: 0.8rem; color: #94A3B8; }
.r-item { display: flex; align-items: center; gap: 12px; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { padding: 40px 32px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; position: relative; transition: all 0.3s; }
.pricing-card.featured { border-color: #3E7BFA; box-shadow: 0 0 0 1px #3E7BFA; }
.pricing-card:hover { border-color: #CBD5E1; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.pricing-card.featured:hover { border-color: #3E7BFA; box-shadow: 0 0 0 1px #3E7BFA, 0 8px 24px rgba(0,0,0,0.06); }
.p-name { font-size: 1.2rem; font-weight: 700; color: #0B1320; margin-bottom: 4px; }
.p-desc { font-size: 0.85rem; color: #64748B; margin-bottom: 20px; }
.p-price { font-family: 'Satoshi', sans-serif; font-size: 2.5rem; font-weight: 900; color: #0B1320; margin-bottom: 4px; }
.p-price-sub { font-size: 0.85rem; color: #94A3B8; margin-bottom: 24px; }
.p-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pf { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #42536A; }
.p-title { font-family: 'Satoshi', sans-serif; font-size: 1rem; font-weight: 600; color: #0B1320; margin-bottom: 4px; }
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.included-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #42536A; }

/* ─── RESOURCES ─── */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; overflow: hidden; transition: all 0.3s; }
.article-card:hover { border-color: #CBD5E1; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.ac-visual { background: #0B1320; display: flex; align-items: center; justify-content: center; }
.ac-body { padding: 24px; }
.ac-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; color: #3E7BFA; background: rgba(62,123,250,0.08); padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.ac-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.ac-body p { font-size: 0.85rem; color: #64748B; line-height: 1.7; margin-bottom: 12px; }
.ac-meta { font-size: 0.8rem; color: #94A3B8; display: flex; gap: 16px; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card { padding: 24px; border-radius: 16px; background: #fff; border: 1px solid #E2E8F0; text-align: center; transition: all 0.3s; }
.cat-card:hover { border-color: #CBD5E1; }
.cat-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(62,123,250,0.08); border: 1px solid rgba(62,123,250,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.cat-icon svg { width: 20px; height: 20px; }
.cat-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.topics { font-size: 0.8rem; color: #94A3B8; }
.cc-body h3 { font-size: 1.05rem; margin-bottom: 8px; }

/* ─── ABOUT ─── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mission-visual { border-radius: 20px; overflow: hidden; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card { padding: 32px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; transition: all 0.3s; }
.pillar-card:hover { border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.pillar-card .icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(62,123,250,0.08); border: 1px solid rgba(62,123,250,0.12); margin-bottom: 16px; }
.pillar-card .icon-wrap svg { width: 26px; height: 26px; }
.pillar-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pillar-card p { font-size: 0.85rem; color: #64748B; line-height: 1.7; }
.story-timeline { position: relative; max-width: 640px; margin: 0 auto; padding-left: 60px; }
.story-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: #E2E8F0; }
.story-item { position: relative; padding-bottom: 40px; }
.story-item:last-child { padding-bottom: 0; }
.story-item .dot { position: absolute; left: -36px; top: 4px; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 2px solid #E2E8F0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.story-item .date { font-size: 0.8rem; color: #3E7BFA; font-weight: 600; margin-bottom: 4px; }
.story-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.story-item p { font-size: 0.85rem; color: #64748B; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-box { padding: 28px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; }
.sb-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(62,123,250,0.08); border: 1px solid rgba(62,123,250,0.12); margin-bottom: 12px; }
.sb-icon svg { width: 22px; height: 22px; }
.sidebar-box h4 { font-size: 1rem; margin-bottom: 4px; }
.sidebar-box p { font-size: 0.85rem; color: #64748B; line-height: 1.7; }
.contact-link { font-size: 0.9rem; color: #3E7BFA; font-weight: 500; display: inline-block; margin-top: 8px; }
.form-card { padding: 36px; border-radius: 20px; background: #fff; border: 1px solid #E2E8F0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: #0B1320; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #E2E8F0; border-radius: 14px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #0B1320; background: #fff; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #3E7BFA; box-shadow: 0 0 0 3px rgba(62,123,250,0.1); }
.form-sub { font-size: 0.8rem; color: #94A3B8; }
.process-steps { display: flex; flex-direction: column; gap: 16px; }
.process-step { display: flex; align-items: flex-start; gap: 16px; }
.ps-num { font-family: 'Satoshi', sans-serif; font-size: 1.2rem; font-weight: 900; color: #3E7BFA; min-width: 28px; }
.ps-label { font-size: 0.9rem; color: #0B1320; font-weight: 500; margin-bottom: 2px; }
.process-step p { font-size: 0.8rem; color: #64748B; }

/* ─── LEGAL ─── */
.legal-content h1 { margin-bottom: 8px; }
.legal-content .last-updated { color: #94A3B8; font-size: 0.85rem; margin-bottom: 48px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 12px; }
.legal-content h3 { margin-top: 28px; margin-bottom: 8px; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: #42536A; line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content strong { color: #0B1320; }
.legal-content a { color: #3E7BFA; font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .divider { height: 1px; background: #E2E8F0; margin: 48px 0; }

/* ─── HIGHLIGHT (used on index.html) ─── */
.highlight { color: #3E7BFA; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { max-width: 100%; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .evolution-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .deepdive { grid-template-columns: 1fr; gap: 32px; }
  .case-grid { grid-template-columns: 1fr; }
  .featured-case { grid-column: 1; grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .evolution-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stats-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
  .timeline-item { padding-left: 60px; }
  .timeline::before { left: 20px; }
  .timeline-item .step-dot { left: 6px; }
}
