:root {
  --ink-900: #0b1324;
  --ink-800: #16213a;
  --ink-700: #263356;
  --indigo-700: #3730a3;
  --indigo-600: #4338ca;
  --indigo-500: #4f46e5;
  --indigo-400: #6366f1;
  --indigo-100: #e0e7ff;
  --indigo-50: #eef2ff;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-100: #ccfbf1;
  --amber-500: #d97706;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --border: #e6ebf2;
  --border-strong: #d3dbe8;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.09);
  --shadow-glow: 0 10px 40px rgba(79, 70, 229, 0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--slate-700);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
}
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; letter-spacing: -0.02em; color: var(--ink-900); }
section { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
nav.scrolled { box-shadow: var(--shadow-md); border-bottom-color: var(--border-strong); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--indigo-600), var(--teal-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white; box-shadow: var(--shadow-glow);
}
.logo-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--ink-900); }
.logo-name span { color: var(--indigo-600); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.55rem 1rem; color: var(--slate-600); text-decoration: none;
  font-size: 0.92rem; font-weight: 500; border-radius: 8px; transition: all 0.2s ease;
}
.nav-links a:hover { color: var(--indigo-600); background: var(--indigo-50); }
.nav-links a.active { color: var(--indigo-600); font-weight: 600; }

.nav-dd { position: relative; }
.nav-dd > a { display: flex; align-items: center; gap: 0.4rem; }
.nav-dd > a::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.62rem; color: var(--indigo-500); transition: transform 0.3s;
}
.nav-dd:hover > a::after { transform: rotate(180deg); }
.dd-panel {
  position: absolute; top: calc(100% + 0.6rem); left: -1rem; min-width: 340px;
  background: var(--white); border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 1rem; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s ease; box-shadow: var(--shadow-lg);
}
.nav-dd:hover .dd-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.dd-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: 10px;
  text-decoration: none; color: var(--slate-600); transition: all 0.2s ease; font-size: 0.85rem;
}
.dd-item:hover { background: var(--indigo-50); color: var(--indigo-700); }
.dd-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo-100), var(--teal-100));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--indigo-600); flex-shrink: 0;
}
.btn-nav {
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  color: white; border: none; padding: 0.65rem 1.4rem; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s ease; box-shadow: 0 6px 16px rgba(67, 56, 202, 0.25);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(67, 56, 202, 0.35); }
.btn-outline-nav {
  background: transparent; color: var(--slate-700); border: 1px solid var(--border-strong);
  padding: 0.6rem 1.2rem; border-radius: 10px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; margin-right: 0.5rem;
}
.btn-outline-nav:hover { background: var(--slate-50); border-color: var(--slate-300); }
.hamburger { display: none; background: none; border: none; color: var(--indigo-600); font-size: 1.4rem; cursor: pointer; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 6.5rem 2rem 4rem; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, var(--indigo-50) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, var(--teal-100) 0%, transparent 65%),
    var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--slate-100) 1px, transparent 1px), linear-gradient(90deg, var(--slate-100) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 10%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--indigo-50); border: 1px solid var(--indigo-100); border-radius: 100px;
  padding: 0.45rem 1.1rem; margin-bottom: 1.6rem; font-size: 0.85rem; font-weight: 500; color: var(--indigo-700);
  animation: fadeUp 0.6s ease forwards;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(20,184,166,0.5)} 50%{box-shadow:0 0 0 6px rgba(20,184,166,0)} }
