/*
 * EasyERP — Marketing Website
 * Primary Product: Titan Cement ERP
 * Website: easyerp.co.in
 */

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1B4FD8;
  --primary-dark: #1338A8;
  --primary-light: #3B82F6;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --dark: #0F172A;
  --gray-700: #334155;
  --gray-500: #64748B;
  --gray-300: #CBD5E1;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
  --titan-primary: #EA580C;
  --titan-dark: #9A3412;
  --titan-light: #FED7AA;
  --retail-primary: #0D9488;
  --hospital-primary: #16A34A;
  --hotel-primary: #7C3AED;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; color: var(--dark); line-height: 1.3; }
a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
a:hover { color: var(--primary-dark); text-decoration: none; }
img { max-width: 100%; }

/* ===== UTILITIES ===== */
.section-bg { background: var(--gray-50); }
.section-dark { background: var(--dark); }
.text-titan { color: var(--titan-primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(27,79,216,0.08);
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.titan-theme .section-label { color: var(--titan-primary); background: rgba(234,88,12,0.08); }
.section-header h2 { font-size: 2.4rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,79,216,0.35);
}
.btn-outline-custom {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-custom:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-titan {
  display: inline-block;
  background: var(--titan-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--titan-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-titan:hover {
  background: var(--titan-dark);
  border-color: var(--titan-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234,88,12,0.35);
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
}
.btn-white:hover { background: var(--gray-100); color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }

/* ===== HEADER / NAVIGATION ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
#header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.logo-text { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo-text span { color: var(--primary); }
.logo-tagline { font-size: 9px; color: var(--gray-500); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-top: -3px; }
.main-nav { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav li a {
  font-family: var(--font-heading); font-size: 14px; font-weight: 500;
  color: var(--gray-700); padding: 8px 14px; border-radius: var(--radius-sm);
  display: block; transition: all 0.2s ease; white-space: nowrap;
}
.main-nav li a:hover, .main-nav li.active a { color: var(--primary); background: rgba(27,79,216,0.06); }
.main-nav li.nav-cta a {
  background: var(--primary); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius-md);
}
.main-nav li.nav-cta a:hover {
  background: var(--primary-dark); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 4px 15px rgba(27,79,216,0.3);
}
.drop-down { position: relative; }
.drop-down > ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 240px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 8px; flex-direction: column; gap: 2px;
  z-index: 1001; border: 1px solid var(--gray-100); list-style: none;
}
.drop-down:hover > ul { display: flex; }
.drop-down > ul li a { font-size: 14px; padding: 10px 16px; border-radius: var(--radius-sm); white-space: nowrap; }
.drop-down > ul li a .cs-badge {
  display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; background: var(--accent); color: var(--white);
  padding: 2px 7px; border-radius: 10px; margin-left: 6px; vertical-align: middle;
}
.mobile-nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--dark); cursor: pointer; padding: 8px; }
.header-spacer { height: 70px; }

/* ===== HOMEPAGE HERO ===== */
#hero-home {
  background: linear-gradient(135deg, #0B1426 0%, #0F2060 50%, #1B4FD8 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
#hero-home::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 50%);
}
.hero-eyebrow {
  display: inline-block; font-family: var(--font-heading); font-size: 11px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(245,158,11,0.35);
  padding: 6px 18px; border-radius: 20px; margin-bottom: 24px;
}
#hero-home h1 { font-size: 3.6rem; font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 24px; }
#hero-home h1 span { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 520px; line-height: 1.85; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 36px; }
.hero-trust p { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.trust-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65);
}
/* Hero Dashboard Visual */
.hero-dashboard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 24px; backdrop-filter: blur(10px);
}
.dashboard-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dashboard-topbar .db-title { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }
.db-live { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #34D399; font-weight: 600; }
.db-live::before { content: ''; width: 7px; height: 7px; background: #34D399; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.kpi-mini {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 14px; transition: all 0.3s;
}
.kpi-mini:hover { background: rgba(255,255,255,0.1); }
.kpi-mini .km-val { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.kpi-mini .km-lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.kpi-mini .km-icon { font-size: 18px; margin-bottom: 8px; }
.kpi-mini.orange .km-icon { color: #FB923C; }
.kpi-mini.blue .km-icon { color: #60A5FA; }
.kpi-mini.green .km-icon { color: #34D399; }
.kpi-mini.purple .km-icon { color: #A78BFA; }
.ai-alert-box {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-md); padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px;
}
.ai-alert-box .alert-dot { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.ai-alert-box p { font-size: 11.5px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0; font-style: italic; }
.ai-alert-box .alert-ok { font-size: 11px; color: #34D399; font-weight: 600; margin-top: 4px; }
.dept-status-bar { display: flex; gap: 6px; align-items: center; }
.dept-pill {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm);
  padding: 8px 6px; text-align: center;
}
.dept-pill .dp-name { font-size: 9px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.dept-pill .dp-pct { font-family: var(--font-heading); font-size: 13px; font-weight: 700; margin-top: 2px; }
.dept-pill.ok .dp-pct { color: #34D399; }
.dept-pill.warn .dp-pct { color: #FBBF24; }
.dept-pill.danger .dp-pct { color: #EF4444; }

/* ===== STATS BAR ===== */
#stats-bar { padding: 40px 0; border-bottom: 1px solid var(--gray-100); }
.stat-item { text-align: center; padding: 16px; }
.stat-item .stat-val { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-item .stat-lbl { font-size: 13px; color: var(--gray-500); margin-top: 6px; font-weight: 500; }
.stat-divider { width: 1px; background: var(--gray-100); }

/* ===== PRODUCTS ===== */
.product-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 2px solid var(--gray-100); transition: all 0.3s ease; box-shadow: var(--shadow-sm);
  height: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card.titan { border-color: var(--titan-primary); }
.product-card.titan:hover { box-shadow: 0 20px 50px rgba(234,88,12,0.15); }
.product-card.coming-soon { opacity: 0.75; }
.product-card.coming-soon:hover { opacity: 0.9; transform: translateY(-3px); }
.product-status {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px;
  border-radius: 20px; margin-bottom: 20px;
}
.product-status.live { background: rgba(5,150,105,0.1); color: #059669; }
.product-status.soon { background: rgba(245,158,11,0.1); color: #D97706; }
.product-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px;
}
.titan-icon { background: rgba(234,88,12,0.1); color: var(--titan-primary); }
.retail-icon { background: rgba(13,148,136,0.1); color: var(--retail-primary); }
.hospital-icon { background: rgba(22,163,74,0.1); color: var(--hospital-primary); }
.hotel-icon { background: rgba(124,58,237,0.1); color: var(--hotel-primary); }
.product-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.product-card > p { color: var(--gray-500); font-size: 14px; margin-bottom: 20px; line-height: 1.7; flex-grow: 1; }
.product-features-mini { list-style: none; padding: 0; margin: 0 0 24px; }
.product-features-mini li { font-size: 13px; color: var(--gray-700); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.product-features-mini li::before { content: '✓'; font-weight: 700; color: #059669; flex-shrink: 0; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--gray-100); margin-top: auto; }
.product-price { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--titan-primary); }
.product-price small { font-size: 11px; color: var(--gray-500); font-weight: 500; }

/* ===== PLATFORM PILLARS (dark section) ===== */
#platform { background: var(--dark); }
#platform .section-label { color: var(--accent); background: rgba(245,158,11,0.12); }
#platform .section-header h2 { color: var(--white); }
#platform .section-header p { color: rgba(255,255,255,0.55); }
.pillar-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all 0.3s ease; height: 100%;
}
.pillar-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(27,79,216,0.4); }
.pillar-icon {
  width: 70px; height: 70px; border-radius: var(--radius-md);
  background: rgba(27,79,216,0.2); display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #60A5FA; margin: 0 auto 24px;
}
.pillar-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.pillar-card p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ===== COMPARISON GRID ===== */
.comparison-row { display: flex; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--gray-100); gap: 0; }
.comparison-row:last-child { border-bottom: none; }
.comp-feature { flex: 3; font-size: 14px; font-weight: 500; color: var(--dark); }
.comp-val { flex: 1; text-align: center; font-size: 14px; color: var(--gray-500); }
.comp-val.titan { color: var(--titan-primary); font-weight: 700; }
.comp-header { background: var(--dark); padding: 12px 20px; border-radius: var(--radius-md) var(--radius-md) 0 0; display: flex; align-items: center; gap: 0; }
.comp-header .comp-feature { color: rgba(255,255,255,0.45); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-heading); }
.comp-header .comp-val { color: rgba(255,255,255,0.45); font-size: 12px; font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.comp-header .comp-val.titan { color: var(--accent); }
.comp-table { border: 1px solid var(--gray-100); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.comp-table .comparison-row:hover { background: var(--gray-50); }

/* ===== HOW IT WORKS ===== */
.hiw-card { text-align: center; padding: 32px 24px; }
.hiw-num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--primary);
  color: var(--white); font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.hiw-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.hiw-card p { color: var(--gray-500); font-size: 14px; line-height: 1.75; }
.hiw-connector { display: flex; align-items: center; justify-content: center; color: var(--gray-300); font-size: 28px; padding-top: 30px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0B2FA0 100%);
  border-radius: var(--radius-xl); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; }

/* ===== FOOTER ===== */
#footer { background: #080E1D; padding: 60px 0 0; }
.footer-brand { margin-bottom: 28px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.42); font-size: 13.5px; margin-top: 12px; max-width: 260px; line-height: 1.75; }
.footer-col-title { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,0.58); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-links .cs { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); margin: 0; }
.footer-social a {
  display: inline-flex; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 14px; margin-left: 8px; transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px;
  background: var(--primary); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 998;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-3px); }

/* ===== TITAN HERO ===== */
#titan-hero {
  background: linear-gradient(135deg, #0C0300 0%, #6B1E06 35%, #C2410C 70%, #EA580C 100%);
  padding: 110px 0 80px; position: relative; overflow: hidden;
  min-height: 85vh; display: flex; align-items: center;
}
#titan-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 60%);
  background-size: 80px 80px;
}
.titan-eyebrow {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; background: rgba(255,255,255,0.1); color: #FED7AA;
  padding: 6px 18px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.18); margin-bottom: 24px;
}
#titan-hero h1 { font-size: 3.2rem; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
#titan-hero h1 span { color: #FED7AA; }
.titan-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.85; max-width: 500px; margin-bottom: 28px; }
.titan-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.titan-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px;
}
.titan-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Hero KPI cards */
.titan-kpi-grid { display: flex; flex-direction: column; gap: 12px; }
.titan-kpi-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 16px; backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.titan-kpi-card:hover { background: rgba(255,255,255,0.11); transform: translateX(4px); }
.titan-kpi-icon { font-size: 28px; flex-shrink: 0; }
.titan-kpi-val { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; color: var(--white); line-height: 1; }
.titan-kpi-lbl { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* ===== PROBLEM CARDS ===== */
.problem-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  border-left: 4px solid #DC2626; box-shadow: var(--shadow-sm); transition: all 0.3s ease; height: 100%;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.problem-card .prob-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.problem-card h5 { font-size: 1rem; font-weight: 700; color: #DC2626; margin-bottom: 8px; }
.problem-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; margin: 0; }

/* ===== MODULE CARDS ===== */
.module-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--gray-100); transition: all 0.3s ease; height: 100%;
  text-decoration: none; display: block; color: inherit;
}
.module-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--titan-primary); color: inherit; }
.module-icon {
  width: 50px; height: 50px; background: rgba(234,88,12,0.08);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--titan-primary); margin-bottom: 18px;
}
.module-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.module-card p { font-size: 13.5px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.7; }
.role-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.role-tag { font-size: 11px; font-weight: 600; background: var(--gray-100); color: var(--gray-700); padding: 3px 10px; border-radius: 20px; }
.module-link { color: var(--titan-primary); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.module-card:hover .module-link { gap: 8px; }

/* ===== MEGA COMPARISON TABLE ===== */
.mega-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.mega-table thead tr { background: var(--dark); }
.mega-table thead th { padding: 18px 16px; font-family: var(--font-heading); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); text-align: center; white-space: nowrap; }
.mega-table thead th:first-child { text-align: left; width: 28%; }
.mega-table thead .th-titan { background: var(--titan-primary); color: var(--white); font-size: 13px; font-weight: 700; }
.mega-table tbody tr { background: var(--white); transition: background 0.15s; }
.mega-table tbody tr:hover { background: var(--gray-50); }
.mega-table tbody tr:nth-child(even) { background: #FAFBFC; }
.mega-table tbody td { padding: 15px 16px; font-size: 13.5px; text-align: center; color: var(--gray-500); border-bottom: 1px solid var(--gray-100); }
.mega-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--dark); font-size: 14px; }
.mega-table tbody .td-titan { background: rgba(234,88,12,0.03); font-weight: 600; color: var(--dark); }
.val-yes { color: #059669; font-size: 18px; }
.val-no { color: #DC2626; font-size: 18px; }
.val-partial { color: #D97706; font-weight: 700; font-size: 13px; }
.val-na { color: var(--gray-300); font-size: 18px; }
.price-tag { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--titan-primary); background: rgba(234,88,12,0.08); padding: 3px 10px; border-radius: var(--radius-sm); white-space: nowrap; }
.price-tag.gray { color: var(--gray-500); background: var(--gray-100); }
.price-tag.red { color: #DC2626; background: rgba(220,38,38,0.08); }

/* ===== CHARTS ===== */
.chart-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); height: 100%;
}
.chart-wrap h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.chart-wrap p { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }

/* ===== WORKFLOW ===== */
#workflow { background: var(--dark); }
#workflow .section-header h2 { color: var(--white); }
#workflow .section-label { color: var(--titan-primary); background: rgba(234,88,12,0.15); }
#workflow .section-header p { color: rgba(255,255,255,0.5); }
.workflow-row { display: flex; align-items: stretch; gap: 0; overflow-x: auto; padding-bottom: 12px; margin-bottom: 32px; }
.wf-node {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm); padding: 14px 12px; min-width: 110px; flex-shrink: 0;
  cursor: default; transition: all 0.25s ease; position: relative;
}
.wf-node:hover { background: rgba(234,88,12,0.2); border-color: rgba(234,88,12,0.5); }
.wf-dept { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--titan-primary); margin-bottom: 5px; }
.wf-activity { font-size: 11px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.wf-num { position: absolute; top: 6px; right: 8px; font-size: 9px; color: rgba(255,255,255,0.2); font-weight: 700; }
.wf-arrow { color: rgba(255,255,255,0.15); font-size: 16px; display: flex; align-items: center; padding: 0 2px; flex-shrink: 0; }
.sla-legend { display: flex; gap: 24px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.sla-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); }
.sla-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.sla-dot.green { background: #059669; }
.sla-dot.yellow { background: var(--accent); }
.sla-dot.red { background: #DC2626; }

/* ===== AI CO-PILOT ===== */
.ai-layer {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  border-left: 4px solid var(--primary); box-shadow: var(--shadow-sm);
  margin-bottom: 18px; transition: all 0.3s ease;
}
.ai-layer:hover { box-shadow: var(--shadow-md); transform: translateX(5px); }
.ai-layer.l1 { border-left-color: #6366F1; }
.ai-layer.l2 { border-left-color: #0EA5E9; }
.ai-layer.l3 { border-left-color: #10B981; }
.ai-layer.l4 { border-left-color: #F59E0B; }
.ai-layer-num { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; }
.ai-layer h5 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ai-layer p { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; margin: 0; }
.ai-sample {
  background: rgba(27,79,216,0.04); border: 1px solid rgba(27,79,216,0.12);
  border-radius: var(--radius-md); padding: 20px; margin-top: 10px;
}
.ai-sample .aisample-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary-light); margin-bottom: 8px; }
.ai-sample p { font-size: 13px; font-style: italic; color: var(--gray-700); line-height: 1.6; margin: 0; }

/* ===== KPI STRIP ===== */
.kpi-strip { background: linear-gradient(135deg, var(--titan-primary), var(--titan-dark)); }
.kpi-item { text-align: center; padding: 40px 20px; }
.kpi-val { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.kpi-lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 8px; font-weight: 500; }

/* ===== ROADMAP ===== */
.roadmap-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); position: relative;
  transition: all 0.3s ease; height: 100%; overflow: hidden;
}
.roadmap-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.roadmap-bg-num { font-family: var(--font-heading); font-size: 5rem; font-weight: 800; color: rgba(234,88,12,0.07); position: absolute; top: 12px; right: 20px; line-height: 1; }
.roadmap-phase { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--titan-primary); margin-bottom: 12px; }
.roadmap-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.roadmap-card p { font-size: 13.5px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.7; }
.roadmap-duration { display: inline-block; font-size: 12px; font-weight: 600; background: rgba(234,88,12,0.08); color: var(--titan-primary); padding: 4px 14px; border-radius: 20px; }

/* ===== PRICING ===== */
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--gray-100);
  transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column;
}
.pricing-card.featured { border-color: var(--titan-primary); box-shadow: 0 20px 50px rgba(234,88,12,0.15); transform: translateY(-8px); }
.pricing-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--titan-primary); color: var(--white); padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; }
.plan-name { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.plan-price { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--titan-primary); line-height: 1; margin: 12px 0 4px; }
.plan-price sup { font-size: 1.2rem; font-weight: 600; vertical-align: top; margin-top: 10px; }
.plan-period { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.plan-includes { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; }
.plan-features li { font-size: 14px; color: var(--gray-700); padding: 9px 0; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--gray-100); }
.plan-features li:last-child { border-bottom: none; }
.plan-features .fi { color: #059669; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.plan-features .fx { color: var(--gray-300); flex-shrink: 0; margin-top: 2px; }
.plan-note { font-size: 11px; color: var(--gray-500); text-align: center; margin-top: 10px; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--gray-100); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; background: var(--white); border: none; padding: 20px 24px;
  text-align: left; font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q.open { color: var(--titan-primary); background: rgba(234,88,12,0.02); }
.faq-q .faq-icon { font-size: 22px; color: var(--gray-300); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--titan-primary); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--gray-500); line-height: 1.85; background: var(--white); }
.faq-a.open { display: block; }

