/* Intelligent Conversational AI — v1 */

:root {
  --ca-teal: #0EA5E9;
  --ca-cyan: #00D4FF;
  --ca-indigo: #4F46E5;
  --ca-green: #00FF88;
  --ca-purple: #7C3AED;
  --ca-bg: #030D1A;
  --ca-bg2: #050F20;
}

.ca-accent { background: linear-gradient(135deg, var(--ca-teal) 0%, var(--ca-cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── SHARED ── */
.ca-section-header { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.ca-section-header h2 { font-size: 44px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.ca-section-header p { font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.ca-section-cta { text-align: center; margin-top: 52px; }

/* ── BUTTONS ── */
.ca-cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: linear-gradient(135deg, var(--ca-indigo), var(--ca-teal)); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 8px 30px rgba(14,165,233,0.3); }
.ca-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,212,255,0.45); }
.ca-cta-btn i { color: #fff !important; -webkit-text-fill-color: #fff !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; transition: transform 0.2s; }
.ca-cta-btn:hover i { transform: translateX(4px); }
.ca-cta-large { font-size: 17px; padding: 20px 44px; }
.ca-cta-outline { background: transparent; border: 1.5px solid rgba(14,165,233,0.4); box-shadow: none; color: var(--ca-cyan); }
.ca-cta-outline i { color: var(--ca-cyan) !important; -webkit-text-fill-color: var(--ca-cyan) !important; }
.ca-cta-outline:hover { background: rgba(14,165,233,0.08); border-color: var(--ca-cyan); box-shadow: 0 8px 30px rgba(0,212,255,0.15); }

/* ── HERO ── */
.ca-hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; background: var(--ca-bg); padding: 130px 60px 80px; overflow: hidden; text-align: center; }
.ca-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.ca-hero-inner { position: relative; z-index: 10; max-width: 900px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.ca-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border: 1px solid rgba(14,165,233,0.4); border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--ca-cyan); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
.ca-hero-badge i { color: var(--ca-cyan) !important; -webkit-text-fill-color: var(--ca-cyan) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ca-hero-title { font-size: 62px; font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 24px; letter-spacing: -2px; }
.ca-hero-sub { font-size: 18px; color: rgba(255,255,255,0.62); line-height: 1.8; max-width: 740px; margin-bottom: 48px; }

/* ── PILLARS GRID ── */
.ca-pillars { background: var(--ca-bg2); padding: 100px 60px; }
.ca-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }

.ca-pillar-card { position: relative; background: rgba(5,20,50,0.55); backdrop-filter: blur(20px); border: 1px solid rgba(14,165,233,0.1); border-radius: 20px; padding: 36px 28px; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; overflow: hidden; }
.ca-pillar-card::before { content: ''; position: absolute; inset: 0; border-radius: 20px; background: radial-gradient(circle at 50% 0%, rgba(14,165,233,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.ca-pillar-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,165,233,0.14); border-color: rgba(0,212,255,0.35); }
.ca-pillar-card:hover::before { opacity: 1; }

.ca-pillar-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--ca-indigo), var(--ca-teal)); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; transition: box-shadow 0.35s ease; }
.ca-pillar-card:hover .ca-pillar-icon { box-shadow: 0 0 24px rgba(14,165,233,0.5); }
.ca-pillar-icon i { font-size: 20px; color: #fff !important; -webkit-text-fill-color: #fff !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ca-pillar-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.35; position: relative; z-index: 1; }
.ca-pillar-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; margin: 0 0 20px; position: relative; z-index: 1; }
.ca-card-stat { display: flex; align-items: baseline; gap: 8px; position: relative; z-index: 1; padding-top: 16px; border-top: 1px solid rgba(14,165,233,0.1); }
.ca-stat-val { font-size: 28px; font-weight: 900; color: var(--ca-cyan); line-height: 1; }
.ca-stat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.3); font-family: 'Courier New', monospace; }