.hero-title { font-size: clamp(2.6rem, 4.6vw, 3.9rem); font-weight: 800; line-height: 1.08; margin-bottom: 1.5rem; animation: fadeUp 0.6s ease 0.1s both; }
.hero-title .line-accent {
  background: linear-gradient(90deg, var(--indigo-600), var(--teal-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block;
}
.hero-sub { font-size: 1.1rem; color: var(--slate-600); line-height: 1.8; margin-bottom: 2.4rem; max-width: 540px; font-weight: 400; animation: fadeUp 0.6s ease 0.2s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s ease 0.3s both; }
.btn-primary {
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
  color: white; border: none; padding: 0.9rem 2rem; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.3s ease; box-shadow: 0 10px 24px rgba(67, 56, 202, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(67, 56, 202, 0.4); }
.btn-outline {
  background: var(--white); color: var(--ink-900); border: 1px solid var(--border-strong);
  padding: 0.9rem 2rem; border-radius: 12px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--slate-50); border-color: var(--slate-300); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); animation: fadeUp 0.6s ease 0.4s both; }
.hs { text-align: left; }
.hs-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--ink-900); }
.hs-label { font-size: 0.8rem; color: var(--slate-500); margin-top: 0.2rem; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; animation: fadeUp 0.7s ease 0.2s both; }
.dashboard-mockup {
  width: 100%; background: var(--white); border: 1px solid var(--border-strong); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.dash-topbar { background: var(--slate-50); border-bottom: 1px solid var(--border); padding: 0.85rem 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #f87171; } .dot-y { background: #fbbf24; } .dot-g { background: #34d399; }
.dash-title-bar { font-size: 0.78rem; color: var(--slate-500); margin-left: 0.5rem; font-family: monospace; }
.dash-body { padding: 1.3rem; background: linear-gradient(180deg, var(--white), var(--slate-50)); }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 1rem; }
.kpi-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.kpi-card:hover { border-color: var(--indigo-400); transform: translateY(-2px); }
.kpi-label { font-size: 0.7rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi-val { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--ink-900); margin: 0.25rem 0; }
.kpi-change { font-size: 0.72rem; color: var(--teal-600); font-weight: 600; }
.dash-row { display: grid; grid-template-columns: 2fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.chart-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; box-shadow: var(--shadow-sm); }
.chart-title { font-size: 0.78rem; color: var(--slate-500); margin-bottom: 0.8rem; font-weight: 500; }
.bar-chart { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top, var(--indigo-600), var(--indigo-400)); animation: barGrow 1s ease forwards; transform-origin: bottom; }
@keyframes barGrow { from {transform:scaleY(0)} to{transform:scaleY(1)} }
.donut-wrap { display: flex; align-items: center; justify-content: center; padding: 0.5rem; }
.donut-chart {
  width: 65px; height: 65px; border-radius: 50%;
  background: conic-gradient(var(--indigo-500) 0deg 126deg, var(--teal-500) 126deg 216deg, var(--slate-200) 216deg 360deg);
  display: flex; align-items: center; justify-content: center;
}
.donut-hole { width: 44px; height: 44px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--ink-900); font-weight: 700; }
.activity-list { display: flex; flex-direction: column; gap: 0.5rem; }
.act-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; color: var(--slate-600); padding: 0.45rem 0.6rem; background: var(--slate-50); border-radius: 8px; border-left: 2px solid var(--indigo-500); }
.act-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); flex-shrink: 0; }
.module-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.mtag { font-size: 0.7rem; padding: 0.32rem 0.75rem; border-radius: 100px; background: var(--indigo-50); border: 1px solid var(--indigo-100); color: var(--indigo-700); font-weight: 500; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ====== SECTION HEADER ====== */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.s-header { text-align: center; margin-bottom: 4rem; }
.s-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--indigo-600); margin-bottom: 1rem;
}
.s-eyebrow::before, .s-eyebrow::after { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--indigo-400)); }
.s-eyebrow::after { background: linear-gradient(90deg, var(--indigo-400), transparent); }
.s-title { font-size: clamp(2rem, 3.6vw, 2.85rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.s-title span { background: linear-gradient(90deg, var(--indigo-600), var(--teal-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.s-sub { font-size: 1rem; color: var(--slate-600); max-width: 620px; margin: 0 auto; line-height: 1.8; }

/* ====== WHY ====== */
.why-section { padding: 6.5rem 2rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1280px; margin: 0 auto; }
.why-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem;
  transition: all 0.3s ease; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--indigo-500), var(--teal-500)); opacity: 0; transition: opacity 0.3s; }
.why-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 54px; height: 54px; background: linear-gradient(135deg, var(--indigo-50), var(--teal-100));
  border: 1px solid var(--indigo-100); border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--indigo-600);
}
.why-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.why-desc { font-size: 0.9rem; color: var(--slate-600); line-height: 1.75; }

/* ====== MODULES ====== */
.modules-section { padding: 6.5rem 2rem; background: var(--slate-50); }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.mod-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem;
  transition: all 0.3s ease; cursor: pointer; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.mod-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.mod-header { display: flex; align-items: center; gap: 1rem; }
.mod-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0; }
.mod-meta h3 { font-size: 1.08rem; font-weight: 700; }
.mod-meta p { font-size: 0.78rem; color: var(--slate-500); margin-top: 0.15rem; }
.mod-desc { font-size: 0.88rem; color: var(--slate-600); line-height: 1.7; }
.mod-features { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.feat-tag { font-size: 0.72rem; padding: 0.28rem 0.68rem; border-radius: 6px; background: var(--slate-100); border: 1px solid var(--border); color: var(--slate-700); }
.mod-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--indigo-600); font-weight: 600; margin-top: auto; transition: gap 0.2s; }
.mod-card:hover .mod-link { gap: 0.8rem; }

