:root{
  --brand:#6953A0;
  --text:#111827;
  --muted:#6B7280;
  --border:#E5E7EB;
  --bg:#FFFFFF;
  --bg-soft:#F7F7FB;
  --dark:#0B0F19;
  --radius:16px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}


/* Accessibility / professional polish */
:focus-visible{
  outline: 3px solid rgba(105,83,160,.35);
  outline-offset: 2px;
}
::selection{
  background: rgba(105,83,160,.18);
}

.topbar{
  position:sticky; top:0; z-index:1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{width:42px;height:42px;border-radius:12px}
.brand .name{line-height:1.05}
.brand .name .row1{font-weight:800;font-size:14px;letter-spacing:.2px}
.brand .name .row2{font-weight:800;font-size:14px;letter-spacing:.2px}
.brand .name .smart{color:var(--brand)}
.links{
  display:flex; align-items:center; gap:18px;
  font-weight:600; font-size:14px;
}
.links a{padding:10px 10px;border-radius:12px}
.links a:hover{background:var(--bg-soft); color:var(--brand)}
/* Active page link (we will add class="active" in HTML) */
.links a.active{
  color: var(--brand);
  background: rgba(105,83,160,.10);
  border: 1px solid rgba(105,83,160,.18);
}

.actions{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  font-weight:700; font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-outline{border-color:var(--border); background:#fff}
.btn-outline:hover{border-color:rgba(105,83,160,.35); color:var(--brand)}
.btn-primary{background:var(--brand); color:#fff}
.btn-primary:hover{opacity:.95}

.hamburger{
  display:none;
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--border); background:#fff;
}
.hamburger:hover{border-color:rgba(105,83,160,.35)}
.hamburger span{display:block;width:18px;height:2px;background:var(--text);margin:4px auto;border-radius:2px}

.mobile{
  display:none;
  border-top:1px solid var(--border);
  padding:10px 0 18px;
}
.mobile a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  font-weight:700; font-size:14px;
}
.mobile a:hover{background:var(--bg-soft); color:var(--brand)}
.mobile a.active{
  color: var(--brand);
  background: rgba(105,83,160,.10);
  border: 1px solid rgba(105,83,160,.18);
}

.hero{
  border-bottom:1px solid var(--border);
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFBFF 100%);
}
.hero-grid{
  display:grid; gap:28px;
  grid-template-columns: 1.1fr .9fr;
  padding:46px 0 52px;
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(105,83,160,.2);
  background: rgba(105,83,160,.08);
  color: var(--brand);
  font-weight:800; font-size:12px;
}
.h1{
  margin:14px 0 10px;
  font-size:44px; line-height:1.08;
  letter-spacing:-.6px;
}
.h1 .accent{color:var(--brand)}
.lead{color:var(--muted); font-size:16px; max-width:52ch}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}

.cards2{
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
  margin-top:18px;
}
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  padding:14px;
}
.card b{display:block}
.card small{color:var(--muted); display:block; margin-top:6px}

.panel{
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
  padding:22px;
  box-shadow: var(--shadow);
}
.panel h3{margin:0 0 12px;font-size:14px;letter-spacing:.3px}
.step{
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  margin-top:10px;
  background: #fff;
}
.step b{display:block}
.step span{display:block;color:var(--muted); margin-top:6px; font-size:13px}

.section{padding:54px 0}
.section-head{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:start;
}
.eyebrow{color:var(--brand); font-weight:900; font-size:12px; letter-spacing:.18em; text-transform:uppercase}
.h2{margin:8px 0 10px;font-size:30px;letter-spacing:-.3px}
.p{color:var(--muted);margin:0}
.grid4{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.item{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background:#fff;
}
.item b{display:block}
.item p{margin:8px 0 0;color:var(--muted);font-size:14px}

.stats{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background: var(--bg-soft);
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  padding:22px 0;
}
.stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
}
.stat b{color:var(--brand)}
.stat small{display:block;color:var(--muted);margin-top:6px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
}