/* ── INDUSTRY TABS ── */
.ca-industries { background: var(--ca-bg); padding: 100px 60px; }
.ca-industry-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.ca-industry-nav { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 100px; }
.ca-ind-btn { background: rgba(5,20,50,0.4); border: 1px solid rgba(14,165,233,0.1); border-radius: 12px; padding: 16px 20px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.4); cursor: pointer; text-align: left; transition: all 0.3s ease; line-height: 1.4; }
.ca-ind-btn:hover { border-color: rgba(14,165,233,0.3); color: rgba(255,255,255,0.7); }
.ca-ind-btn.active { background: rgba(14,165,233,0.1); border-color: var(--ca-cyan); color: #fff; box-shadow: 0 0 20px rgba(14,165,233,0.12); }

.ca-industry-panels { position: relative; }
.ca-ind-panel { display: none; background: rgba(5,20,50,0.55); backdrop-filter: blur(20px); border: 1px solid rgba(14,165,233,0.12); border-radius: 20px; padding: 44px 40px; animation: caPanelIn 0.4s ease; }
.ca-ind-panel.active { display: block; }
@keyframes caPanelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.ca-ind-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--ca-indigo), var(--ca-teal)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ca-ind-icon i { font-size: 22px; color: #fff !important; -webkit-text-fill-color: #fff !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.ca-ind-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ca-cyan); margin-bottom: 10px; font-family: 'Courier New', monospace; }
.ca-ind-panel h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.ca-ind-panel p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 24px; }
.ca-ind-bullets { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.ca-ind-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.65); }
.ca-ind-bullets li i { color: var(--ca-green) !important; -webkit-text-fill-color: var(--ca-green) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; font-size: 11px; flex-shrink: 0; }
.ca-ind-code { display: inline-block; font-family: 'Courier New', monospace; font-size: 12px; color: var(--ca-green); background: rgba(0,255,136,0.07); border: 1px solid rgba(0,255,136,0.2); padding: 6px 14px; border-radius: 6px; letter-spacing: 0.3px; }

/* ── CASE STUDY IMPACT CARD ── */
.ca-casestudy { background: var(--ca-bg2); padding: 100px 60px; }
.ca-impact-card { max-width: 1100px; margin: 0 auto; background: rgba(5,20,50,0.6); backdrop-filter: blur(24px); border: 1px solid rgba(14,165,233,0.15); border-radius: 24px; overflow: hidden; }

.ca-impact-metrics { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; padding: 48px 52px; background: rgba(14,165,233,0.05); border-bottom: 1px solid rgba(14,165,233,0.1); }
.ca-impact-metric { text-align: center; }
.ca-impact-val { display: block; font-size: 72px; font-weight: 900; line-height: 1; letter-spacing: -3px; background: linear-gradient(135deg, var(--ca-teal), var(--ca-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.ca-impact-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); font-family: 'Courier New', monospace; }
.ca-impact-divider { width: 1px; height: 80px; background: rgba(14,165,233,0.15); }

.ca-impact-body { padding: 48px 52px; }
.ca-impact-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ca-cyan); margin-bottom: 12px; font-family: 'Courier New', monospace; }
.ca-impact-body h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 36px; line-height: 1.3; }
.ca-impact-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.ca-impact-col-label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ca-cyan); margin-bottom: 12px; font-family: 'Courier New', monospace; }
.ca-impact-col-label i { color: var(--ca-cyan) !important; -webkit-text-fill-color: var(--ca-cyan) !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; font-size: 11px; }
.ca-impact-col p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 0; }

/* ── FINAL CTA ── */
.ca-final-cta { position: relative; padding: 130px 60px; text-align: center; overflow: hidden; background: #020A14; border-top: 1px solid rgba(14,165,233,0.08); }
.ca-cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.ca-final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 50%, rgba(79,70,229,0.14) 0%, transparent 55%), radial-gradient(circle at 75% 50%, rgba(14,165,233,0.12) 0%, transparent 55%); pointer-events: none; }
.ca-final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.ca-final-cta h2 { font-size: 52px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px; }
.ca-final-cta p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 44px; }