.mi-crm { background: linear-gradient(135deg, #e0e7ff, #ccfbf1); color: var(--indigo-600); }
.mi-grh { background: linear-gradient(135deg, #ede9fe, #e0e7ff); color: #7c3aed; }
.mi-compta { background: linear-gradient(135deg, #fef3c7, #e0e7ff); color: var(--amber-500); }
.mi-gpao { background: linear-gradient(135deg, #fee2e2, #e0e7ff); color: #dc2626; }
.mi-proj { background: linear-gradient(135deg, #ccfbf1, #e0e7ff); color: var(--teal-600); }
.mi-sc { background: linear-gradient(135deg, #cffafe, #e0e7ff); color: #0891b2; }
.mi-bi { background: linear-gradient(135deg, #dbeafe, #ccfbf1); color: #2563eb; }
.mi-doc { background: linear-gradient(135deg, #fce7f3, #e0e7ff); color: #db2777; }

/* ====== SERVICES ====== */
.services-section { padding: 6.5rem 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1280px; margin: 0 auto; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2.5rem 2rem; transition: all 0.3s ease; text-align: center; box-shadow: var(--shadow-sm); }
.svc-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.svc-icon {
  width: 70px; height: 70px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--indigo-50), var(--teal-100));
  border: 1px solid var(--indigo-100); border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: var(--indigo-600);
}
.svc-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.svc-desc { font-size: 0.9rem; color: var(--slate-600); line-height: 1.75; margin-bottom: 1.5rem; }
.svc-list { list-style: none; text-align: left; }
.svc-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--slate-600); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--teal-600); font-size: 0.72rem; }

/* ====== PROCESS ====== */
.process-section { padding: 6.5rem 2rem; background: var(--slate-50); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: 1280px; margin: 0 auto; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo-300), var(--teal-300), transparent); z-index: 0;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 2px solid var(--indigo-500);
  display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 1.4rem;
  font-weight: 800; color: var(--indigo-600); margin-bottom: 1.2rem; box-shadow: 0 6px 18px rgba(79,70,229,0.15); transition: all 0.3s ease;
}
.step:hover .step-num { transform: scale(1.08); box-shadow: 0 10px 26px rgba(79,70,229,0.25); }
.step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.8rem; color: var(--slate-500); line-height: 1.6; }

/* ====== PRICING ====== */
.pricing-section { padding: 6.5rem 2rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; display: flex; flex-direction: column; transition: all 0.3s ease; position: relative; box-shadow: var(--shadow-sm); }
.price-card.featured { border-color: var(--indigo-400); background: linear-gradient(180deg, var(--indigo-50), var(--white) 40%); transform: scale(1.03); box-shadow: var(--shadow-glow); }
.price-card:hover { transform: translateY(-6px) scale(1); box-shadow: var(--shadow-lg); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--indigo-600), var(--teal-500)); color: white; padding: 0.32rem 1.2rem;
  border-radius: 100px; font-size: 0.7rem; font-weight: 700; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em;
}
.price-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.4rem; }
.price-tagline { font-size: 0.8rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.price-amount { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.price-num { font-family: 'Outfit', sans-serif; font-size: 2.1rem; font-weight: 800; color: var(--ink-900); }
.price-per { font-size: 0.8rem; color: var(--slate-500); }
.price-feats { flex: 1; margin-bottom: 1.5rem; }
.pf { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--slate-600); padding: 0.42rem 0; border-bottom: 1px solid var(--slate-100); }
.pf i { color: var(--teal-600); margin-top: 0.15rem; font-size: 0.72rem; flex-shrink: 0; }
.btn-price-main {
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500)); color: white; border: none; padding: 0.85rem;
  border-radius: 12px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  text-decoration: none; display: block; text-align: center; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(67,56,202,0.25);
}
.btn-price-main:hover { box-shadow: 0 12px 28px rgba(67,56,202,0.35); transform: translateY(-2px); }
.btn-price-sec {
  background: var(--white); color: var(--indigo-600); border: 1px solid var(--border-strong); padding: 0.85rem;
  border-radius: 12px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  text-decoration: none; display: block; text-align: center; transition: all 0.3s ease;
}
.btn-price-sec:hover { background: var(--slate-50); transform: translateY(-2px); }
.pricing-custom {
  max-width: 1280px; margin: 3rem auto 0; background: linear-gradient(135deg, var(--indigo-50), var(--teal-100));
  border: 1px solid var(--indigo-100); border-radius: 18px; padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.pc-text h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.pc-text p { font-size: 0.9rem; color: var(--slate-600); }

/* ====== CONTACT ====== */
.contact-section { padding: 6.5rem 2rem; background: var(--slate-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1280px; margin: 0 auto; align-items: start; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.25rem; }
.fg label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.5rem; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.85rem 1rem; background: var(--white); border: 1px solid var(--border-strong);
  border-radius: 10px; color: var(--ink-900); font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: all 0.25s ease; outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--indigo-500); box-shadow: 0 0 0 3px var(--indigo-100); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500)); color: white; border: none;
  padding: 1rem; border-radius: 12px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem; transition: all 0.3s ease; box-shadow: 0 10px 24px rgba(67,56,202,0.28);
}
.form-submit:hover { box-shadow: 0 14px 30px rgba(67,56,202,0.4); transform: translateY(-2px); }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.ci-header h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.ci-header p { color: var(--slate-600); line-height: 1.75; }
.ci-cards { display: flex; flex-direction: column; gap: 1rem; }
.ci-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; display: flex; align-items: center; gap: 1rem; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.ci-card:hover { border-color: var(--border-strong); transform: translateX(4px); }
.ci-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--indigo-50), var(--teal-100)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--indigo-600); flex-shrink: 0; }
.ci-text h5 { font-size: 0.85rem; font-weight: 700; }
.ci-text p { font-size: 0.82rem; color: var(--slate-500); margin-top: 0.15rem; }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