.insights-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.post{
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  background:#fff;
}
.post .tag{font-weight:900;color:var(--brand);font-size:12px}
.post h3{margin:10px 0 8px;font-size:18px}
.post p{margin:0;color:var(--muted);font-size:14px}
.post a{display:inline-flex;margin-top:12px;font-weight:800}
.post a:hover{color:var(--brand)}

.cta{
  border-top:1px solid var(--border);
  padding:52px 0;
}
.cta-box{
  border-radius:24px;
  background: var(--dark);
  color:#fff;
  padding:34px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:20px;
}
.cta-box h2{margin:0;font-size:28px;letter-spacing:-.3px}
.cta-box p{margin:10px 0 0;color:rgba(255,255,255,.75)}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:flex-end;justify-content:flex-end}
.btn-dark-outline{
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:#fff;
}
.btn-dark-outline:hover{border-color:rgba(255,255,255,.45)}
.btn-dark-primary{
  background: var(--brand);
  color:#fff;
}
.btn-dark-primary:hover{opacity:.95}

.footer{
  border-top:1px solid var(--border);
  padding:34px 0 18px;
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:18px;
}
.footer h4{margin:0 0 10px;font-size:13px;letter-spacing:.06em;text-transform:uppercase;color:#374151}
.footer a, .footer span{display:block;color:var(--muted);padding:6px 0;font-size:14px}
.footer a:hover{color:var(--brand)}
.footer-bottom{
  border-top:1px solid var(--border);
  margin-top:18px;
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}

/* Page header */
.pagehead{
  padding:34px 0;
  border-bottom:1px solid var(--border);
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFBFF 100%);
}
.pagehead h1{margin:0;font-size:34px;letter-spacing:-.3px}
.pagehead p{margin:10px 0 0;color:var(--muted);max-width:70ch}
.kicker{display:inline-flex;margin-bottom:10px}

/* Forms */
.form{
  margin-top:16px;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  background:#fff;
}
.field{display:grid;gap:8px;margin-top:12px}
.field label{font-weight:800;font-size:13px}
.input, .textarea, .select{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
.input:focus, .textarea:focus, .select:focus{border-color:rgba(105,83,160,.55)}
.textarea{min-height:120px;resize:vertical}

/* NEW: Contact cards / social block */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.contact-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background:#fff;
}
.contact-card b{display:block}
.contact-card a{
  color: var(--text);
  font-weight:800;
}
.contact-card a:hover{color:var(--brand)}
.contact-card small{
  display:block;
  margin-top:6px;
  color: var(--muted);
}

/* NEW: Services list (PDF-style bullet list option) */
.iconlist{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.iconlist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
}
.iconlist .dot{
  width:10px;height:10px;border-radius:50%;
  background: rgba(105,83,160,.35);
  margin-top:6px;
  flex: 0 0 auto;
}
.iconlist span{
  display:block;
  color: var(--muted);
  font-size:14px;
  margin-top:4px;
}

/* NEW: WhatsApp floating button (optional but recommended) */
.whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: #22C55E;
  color:#fff;
  font-weight:900;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.whatsapp-fab:hover{opacity:.95}
.whatsapp-fab .wa-dot{
  width:10px;height:10px;border-radius:50%;
  background: rgba(255,255,255,.9);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .section-head{grid-template-columns:1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
  .footer-grid{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .links{display:none}
  .actions{display:none}
  .hamburger{display:block}
  .mobile{display:block}
  .cards2{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr}
  .insights-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}

/* ===== Homepage Premium Hero ===== */
.hero-premium{
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #5b3ea8 0%,
    #6953A0 35%,
    #7c66c9 70%,
    #9b8cf2 100%
  );
  color: #fff;
}

.hero-premium::before,
.hero-premium::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter: blur(80px);
  opacity: .45;
}

.hero-premium::before{
  width:420px;
  height:420px;
  background:#ffffff;
  top:-120px;
  left:-120px;
}

.hero-premium::after{
  width:520px;
  height:520px;
  background:#c4b5fd;
  bottom:-160px;
  right:-160px;
}

