:root {
  --blue: #0071C5;
  --blue-2: #0958a5;
  --blue-3: #eaf6ff;
  --blue-4: #dcefff;
  --navy: #07182f;
  --navy-2: #0b2545;
  --ink: #0f172a;
  --muted: #5b6b82;
  --line: #e6edf5;
  --soft: #f7fbff;
  --green: #16a34a;
  --amber: #f59e0b;
  --red: #dc2626;
  --purple: #7c3aed;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(15,23,42,.12);
  --shadow-soft: 0 12px 40px rgba(15,23,42,.08);
  --shadow-blue: 0 20px 55px rgba(0,113,197,.22);
  --radius: 26px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --text: #0f172a;
  --text-light: #5b6b82;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Segoe UI", Inter, Arial, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-3); color: var(--blue); font-weight: 800; border: 1px solid #ccecff; border-radius: 999px; padding: 9px 14px; font-size: 14px; letter-spacing: .2px; }
.eyebrow.dark { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); color: #fff; }
.eyebrow.ai { background: linear-gradient(135deg,#f3e8ff,#e0e7ff); color: #6d28d9; border-color: #ddd6fe; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 10px; padding: 10px 18px; font-weight: 800; transition: .25s ease; border: 1px solid transparent; cursor: pointer; white-space: nowrap; font-size: 15px; }
.btn.primary { background: var(--blue); color: #fff; box-shadow: 0 14px 28px rgba(0,113,197,.28); }
.btn.primary:hover { transform: translateY(-2px); background: var(--blue-2); }
.btn.secondary { background: #fff; color: var(--blue); border-color: #b8dcf5; }
.btn.secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn.ghost { background: transparent; color: #314155; border-color: var(--line); }
.btn.ghost:hover { background: var(--soft); }
.btn-red { background: var(--red); color: #fff; border: none; padding: 14px 20px; font-size: 1rem; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; }
.btn-red:hover { background: #b91c1c; }

.section { padding: 96px 0; }
.section.tight { padding: 70px 0; }
.section-title { font-size: 44px; line-height: 1.08; letter-spacing: -1.2px; margin: 14px 0 16px; color: var(--ink); }
.section-title.light { color: #fff; }
.lead { font-size: 19px; color: var(--muted); max-width: 850px; }
.lead.light { color: #dbeafe; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- Header ---------- */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: rgba(255,255,255,.95); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(230,237,245,.9); }
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 180px; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 700; color: #334155; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; border: none; background: var(--blue-3); color: var(--blue); border-radius: 12px; padding: 10px 14px; font-weight: 900; font-size: 18px; cursor: pointer; }

/* Responsive Header Elements */
.show-mob { display: none; }
.hide-mob { display: inline-flex; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; padding: 130px 0 70px; background: linear-gradient(110deg,rgba(5,22,43,.88),rgba(7,58,105,.6)), url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=85'); background-size: cover; background-position: center; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero:after { content: ""; position: absolute; inset: auto -20% -35% -20%; height: 45%; background: radial-gradient(circle at center,rgba(0,113,197,.28),transparent 62%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 44px; align-items: center; }
.hero h1 { font-size: 62px; line-height: 1.04; letter-spacing: -2.4px; margin: 18px 0; max-width: 820px; }
.hero h1 .accent { background: linear-gradient(90deg,#7dd3fc,#60a5fa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .subline { font-size: 22px; color: #bae6fd; font-weight: 700; margin-bottom: 14px; letter-spacing: .3px; }
.hero p { font-size: 20px; color: #e7f3ff; max-width: 760px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 26px; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; color: #dcefff; font-size: 14px; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; background: #4ade80; border-radius: 999px; box-shadow: 0 0 0 5px rgba(74,222,128,.14); }

/* ---------- Command Center Preview ---------- */
.hero-stage { position: relative; }
.command-card { background: rgba(255,255,255,.97); color: var(--ink); border-radius: 28px; box-shadow: 0 32px 100px rgba(0,0,0,.32); overflow: hidden; border: 1px solid rgba(255,255,255,.55); }

/* ---------- Logo Strip ---------- */
.logo-strip { background: #fff; border-bottom: 1px solid var(--line); }
.logo-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 22px; padding-bottom: 22px; }
.strip-item { display: flex; align-items: center; justify-content: center; gap: 10px; color: #43536a; font-weight: 800; font-size: 14px; }
.strip-icon { width: 34px; height: 34px; border-radius: 12px; background: var(--blue-3); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 900; }

/* ---------- Pillars ---------- */
.pillars { background: linear-gradient(180deg,#fff,var(--soft)); }
.pillar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: 0 8px 28px rgba(15,23,42,.05); transition: .3s ease; position: relative; overflow: hidden; }
.pillar-card:before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--blue),#38bdf8); }
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar-icon { width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(135deg,var(--blue-3),#f0f9ff); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 20px; box-shadow: 0 8px 20px rgba(0,113,197,.12); }
.pillar-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink); }
.pillar-card .tagline { color: var(--blue); font-weight: 800; font-size: 14px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.pillar-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.pillar-card ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.pillar-card li { color: #475569; font-size: 14px; font-weight: 600; padding-left: 22px; position: relative; }
.pillar-card li:before { content: "→"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

/* ---------- Cards / Problem ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 7px 24px rgba(15,23,42,.045); transition: .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.icon { width: 52px; height: 52px; border-radius: 17px; background: var(--blue-3); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 22px; margin-bottom: 17px; }
.card h3 { font-size: 20px; margin-bottom: 9px; }
.card p { color: var(--muted); }
.problem-card { position: relative; overflow: hidden; }
.problem-card:before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--amber); }

/* ---------- AI Showcase ---------- */
.ai-showcase { background: linear-gradient(135deg,#07182f,#0b2545); color: #fff; position: relative; overflow: hidden; }
.ai-showcase:before { content: ""; position: absolute; right: -15%; top: -25%; width: 600px; height: 600px; background: radial-gradient(circle,rgba(124,58,237,.35),transparent 65%); }
.ai-showcase:after { content: ""; position: absolute; left: -15%; bottom: -25%; width: 500px; height: 500px; background: radial-gradient(circle,rgba(0,113,197,.35),transparent 65%); }
.ai-showcase .container { position: relative; z-index: 1; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ai-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,rgba(124,58,237,.25),rgba(59,130,246,.2)); border: 1px solid rgba(167,139,250,.4); color: #c4b5fd; padding: 8px 14px; border-radius: 999px; font-weight: 800; font-size: 13px; margin-bottom: 16px; }
.ai-capability { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ai-capability:last-child { border-bottom: none; }
.ai-cap-icon { width: 44px; height: 44px; flex: 0 0 44px; background: linear-gradient(135deg,rgba(124,58,237,.2),rgba(59,130,246,.15)); border: 1px solid rgba(167,139,250,.3); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #a78bfa; font-weight: 900; font-size: 18px; }
.ai-capability b { display: block; font-size: 17px; color: #fff; margin-bottom: 3px; }
.ai-capability span { color: #cbd5e1; font-size: 14px; }
.ai-report-card { background: #fff; color: var(--ink); border-radius: 28px; padding: 26px; box-shadow: 0 34px 90px rgba(0,0,0,.42); position: relative; }
.ai-report-card:before { content: "AI PRO REPORT"; position: absolute; top: -12px; left: 26px; background: linear-gradient(135deg,var(--purple),var(--blue)); color: #fff; padding: 5px 12px; border-radius: 8px; font-size: 10px; font-weight: 900; letter-spacing: 1.2px; }
.ar-head { display: flex; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 18px; }
.ar-logo { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-3); display: flex; align-items: center; justify-content: center; color: var(--blue); font-weight: 900; font-size: 18px; }
.ar-title { font-size: 16px; font-weight: 900; }
.ar-title small { display: block; color: #64748b; font-weight: 700; font-size: 12px; margin-top: 2px; }
.ar-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.ar-metric { background: #f8fbff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; }
.ar-metric .lbl { font-size: 11px; color: #64748b; font-weight: 800; text-transform: uppercase; }
.ar-metric .val { font-size: 22px; font-weight: 900; color: var(--blue); margin-top: 3px; }
.ar-metric .delta { font-size: 11px; font-weight: 800; color: var(--green); margin-top: 2px; }
.ai-insight-box { background: linear-gradient(135deg,#f5f3ff,#eff6ff); border: 1px solid #ddd6fe; border-radius: 16px; padding: 14px; margin-top: 8px; }
.ai-insight-box .header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ai-insight-box .dot-ai { width: 24px; height: 24px; border-radius: 8px; background: linear-gradient(135deg,var(--purple),var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; }
.ai-insight-box .label { font-size: 11px; font-weight: 900; color: var(--purple); text-transform: uppercase; letter-spacing: .6px; }
.ai-insight-box p { font-size: 13px; color: #334155; line-height: 1.55; font-weight: 600; }

/* ---------- Dashboards Section ---------- */
.dashboards { background: #fff; }
.dash-showcase { background: linear-gradient(180deg,#f8fbff,#fff); border: 1px solid var(--line); border-radius: 32px; padding: 36px; box-shadow: var(--shadow-soft); margin-top: 30px; }
.dash-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; justify-content: center; }
.dash-tab { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; font-weight: 800; font-size: 14px; color: #475569; cursor: pointer; transition: .2s ease; }
.dash-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 8px 20px rgba(0,113,197,.25); }
.dash-tab:hover:not(.active) { background: var(--blue-3); color: var(--blue); border-color: #b8dcf5; }
.dash-panel { display: none; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; }
.dash-panel.active { display: grid; }
.dash-text h3 { font-size: 32px; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 14px; }
.dash-text .sub { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .6px; font-size: 13px; margin-bottom: 10px; }
.dash-text p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.dash-text ul { list-style: none; display: grid; gap: 12px; margin-top: 10px; }
.dash-text li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #334155; font-weight: 600; }
.dash-text .check { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; background: #dcfce7; color: #15803d; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; margin-top: 1px; }

.dash-preview { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-soft); overflow: hidden; }
.dp-top { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #f8fbff; }
.dp-top strong { font-size: 14px; }
.dp-body { padding: 20px; }

.pill { font-size: 12px; border-radius: 999px; padding: 7px 10px; font-weight: 900; background: #dcfce7; color: #15803d; }
.pill.blue { background: #dbeafe; color: #1e40af; }
.pill.amber { background: #fef3c7; color: #92400e; }
.pill.red { background: #fee2e2; color: #991b1b; }

/* Dashboard Previews */
.ti-metrics, .ls-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.ti-metric, .ls-metric { background: #f8fbff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; text-align: center; }
.ti-metric .v, .ls-metric .v { font-size: 20px; font-weight: 900; color: var(--blue); }
.ti-metric .l, .ls-metric .l { font-size: 11px; color: #64748b; font-weight: 700; margin-top: 3px; }
.coach-box { background: linear-gradient(135deg,#f5f3ff,#eff6ff); border: 1px solid #ddd6fe; border-radius: 14px; padding: 14px; margin-top: 10px; }
.coach-box .h { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.coach-box .h b { font-size: 12px; color: var(--purple); text-transform: uppercase; letter-spacing: .5px; font-weight: 900; }
.coach-box p { font-size: 13px; color: #334155; line-height: 1.5; font-weight: 600; }

.ls-bar { display: grid; grid-template-columns: 130px 1fr 50px; gap: 10px; align-items: center; margin-bottom: 9px; font-size: 13px; font-weight: 800; color: #475569; }
.bar-track { height: 10px; background: #e2e8f0; border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg,var(--blue),#38bdf8); border-radius: 999px; }

.rt-buckets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.rt-bucket { border-radius: 14px; padding: 14px; text-align: center; color: #fff; }
.rt-bucket.red { background: linear-gradient(135deg,#dc2626,#b91c1c); }
.rt-bucket.blue { background: linear-gradient(135deg,#2563eb,#1e40af); }
.rt-bucket.green { background: linear-gradient(135deg,#16a34a,#15803d); }
.rt-bucket .v { font-size: 24px; font-weight: 900; }
.rt-bucket .l { font-size: 10px; font-weight: 800; margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; opacity: .95; }
.rt-list { display: grid; gap: 8px; }
.rt-row { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; background: #f8fbff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font-size: 12px; }
.rt-row .badge { border-radius: 6px; padding: 3px 7px; font-size: 10px; font-weight: 900; color: #fff; }
.rt-row .badge.red { background: var(--red); }
.rt-row .badge.blue { background: var(--blue); }
.rt-row .badge.green { background: var(--green); }

/* ---------- How it works ---------- */
.how { background: linear-gradient(180deg,#f8fbff,#fff); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 36px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; position: relative; box-shadow: 0 8px 24px rgba(15,23,42,.05); }
.step-num { width: 42px; height: 42px; border-radius: 14px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 16px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- CEO Letter ---------- */
.ceo { background: linear-gradient(180deg,#f7fbff,#fff); }
.ceo-card { background: #fff; border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); padding: 44px; display: grid; grid-template-columns: .35fr 1fr; gap: 36px; align-items: center; max-width: 1100px; margin: 0 auto; }
.ceo-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  position: relative;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  /* Replaced 1/1 square aspect ratio with a portrait ratio (3:4) */
  aspect-ratio: 3 / 4; 
  height: auto;
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  /* Ensures image fills container without distortion */
  object-fit: cover; 
  /* Focuses alignment towards the top so head space is preserved */
  object-position: top center; 
}
.ms-photo{display: flex;gap: 20px;padding-top: 10px;}
.ms-photo img{width: 150px;}
.ceo-content h3 { font-size: 26px; line-height: 1.2; margin-bottom: 12px; }
.ceo-content .from { color: var(--blue); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }
.ceo-content p { color: #334155; font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.ceo-signature { margin-top: 14px; font-weight: 900; color: var(--ink); font-size: 16px; }
.ceo-signature small { display: block; color: var(--muted); font-weight: 700; font-size: 13px; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-section { background: #f8fbff; }
.faq-wrap { max-width: 930px; margin: 34px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 20px; margin-bottom: 13px; overflow: hidden; box-shadow: 0 6px 18px rgba(15,23,42,.035); }
.faq-q { padding: 20px 22px; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-weight: 900; cursor: pointer; }
.faq-q span:last-child { color: var(--blue); font-size: 24px; transition: .25s ease; }
.faq-a { display: none; padding: 0 22px 22px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(135deg,#0067b1,#02152b); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final-cta:before { content: ""; position: absolute; inset: -20% auto auto -18%; width: 520px; height: 520px; background: radial-gradient(circle,rgba(255,255,255,.16),transparent 62%); }
.final-cta:after { content: ""; position: absolute; right: -15%; bottom: -25%; width: 500px; height: 500px; background: radial-gradient(circle,rgba(124,58,237,.2),transparent 62%); }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: 50px; line-height: 1.08; letter-spacing: -1.2px; }
.final-cta p { color: #dcefff; font-size: 20px; margin: 16px auto 30px; max-width: 760px; }

/* ---------- Contact Section ---------- */
.contact-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 50px; min-height: 280px; display: flex; align-items: center; padding: 60px; }
.contact-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.contact-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg,rgba(5,22,43,.86),rgba(7,58,105,.58)); z-index: 1; }
.contact-hero-content { position: relative; z-index: 2; color: #fff; max-width: 680px; }
.contact-hero h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 14px; color: #fff; }
.contact-hero p { font-size: 1.1rem; opacity: .95; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; }
.contact-info > p { color: var(--text-light); font-size: 1rem; margin-bottom: 24px; line-height: 1.7; }
.contact-item { display: flex; gap: 15px; align-items: start; margin-bottom: 22px; }
.contact-item-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; background: rgba(230,57,70,.1); }
.contact-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.contact-item p { font-size: .92rem; color: var(--text-light); line-height: 1.6; }
.contact-form { background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 2px solid #e8ecf0; border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem; transition: border-color .3s; outline: none; background: #fff; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.contact-image { border-radius: var(--radius); overflow: hidden; margin-top: 25px; box-shadow: var(--shadow); }
.contact-image img { width: 100%; height: 200px; object-fit: cover; }
.partner-bk { background: #0071C5; color: #fff !important; text-align: center; border-radius: 8px; }
.partner-register-mob { background: var(--green); color: #fff !important; text-align: center; border-radius: 8px; }

/* ---------- Footer ---------- */
footer { background: #07182f; color: #cbd5e1; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 32px; }
.footer-logo img { height: 58px; margin-bottom: 14px; }
footer h4 { color: #fff; margin-bottom: 12px; }
footer a, footer p { display: block; color: #b8c7da; margin-bottom: 9px; font-size: 14px; }
footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; font-size: 13px; color: #92a3b8; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.disclaimer { font-size: 12px; color: #92a3b8; margin-top: 12px; max-width: 900px; }

/* ---------- Floating Controls & Chatbot ---------- */
#backToTop { position: fixed; bottom: 24px; right: 24px; width: 46px; height: 46px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: bold; box-shadow: 0 4px 14px rgba(0, 113, 197, 0.4); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
#backToTop:hover { background: var(--blue-2); transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0, 113, 197, 0.6); }

#chatLauncher { position: fixed; bottom: 80px; right: 20px; width: 60px; height: 60px; background: #e71921; border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; color: white; font-size: 24px; z-index: 9999; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
#chatContainer { position: fixed; bottom: 150px; right: 20px; width: 340px; height: 450px; display: none; background: white; border-radius: 12px; overflow: hidden; z-index: 9999; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
iframe { width: 100%; height: 100%; border: none; }

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: .65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Sticky Header & Responsive Mobile Navigation)
   ========================================================================== */

@media (max-width: 1100px) {
  .hero-grid, .ai-grid, .dash-panel, .ceo-card { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .ceo-photo { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 840px) {
  /* Toggle Buttons */
  .hide-mob { display: none !important; }
  .show-mob { display: block !important; }
  .mobile-toggle { display: block !important; cursor: pointer; z-index: 1001; }

  /* Ensure header allows dropdown visibility */
  header {
    overflow: visible !important;
  }

  /* Fixed Mobile Dropdown Navigation */
  .nav-links {
    display: none; /* Hidden by default */
    gap: 10px;
  }

  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 78px !important; /* Right below the 78px header */
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-height: calc(100vh - 78px) !important;
    background-color: #ffffff !important;
    padding: 16px 24px 30px 24px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 2px solid var(--line) !important;
    overflow-y: auto !important;
    z-index: 99999 !important; /* Ensure it stays above hero content */
  }

  /* Mobile Links Styling - Explicit Colors and Sizes */
  .nav-links.mobile-open a {
    display: block !important;
    padding: 10px 0 !important;
    color: #0f172a !important; /* Dark solid readable text */
    font-size: 16px !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #e6edf5 !important;
    text-align: left !important;
  }

  .nav-links.mobile-open a:last-child {
    border-bottom: none !important;
  }

  /* Accent Highlight for Mobile Buttons */
  .nav-links.mobile-open a.partner-bk {
    background-color: #0071C5 !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    margin-top: 10px !important;
    text-align: center !important;
  }

  .nav-links.mobile-open a.partner-register-mob {
    background-color: #16a34a !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    text-align: center !important;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    width: 100%;
  }

  /* Responsive Grid Adjustments */
  .hero { padding-top: 116px; min-height: auto; }
  .hero h1 { font-size: 38px; letter-spacing: -1.2px; }
  .hero p { font-size: 17px; }
  .hero .subline { font-size: 18px; }
  
  .section { padding: 60px 0; }
  .section-title { font-size: 30px; }
  .grid-2, .grid-3, .grid-4, .timeline { grid-template-columns: 1fr; }
  
  .logo-strip .container { grid-template-columns: 1fr 1fr; gap: 12px; }
  .final-cta h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .hero-ctas .btn { width: 100%; }
  .command-card { border-radius: 18px; }
  .ceo-card { padding: 24px; }
  .dash-showcase { padding: 20px; }
  .contact-hero { padding: 30px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 30px; }
  .contact-form { padding: 24px; }
  
  /* License Bar & Metrics Responsive Adjustments */
  .ls-bar { grid-template-columns: 100px 1fr 40px; font-size: 11px; }
  .ti-metrics, .ls-metrics, .rt-buckets { grid-template-columns: 1fr; }
  
  /* Chatbot adjustments for small mobile screens */
  #chatContainer {
    width: calc(100vw - 40px);
    right: 20px;
    left: 20px;
    bottom: 150px;
  }
}