/* ====== FOOTER ====== */
footer { background: var(--ink-900); padding: 4rem 2rem 2rem; position: relative; z-index: 1; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: #94a3b8; font-size: 0.88rem; line-height: 1.75; margin: 1rem 0; }
.footer-brand .logo-name { color: white; }
.socials { display: flex; gap: 0.75rem; }
.social {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 0.9rem; transition: all 0.3s ease; text-decoration: none;
}
.social:hover { background: rgba(255,255,255,0.12); color: white; transform: translateY(-2px); }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; color: white; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: #64748b; }
.footer-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: #64748b; }
.fb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400); animation: pulse 2s infinite; }

/* ====== SCROLL REVEAL ====== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; } .reveal-d4 { transition-delay: 0.4s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav, .btn-outline-nav { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 999; box-shadow: var(--shadow-md);
  }
  .nav-links.open .btn-nav, .nav-links.open .btn-outline-nav { display: inline-flex; margin-top: 0.5rem; }
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .modules-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .dash-row { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .pricing-custom { flex-direction: column; text-align: center; }
}

/* ====== PAGE HEADER (sous-pages) ====== */
.page-hero {
  padding: 9.5rem 2rem 4rem;
  background: radial-gradient(ellipse 70% 60% at 85% 0%, var(--indigo-50) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 0% 100%, var(--teal-100) 0%, transparent 65%), var(--white);
  text-align: center;
}
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--slate-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--indigo-600); }
.page-hero-icon {
  width: 76px; height: 76px; margin: 0 auto 1.5rem; border-radius: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  background: linear-gradient(135deg, var(--indigo-50), var(--teal-100)); color: var(--indigo-600);
  border: 1px solid var(--indigo-100);
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero h1 span { background: linear-gradient(90deg, var(--indigo-600), var(--teal-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { font-size: 1.05rem; color: var(--slate-600); max-width: 680px; margin: 0 auto 2rem; line-height: 1.8; }
.page-hero .hero-actions { justify-content: center; }

/* ====== MODULE DETAIL ====== */
.module-overview { padding: 5rem 2rem; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; max-width: 1280px; margin: 0 auto; align-items: center; }
.overview-visual {
  background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 2.5rem;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 1.2rem;
}
.overview-visual-icon {
  width: 84px; height: 84px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto;
}
.overview-visual .stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.9rem; }
.overview-stat { background: var(--slate-50); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; text-align: center; }
.overview-stat .num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--ink-900); }
.overview-stat .lbl { font-size: 0.75rem; color: var(--slate-500); margin-top: 0.2rem; }
.overview-text h2 { font-size: 2rem; margin-bottom: 1.2rem; }
.overview-text p { color: var(--slate-600); line-height: 1.85; margin-bottom: 1rem; }

.feature-block { padding: 5rem 2rem; background: var(--slate-50); }
.feature-grid-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.feature-detail-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.feature-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.feature-detail-card .fd-icon {
  width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.2rem; background: linear-gradient(135deg, var(--indigo-50), var(--teal-100)); color: var(--indigo-600);
}
.feature-detail-card h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.feature-detail-card p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.7; }