.hero-premium .hero-grid{
  padding:110px 0 120px;
}

.hero-premium .badge{
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
  color:#fff;
}

.hero-premium .h1{
  font-size:64px;
  line-height:1.05;
  letter-spacing:-1px;
  margin:16px 0;
}

.hero-premium .h1 span{
  display:block;
  font-size:22px;
  font-weight:600;
  letter-spacing:.2px;
  opacity:.9;
  margin-top:14px;
}

.hero-premium .lead{
  color: rgba(255,255,255,.9);
  font-size:18px;
  max-width:60ch;
}

.hero-premium .btn-primary{
  background:#fff;
  color:#6953A0;
}

.hero-premium .btn-outline{
  border-color: rgba(255,255,255,.6);
  color:#fff;
}

.hero-premium .btn-outline:hover{
  background: rgba(255,255,255,.12);
}
.hero-premium .btn-outline{
  background:#5b3ea8;
  color:#fff;
  border:1px solid #fff;
}

.hero-premium .btn-outline:hover{
  background:#4a3193;
}

.hero-premium .btn-outline{
  background:#5b3ea8;
  color:#fff;
  border:1px solid #fff;
}

.hero-premium .btn-outline:hover{
  background:#4a3193;
}
/* ===== Motion system (Phase 1) ===== */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important; transition:none!important; animation:none!important;}
}

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

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animated premium hero background */
.hero-premium{
  background-size: 200% 200%;
  animation: gradientShift 10s ease-in-out infinite;
}

/* Subtle reveal animation for hero content */
.hero-premium .badge,
.hero-premium .h1,
.hero-premium .lead,
.hero-premium .hero-cta{
  animation: floatIn .7s ease-out both;
}
.hero-premium .h1{ animation-delay: .08s; }
.hero-premium .lead{ animation-delay: .16s; }
.hero-premium .hero-cta{ animation-delay: .24s; }

/* Hover lift for cards/items */
.item, .post, .card, .contact-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.item:hover, .post:hover, .card:hover, .contact-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  border-color: rgba(105,83,160,.25);
}

/* Scroll reveal (JS adds .reveal + .is-visible) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* =========================
   NEW HERO THEME (Phase 1+)
   ========================= */

:root{
  --brand-dark:#3B1FA3;
  --brand-main:#6D4DFF;
  --brand-light:#A89CFF;
  --hero-bg:
    radial-gradient(900px 500px at 15% 10%, rgba(168,156,255,.70), transparent 55%),
    radial-gradient(800px 520px at 85% 20%, rgba(109,77,255,.55), transparent 60%),
    radial-gradient(900px 600px at 60% 95%, rgba(59,31,163,.60), transparent 55%),
    linear-gradient(135deg, #120A2D 0%, #2A146C 40%, #5A3BDE 100%);
}

/* Make hero premium */
.hero{
  min-height: 92vh;
  background: var(--hero-bg);
  display:flex;
  align-items:center;
  color:#fff;
  position:relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Decorative blobs */
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:999px;
  filter: blur(35px);
  opacity:.55;
  z-index:0;
  animation: floaty 10s ease-in-out infinite;
}
.hero::before{
  background: rgba(168,156,255,.65);
  top:-160px;
  left:-160px;
}
.hero::after{
  background: rgba(109,77,255,.55);
  bottom:-180px;
  right:-180px;
  animation-duration: 12s;
}

@keyframes floaty{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(10px,18px) scale(1.03); }
}

/* Hero layout */
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding: 54px 0 58px;
  position:relative;
  z-index:1; /* above blobs */
}

/* Glass hero card */
.hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: fadeUp .85s ease forwards;
}

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

/* Badge */
.hero-badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