/* ===== DEPT HERO (sub-pages) ===== */
.dept-hero { background: linear-gradient(135deg, #0F172A 0%, #1a1a3e 100%); padding: 100px 0 60px; }
.dept-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.dept-breadcrumb a { color: rgba(255,255,255,0.4); }
.dept-breadcrumb a:hover { color: var(--accent); }
.dept-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.dept-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.62); max-width: 600px; line-height: 1.8; }
.dept-roles { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.dept-role-tag { background: rgba(234,88,12,0.18); border: 1px solid rgba(234,88,12,0.3); color: #FED7AA; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }

/* ===== CONTACT ===== */
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-field { width: 100%; padding: 14px 18px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14px; color: var(--dark); background: var(--white); transition: all 0.2s ease; margin-bottom: 16px; outline: none; }
.form-field:focus { border-color: var(--titan-primary); box-shadow: 0 0 0 3px rgba(234,88,12,0.1); }
.form-field::placeholder { color: var(--gray-300); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  #hero-home h1 { font-size: 2.9rem; }
  #titan-hero h1 { font-size: 2.7rem; }
  .section-header h2 { font-size: 2.1rem; }
}
@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; background: var(--white);
    box-shadow: var(--shadow-lg); padding: 16px; z-index: 999;
    border-top: 1px solid var(--gray-100); gap: 2px;
  }
  .main-nav.open .drop-down > ul { display: flex; position: static; box-shadow: none; border: none; background: var(--gray-50); margin: 4px 0; }
  .hiw-connector { display: none; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .section-header h2 { font-size: 1.85rem; }
  #hero-home { padding: 80px 0 60px; min-height: auto; }
  #hero-home h1 { font-size: 2.2rem; }
  #titan-hero { padding: 80px 0 60px; min-height: auto; }
  #titan-hero h1 { font-size: 2rem; }
  .hero-actions, .titan-hero-actions { flex-direction: column; }
  .hero-actions a, .titan-hero-actions a { text-align: center; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .section-header h2 { font-size: 1.6rem; }
  #hero-home h1 { font-size: 1.85rem; }
  #titan-hero h1 { font-size: 1.75rem; }
  .kpi-val { font-size: 2.4rem; }
}