.workflow-block { padding: 5rem 2rem; }
.workflow-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.wf-item { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--border); }
.wf-item:last-child { border-bottom: none; }
.wf-num {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--indigo-500); color: var(--indigo-600);
  display: flex; align-items: center; justify-content: center; font-family:'Outfit',sans-serif; font-weight: 800; font-size: 1rem;
}
.wf-content h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.wf-content p { font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; }

.related-modules { padding: 5rem 2rem; background: var(--slate-50); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.related-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem;
  text-decoration: none; color: inherit; display: flex; align-items: center; gap: 1rem; transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.related-card .ric { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.related-card h5 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.related-card p { font-size: 0.78rem; color: var(--slate-500); }

.cta-band {
  max-width: 1280px; margin: 0 auto 6rem; padding: 3rem; border-radius: 24px;
  background: linear-gradient(135deg, var(--indigo-600), var(--teal-500));
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h3 { color: white; font-size: 1.6rem; margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta-band .btn-primary { background: white; color: var(--indigo-700); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.cta-band .btn-primary:hover { background: var(--slate-50); }

/* ====== ABOUT PAGE ====== */
.about-story { padding: 5rem 2rem; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; max-width: 1280px; margin: 0 auto; align-items: center; }
.about-story-grid p { color: var(--slate-600); line-height: 1.85; margin-bottom: 1rem; }
.about-visual-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.timeline { max-width: 900px; margin: 0 auto; padding: 5rem 2rem; }
.tl-item { display: grid; grid-template-columns: 100px 1fr; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.tl-item::before { content:''; position:absolute; left: 49px; top: 8px; bottom: -8px; width: 1px; background: var(--border-strong); }
.tl-item:last-child::before { display: none; }
.tl-year { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--indigo-600); }
.tl-content h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.tl-content p { font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--indigo-100), var(--teal-100)); color: var(--indigo-600); font-size: 2rem; font-family: 'Outfit',sans-serif; font-weight: 800;
}
.team-card h5 { font-size: 0.98rem; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.82rem; color: var(--slate-500); }

/* ====== BLOG ====== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1280px; margin: 0 auto; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit; transition: all 0.3s ease; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.blog-thumb {
  height: 170px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: white;
}
.blog-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--indigo-600); }
.blog-body h3 { font-size: 1.08rem; line-height: 1.4; }
.blog-body p { font-size: 0.86rem; color: var(--slate-600); line-height: 1.65; flex: 1; }
.blog-meta { font-size: 0.78rem; color: var(--slate-500); display: flex; align-items: center; gap: 0.5rem; margin-top: auto; }

/* ====== PRICING PAGE EXTRAS ====== */
.compare-table-wrap { max-width: 1100px; margin: 0 auto; overflow-x: auto; padding: 0 1rem; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.compare-table th, .compare-table td { padding: 0.95rem 1.2rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.compare-table th { background: var(--slate-50); font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--ink-900); }
.compare-table td { color: var(--slate-600); }
.compare-table .ok { color: var(--teal-600); }
.compare-table .no { color: var(--slate-300); }
.faq-wrap { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q { padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; color: var(--ink-900); font-size: 0.95rem; }
.faq-q i { color: var(--indigo-500); transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 1.5rem 1.3rem; }
.faq-a p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.75; }

/* ====== CONTACT PAGE EXTRAS ====== */
.contact-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1280px; margin: 0 auto 4rem; }
.cm-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); transition: all .3s; }
.cm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cm-card .cm-icon { width: 60px; height: 60px; margin: 0 auto 1.2rem; border-radius: 16px; background: linear-gradient(135deg, var(--indigo-50), var(--teal-100)); color: var(--indigo-600); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.cm-card h4 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.cm-card p { font-size: 0.86rem; color: var(--slate-600); }

@media (max-width: 1024px) {
  .overview-grid, .about-story-grid { grid-template-columns: 1fr; }
  .feature-grid-detail, .related-grid, .values-grid, .team-grid, .blog-grid, .contact-methods { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .feature-grid-detail, .related-grid, .values-grid, .team-grid, .blog-grid, .contact-methods { grid-template-columns: 1fr; }
  .wf-item { grid-template-columns: 40px 1fr; gap: 1rem; }
  .cta-band { flex-direction: column; text-align: center; }
  .tl-item { grid-template-columns: 70px 1fr; }
}