/* Title with SMART thick purple */
.hero-title{
  margin: 16px 0 12px;
  font-size: clamp(44px, 6.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -1px;
}
.hero-title .smart{
  font-weight: 950;
  color: var(--brand-light);
  text-shadow: 0 10px 30px rgba(0,0,0,.30);
}
.hero-title .grade{
  font-weight: 800;
  color:#fff;
}
.hero-title .nexus{
  display:block;
  font-weight: 650;
  opacity: .95;
}

/* Subtitle */
.hero-subtitle{
  margin: 0;
  font-size: 18px;
  opacity: .92;
  max-width: 62ch;
}

/* CTA buttons (high contrast) */
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 26px;
}

.btn-hero-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .18s ease, opacity .18s ease;
}
.btn-hero-primary:hover{ transform: translateY(-1px); opacity:.95; }

.btn-hero-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  transition: transform .18s ease, border-color .18s ease;
}
.btn-hero-outline:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.95); }

/* Right panel tweaks to match new theme */
.panel{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  color:#fff;
}
.panel h3{ color: rgba(255,255,255,.85); }
.step{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.step span{ color: rgba(255,255,255,.85); }

/* Improve topbar contrast slightly over hero */
.topbar{
  background: rgba(10,7,24,.35);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.links a{ color: rgba(255,255,255,.92); }
.links a:hover{ background: rgba(255,255,255,.10); color: #fff; }
.brand .name .row1, .brand .name .row2{ color:#fff; }
.brand .name .smart{ color: var(--brand-light); }

/* Mobile */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ padding: 34px; }
}
@media (max-width: 760px){
  .hero{ min-height: 88vh; }
  .hero-card{ padding: 28px; border-radius: 22px; }
  .hero-title{ font-size: clamp(40px, 10vw, 56px); }
}
/* ===== TOP NAV BAR – WHITE THEME ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff; /* solid white */
  border-bottom: 1px solid #E5E7EB;
  backdrop-filter: none;
}

/* Brand text */
.brand .name .row1,
.brand .name .row2 {
  color: #3B2A7A; /* deep purple */
  font-weight: 900;
}

.brand .name .smart {
  color: #6953A0; /* brand purple */
  font-weight: 900;
}

/* Navigation links */
.links a {
  color: #4C1D95; /* purple text */
  font-weight: 700;
  transition: all 0.2s ease;
}

.links a:hover {
  background: rgba(105, 83, 160, 0.08);
  color: #2E1065; /* darker purple */
}

/* Active page highlight (optional) */
.links a.active {
  background: rgba(105, 83, 160, 0.15);
  color: #2E1065;
}

/* Buttons in header */
.actions .btn-outline {
  border-color: #6953A0;
  color: #6953A0;
}

.actions .btn-outline:hover {
  background: rgba(105, 83, 160, 0.1);
}

.actions .btn-primary {
  background: #6953A0;
  color: #ffffff;
}

.actions .btn-primary:hover {
  background: #5B45A0;
}

/* Hamburger icon */
.hamburger {
  background: #ffffff;
  border: 1px solid #D1D5DB;
}

.hamburger span {
  background: #4C1D95;
}
/* ===== HERO: DXC-STYLE TOP STRIP (NO CIRCLE / NO BLOB) ===== */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);

  /* main hero background (clean, premium) */
  background: #0b0f19;
}

/* Top colour strip only */
.hero::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;

  /* STRIP HEIGHT */
  height: 240px;

  /* HARD COLOUR BANDS (horizontal strip) */
  background: linear-gradient(90deg,
    #3b82f6 0% 10%,
    #6366f1 10% 22%,
    #7c3aed 22% 34%,
    #a855f7 34% 46%,
    #ec4899 46% 58%,
    #f97316 58% 70%,
    #f59e0b 70% 82%,
    #84cc16 82% 92%,
    #22c55e 92% 100%
  );

  opacity: 0.35;
  filter: saturate(1.1) contrast(1.05);
}

/* Dark fade so strip blends into the hero background (DXC-ish) */
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height: 380px;
  background: linear-gradient(
    180deg,
    rgba(11,15,25,0.10) 0%,
    rgba(11,15,25,0.70) 55%,
    rgba(11,15,25,1.00) 100%
  );
}

/* keep content above layers */
.hero .container{
  position: relative;
  z-index: 1;
}