/* ── LIGHT THEME ── */
body.light-theme section.ca-hero { background: #ffffff !important; }
body.light-theme section.ca-pillars { background: #f8f9ff !important; }
body.light-theme section.ca-industries { background: #ffffff !important; }
body.light-theme section.ca-casestudy { background: #f8f9ff !important; }
body.light-theme section.ca-final-cta { background: #ffffff !important; border-top-color: rgba(0,0,0,0.06) !important; }
body.light-theme section.ca-final-cta::before { background: radial-gradient(circle at 25% 50%, rgba(255,123,0,0.07) 0%, transparent 55%), radial-gradient(circle at 75% 50%, rgba(255,123,0,0.05) 0%, transparent 55%) !important; }

body.light-theme .ca-accent { background: linear-gradient(135deg, var(--original-orange), var(--original-orange-hover)) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
body.light-theme .ca-hero-title { color: #1a1f3a !important; }
body.light-theme .ca-hero-sub { color: rgba(26,31,58,0.65) !important; }
body.light-theme .ca-hero-badge { border-color: rgba(255,123,0,0.4) !important; color: var(--original-orange) !important; }
body.light-theme .ca-hero-badge i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }
body.light-theme .ca-section-header h2 { color: #1a1f3a !important; }
body.light-theme .ca-section-header p { color: rgba(26,31,58,0.6) !important; }

body.light-theme .ca-pillar-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }
body.light-theme .ca-pillar-card:hover { box-shadow: 0 24px 60px rgba(255,123,0,0.12) !important; border-color: rgba(255,123,0,0.3) !important; }
body.light-theme .ca-pillar-card:hover .ca-pillar-icon { box-shadow: 0 0 24px rgba(255,123,0,0.3) !important; }
body.light-theme .ca-pillar-icon { background: linear-gradient(135deg, var(--original-orange), var(--original-orange-hover)) !important; }
body.light-theme .ca-pillar-icon i { color: #fff !important; -webkit-text-fill-color: #fff !important; }
body.light-theme .ca-pillar-card h3 { color: #1a1f3a !important; }
body.light-theme .ca-pillar-card p { color: rgba(26,31,58,0.6) !important; }
body.light-theme .ca-card-stat { border-top-color: rgba(0,0,0,0.08) !important; }
body.light-theme .ca-stat-val { color: var(--original-orange) !important; }
body.light-theme .ca-stat-label { color: rgba(26,31,58,0.35) !important; }
body.light-theme .ca-cta-outline { border-color: rgba(255,123,0,0.4) !important; color: var(--original-orange) !important; }
body.light-theme .ca-cta-outline i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }
body.light-theme .ca-cta-outline:hover { background: rgba(255,123,0,0.06) !important; border-color: var(--original-orange) !important; }

body.light-theme .ca-ind-btn { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; color: rgba(26,31,58,0.45) !important; }
body.light-theme .ca-ind-btn:hover { border-color: rgba(255,123,0,0.3) !important; color: rgba(26,31,58,0.7) !important; }
body.light-theme .ca-ind-btn.active { background: rgba(255,123,0,0.06) !important; border-color: var(--original-orange) !important; color: #1a1f3a !important; }
body.light-theme .ca-ind-panel { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }
body.light-theme .ca-ind-icon { background: linear-gradient(135deg, var(--original-orange), var(--original-orange-hover)) !important; }
body.light-theme .ca-ind-icon i { color: #fff !important; -webkit-text-fill-color: #fff !important; }
body.light-theme .ca-ind-tag { color: var(--original-orange) !important; }
body.light-theme .ca-ind-panel h3 { color: #1a1f3a !important; }
body.light-theme .ca-ind-panel p { color: rgba(26,31,58,0.6) !important; }
body.light-theme .ca-ind-bullets li { color: rgba(26,31,58,0.65) !important; }
body.light-theme .ca-ind-bullets li i { color: #1a6b3a !important; -webkit-text-fill-color: #1a6b3a !important; }
body.light-theme .ca-ind-code { color: #1a6b3a !important; background: rgba(0,100,50,0.06) !important; border-color: rgba(0,100,50,0.2) !important; }

body.light-theme .ca-impact-card { background: #ffffff !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }
body.light-theme .ca-impact-metrics { background: rgba(255,123,0,0.03) !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
body.light-theme .ca-impact-val { background: linear-gradient(135deg, var(--original-orange), var(--original-orange-hover)) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
body.light-theme .ca-impact-label { color: rgba(26,31,58,0.35) !important; }
body.light-theme .ca-impact-divider { background: rgba(0,0,0,0.08) !important; }
body.light-theme .ca-impact-tag { color: var(--original-orange) !important; }
body.light-theme .ca-impact-body h3 { color: #1a1f3a !important; }
body.light-theme .ca-impact-col-label { color: var(--original-orange) !important; }
body.light-theme .ca-impact-col-label i { color: var(--original-orange) !important; -webkit-text-fill-color: var(--original-orange) !important; }
body.light-theme .ca-impact-col p { color: rgba(26,31,58,0.6) !important; }

body.light-theme .ca-final-cta h2 { color: #1a1f3a !important; }
body.light-theme .ca-final-cta p { color: rgba(26,31,58,0.65) !important; }
body.light-theme .ca-cta-btn:not(.ca-cta-outline) { background: linear-gradient(135deg, var(--original-orange), var(--original-orange-hover)) !important; box-shadow: 0 8px 30px rgba(255,123,0,0.3) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ca-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .ca-industry-layout { grid-template-columns: 1fr; }
  .ca-industry-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .ca-ind-btn { flex: 1; min-width: 140px; text-align: center; }
  .ca-impact-cols { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 700px) {
  .ca-pillars-grid { grid-template-columns: 1fr; }
  .ca-hero-title { font-size: 38px; }
  .ca-section-header h2 { font-size: 32px; }
  .ca-final-cta h2 { font-size: 32px; }
  .ca-hero, .ca-pillars, .ca-industries, .ca-casestudy, .ca-final-cta { padding: 80px 24px; }
  .ca-impact-metrics { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }
  .ca-impact-divider { display: none; }
  .ca-impact-val { font-size: 52px; }
  .ca-impact-body { padding: 36px 28px; }
  .ca-ind-panel { padding: 32px 24px; }
}
