/* ============================================
   Zero Dark 24 — Shared Stylesheet
   Professional / Fully Responsive Rebuild
   ============================================ */
:root{
  --blue:#2563eb;
  --blue-dark:#1d4ed8;
  --blue-light:#60a5fa;
  --navy:#0f172a;
  --navy-2:#16213e;
  --text:#1e293b;
  --muted:#64748b;
  --bg-soft:#f8fafc;
  --bg-blue-soft:#eef2ff;
  --border:#e2e8f0;
  --white:#ffffff;
  --accent:#2563eb; /* overridden per-page */
  --accent-dark:#1d4ed8;
  --radius-sm:10px;
  --radius:14px;
  --radius-lg:22px;
  --radius-xl:28px;
  --shadow-xs:0 1px 3px rgba(15,23,42,.06);
  --shadow:0 6px 22px -4px rgba(15,23,42,.08);
  --shadow-md:0 16px 40px -12px rgba(15,23,42,.14);
  --shadow-lg:0 30px 60px -20px rgba(15,23,42,.22);
  --ease:cubic-bezier(.4,0,.2,1);
  --dur:.25s;
}
body.page-framework{ --accent:#7c3aed; --accent-dark:#6d28d9; }
body.page-ecosystem{ --accent:#7c3aed; --accent-dark:#6d28d9; }
body.page-threats{ --accent:#2563eb; --accent-dark:#1d4ed8; }
body.page-bfsi{ --accent:#2563eb; --accent-dark:#1d4ed8; }
body.page-ai-reality{ --accent:#4338ca; --accent-dark:#3730a3; }
body.page-why-us{ --accent:#2563eb; --accent-dark:#1d4ed8; }

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
body.nav-open{overflow:hidden;}
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
:focus-visible{outline:2.5px solid var(--accent); outline-offset:3px; border-radius:4px;}
.container{max-width:1180px; margin:0 auto; padding:0 24px;}
section{padding:26px 0;}
@media (max-width:600px){ section{padding:20px 0;} .container{padding:0 18px;} }

h1,h2,h3,h4{font-weight:800; color:var(--navy); line-height:1.18; letter-spacing:-.01em;}
h1{font-size:clamp(2rem,4.4vw + .6rem,2.6rem); margin-bottom:10px;}
h2{font-size:clamp(1.5rem,2.6vw + .7rem,2rem); margin-top:2px; margin-bottom:6px;}
h3{font-size:clamp(1.05rem,.4vw + .95rem,1.15rem);}
p{color:var(--muted);}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px; font-size:.85rem; font-weight:800; letter-spacing:.08em;
  color:var(--accent); text-transform:uppercase; margin-bottom:8px;
}
.eyebrow i{font-size:.8rem;}
.section-head{max-width:720px; margin:0 auto 18px; text-align:center;}
.section-head .eyebrow{display:inline-flex; justify-content:center;}
.section-head h2{margin-top:4px;}
@media (max-width:600px){ .section-head{margin-bottom:14px;} }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 28px; border-radius:11px; font-weight:700; font-size:.94rem;
  border:1px solid transparent; cursor:pointer; transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space:nowrap;
}
.btn i{font-size:.8rem; transition:transform var(--dur) var(--ease);}
.btn:hover i{transform:translateX(3px);}
.btn:active{transform:translateY(1px);}
.btn-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:#fff; box-shadow:0 8px 20px -6px rgba(37,99,235,.5), 0 2px 4px rgba(37,99,235,.2);
}
.btn-primary:hover{
  box-shadow:0 14px 30px -8px rgba(37,99,235,.6), 0 2px 6px rgba(37,99,235,.25);
  transform:translateY(-2px);
}
.btn-outline{background:#fff; color:var(--navy); border-color:var(--border);}
.btn-outline:hover{border-color:var(--blue); color:var(--blue); box-shadow:0 6px 16px rgba(37,99,235,.14); transform:translateY(-2px);}
.btn-white{background:#fff; color:var(--navy); box-shadow:0 8px 20px -6px rgba(0,0,0,.28);}
.btn-white:hover{transform:translateY(-2px); box-shadow:0 12px 26px -6px rgba(0,0,0,.32);}
.btn-white-outline{background:transparent; border-color:rgba(255,255,255,.5); color:#fff;}
.btn-white-outline:hover{border-color:#fff; background:rgba(255,255,255,.1); transform:translateY(-2px);}
.hero-btns{display:flex; gap:14px; flex-wrap:wrap; margin:26px 0 34px;}
@media (max-width:480px){
  .hero-btns{flex-direction:column; align-items:stretch;}
  .hero-btns .btn{width:100%;}
}

/* ---------- Navbar ---------- */
.navbar{
  position:sticky; top:0; z-index:1000; background:rgba(255,255,255,.96);
  -webkit-backdrop-filter:saturate(180%) blur(14px); backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:1240px; margin:0 auto; padding:12px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  position:relative;
}
.brand{display:flex; align-items:center; gap:14px;}
.brand-logo-img{
  width:64px; height:64px; border-radius:50%; object-fit:contain;
  flex-shrink:0; filter: drop-shadow(0 4px 14px rgba(15,23,42,.18));
  transition:transform var(--dur) var(--ease), filter var(--dur) var(--ease);
  background: transparent !important;
}
.brand:hover .brand-logo-img{transform:scale(1.05); filter: drop-shadow(0 6px 18px rgba(15,23,42,.26));}
.brand-mark{
  width:56px; height:56px; border-radius:14px;
  background:linear-gradient(150deg,var(--navy),#1e2a4a);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.3rem;
  flex-shrink:0; box-shadow:0 6px 16px -4px rgba(15,23,42,.45), inset 0 1px 0 rgba(255,255,255,.12);
}
.brand-text .name{font-weight:800; font-size:1.22rem; color:var(--navy); line-height:1.2;}
.brand-text .tag{font-size:.75rem; color:var(--muted); letter-spacing:.01em;}

.nav-links{display:flex; align-items:center; gap:20px;}
.nav-links a{
  font-size:.92rem; font-weight:600; color:var(--text); padding:6px 0; position:relative;
  transition:color var(--dur) var(--ease);
}
.nav-links a:hover{color:var(--accent);}
.nav-links a.active{color:var(--accent);}
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-19px; height:2.5px; background:var(--accent); border-radius:2px;
}
.mobile-nav-arrow{display:none;}
.mobile-drawer-cta{display:none;}

.nav-actions{display:flex; align-items:center; gap:12px;}
.nav-toggle{
  display:none; background:#ffffff; border:1.5px solid var(--border); cursor:pointer; z-index:1001;
  width:42px; height:42px; min-width:42px; min-height:42px; align-items:center; justify-content:center; border-radius:10px;
  flex-direction:column; gap:5px; padding:0; box-shadow:0 1px 3px rgba(15,23,42,0.06);
  -webkit-tap-highlight-color:transparent;
}
.nav-toggle:hover{border-color:var(--blue); background:#f8fafc;}
.nav-toggle span{
  display:block; width:22px; height:2px; background:var(--navy); border-radius:2px;
  transition:transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg); background:var(--blue);}
body.nav-open .nav-toggle span:nth-child(2){opacity:0;}
body.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg); background:var(--blue);}

.nav-overlay{
  display:none; position:fixed; inset:0; background:rgba(15,23,42,.55); z-index:998;
  opacity:0; transition:opacity .25s var(--ease);
  backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px);
}
body.nav-open .nav-overlay{display:block; opacity:1;}

@media (max-width:960px){
  .navbar{background:#ffffff;}
  .nav-links{
    position:absolute; top:100%; left:0; right:0; width:100%; background:#ffffff;
    border-top:1px solid var(--border); border-bottom:3px solid var(--blue);
    box-shadow:0 24px 48px -12px rgba(15,23,42,.28);
    flex-direction:column; align-items:stretch; padding:16px 20px 24px; gap:4px;
    z-index:999; max-height:calc(100dvh - 76px); overflow-y:auto; -webkit-overflow-scrolling:touch;
    opacity:0; visibility:hidden; pointer-events:none; transform:translateY(-10px);
    transition:opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
  }
  .nav-links.open, body.nav-open .nav-links{
    opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);
  }
  .nav-links li{width:100%;}
  .nav-links a{
    width:100%; padding:13px 14px; font-size:1.02rem; font-weight:700; color:var(--navy);
    border-radius:10px; display:flex; align-items:center; justify-content:space-between;
    background:#f8fafc; border:1px solid #f1f5f9; margin-bottom:4px;
    transition:all .2s ease;
  }
  .nav-links a:hover, .nav-links a:active{
    background:#eff6ff; color:var(--blue); border-color:#bfdbfe; transform:translateX(3px);
  }
  .nav-links a.active{
    background:#eff6ff; color:var(--blue); border-color:#93c5fd; font-weight:800;
  }
  .nav-links a.active::after{display:none;}
  .mobile-nav-arrow{display:inline-block; font-size:.8rem; color:var(--muted); transition:transform .2s ease;}
  .nav-links a:hover .mobile-nav-arrow{color:var(--blue); transform:translateX(3px);}
  .mobile-drawer-cta{display:block !important; width:100%;}
  .nav-toggle{display:flex;}
  .nav-desktop-cta{display:none !important;}
}

@media (max-width:480px){
  .brand-logo-img{width:50px; height:50px;}
  .brand-text .name{font-size:1.08rem;}
  .brand-text .tag{display:none;}
  .nav-inner{padding:10px 16px;}
}

/* ---------- Breadcrumb ---------- */
.breadcrumb{padding:16px 0 0; font-size:.85rem; color:var(--muted);}
.breadcrumb a{color:var(--blue); font-weight:600;}

/* ---------- Hero ---------- */
.hero{padding:clamp(28px, 3.8vw, 42px) 0 clamp(32px, 4.2vw, 46px);}
.hero-grid{display:grid; grid-template-columns:0.95fr 1.05fr; gap:44px; align-items:flex-start;}
.hero h1{margin-bottom:14px;}
.hero p.lead{font-size:1.05rem; max-width:520px; margin-bottom:12px;}
.hero-media{position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); isolation:isolate;}
@media (min-width: 961px) {
  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 40px;
    align-items: flex-start;
  }
  .hero-media {
    margin-left: 20px;
    width: calc(100% + 20px);
    max-width: 650px;
    align-self: flex-start;
    margin-top: 4px;
  }
  .hero-media-elevated {
    margin-top: 0px;
    align-self: flex-start;
  }
}
.hero-media img{border-radius:var(--radius-lg); aspect-ratio:16/9; width:100%; height:auto; object-fit:cover; object-position:center; transform:scale(1.02); transition:transform 0.4s ease;}
.hero-media:hover img{transform:scale(1.05);}
.page-services .hero-media img{aspect-ratio:1376/768; object-fit:cover; object-position:left center;}
.page-why-us .hero-media img{aspect-ratio:1280/698; object-fit:cover; object-position:center top;}
.hero-media::after{
  content:""; position:absolute; inset:0; border-radius:var(--radius-lg);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08); pointer-events:none;
}
.hero-badge{
  position:absolute; background:rgba(255,255,255,.94); backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.6); border-radius:13px;
  box-shadow:0 14px 30px -8px rgba(15,23,42,.28), 0 2px 6px rgba(15,23,42,.08);
  padding:12px 16px; font-size:.8rem; display:flex; align-items:center; gap:10px; max-width:min(88%,270px);
}
.hero-badge .dot{
  width:9px; height:9px; border-radius:50%; background:#22c55e; flex-shrink:0;
  box-shadow:0 0 0 4px rgba(34,197,94,.18);
  animation:pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{
  0%,100%{box-shadow:0 0 0 4px rgba(34,197,94,.18);}
  50%{box-shadow:0 0 0 7px rgba(34,197,94,.1);}
}
.hero-badge b{display:block; font-size:.85rem; color:var(--navy);}
@media (prefers-reduced-motion:reduce){ .hero-badge .dot{animation:none;} }
@media (max-width:960px){ .hero-grid{grid-template-columns:1fr; gap:36px;} }
@media (max-width:600px){
  .hero-badge{padding:10px 13px; font-size:.74rem; gap:8px;}
  .hero-badge b{font-size:.78rem;}
}
@media (max-width:420px){
  .hero-badge{position:static; margin-top:12px; max-width:100%;}
}

/* ---------- Stat strip ---------- */
.stat-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  box-shadow:var(--shadow); overflow:hidden; margin-top:36px;
}
.stat-strip .stat{
  padding:22px 20px; border-right:1px solid var(--border); position:relative; transition:background var(--dur) var(--ease);
}
.stat-strip .stat:last-child{border-right:none;}
.stat-strip .stat::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px; transform:scaleX(0);
  background:linear-gradient(90deg,var(--blue),#7c3aed); transition:transform var(--dur) var(--ease); transform-origin:left;
}
.stat-strip .stat:hover{background:var(--bg-soft);}
.stat-strip .stat:hover::before{transform:scaleX(1);}
.stat-strip .stat .num{
  font-size:clamp(1.3rem,1.4vw + 1rem,1.65rem); font-weight:800; color:var(--navy); letter-spacing:-.02em;
}
.stat-strip .stat .label{font-size:.78rem; color:var(--muted); margin-top:2px; font-weight:500;}
@media (max-width:768px){
  .stat-strip{grid-template-columns:repeat(2,1fr);}
  .stat-strip .stat:nth-child(2){border-right:none;}
  .stat-strip .stat:nth-child(1),.stat-strip .stat:nth-child(2){border-bottom:1px solid var(--border);}
}
@media (max-width:380px){
  .stat-strip{grid-template-columns:1fr;}
  .stat-strip .stat{border-right:none !important; border-bottom:1px solid var(--border);}
  .stat-strip .stat:last-child{border-bottom:none;}
}

/* ---------- Icon circle ---------- */
.icon-circle{
  width:52px; height:52px; border-radius:15px; display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; margin-bottom:16px; position:relative; isolation:isolate;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5), 0 1px 2px rgba(15,23,42,.04);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover .icon-circle, .step:hover .icon-circle, .industry-card:hover .icon-circle{transform:translateY(-3px) scale(1.06) rotate(-2deg);}
.ic-blue{background:linear-gradient(150deg,#dbeafe,#bfdbfe); color:#1d4ed8; box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -6px rgba(37,99,235,.45);}
.ic-purple{background:linear-gradient(150deg,#ede9fe,#ddd6fe); color:#6d28d9; box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -6px rgba(124,58,237,.45);}
.ic-green{background:linear-gradient(150deg,#dcfce7,#bbf7d0); color:#15803d; box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -6px rgba(22,163,74,.45);}
.ic-orange{background:linear-gradient(150deg,#ffedd5,#fed7aa); color:#c2410c; box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -6px rgba(234,88,12,.45);}
.ic-red{background:linear-gradient(150deg,#fee2e2,#fecaca); color:#b91c1c; box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -6px rgba(220,38,38,.45);}
.ic-teal{background:linear-gradient(150deg,#ccfbf1,#99f6e4); color:#0f766e; box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -6px rgba(13,148,136,.45);}
.ic-pink{background:linear-gradient(150deg,#fce7f3,#fbcfe8); color:#be185d; box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px -6px rgba(219,39,119,.45);}

/* ---------- Card grid ---------- */
.grid{display:grid; gap:24px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
.grid-5{grid-template-columns:repeat(5,1fr);}
.grid-6{grid-template-columns:repeat(6,1fr);}
@media (max-width:960px){
  .grid-3,.grid-4,.grid-5,.grid-6{grid-template-columns:repeat(2,1fr);}
  .grid{gap:20px;}
}
@media (max-width:600px){
  .grid-2,.grid-3,.grid-4,.grid-5,.grid-6{grid-template-columns:1fr;}
}

.card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:26px 22px; transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position:relative; overflow:hidden;
}
.card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px; transform:scaleX(0); transform-origin:left;
  background:linear-gradient(90deg,var(--accent),var(--blue-light)); transition:transform .3s var(--ease);
}
.card:hover{
  box-shadow:var(--shadow-md);
  transform:translateY(-5px); border-color:transparent;
}
.card:hover::before{transform:scaleX(1);}
.card h3{margin-bottom:8px;}
.card p{font-size:.9rem;}
.card .learn{display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:.85rem; font-weight:700; color:var(--blue);}
.card .num{
  font-size:.72rem; font-weight:800; color:#cbd5e1; float:right; letter-spacing:.04em;
  font-variant-numeric:tabular-nums;
}

.badge{
  display:inline-flex; align-items:center; gap:6px; font-size:.66rem; font-weight:800; letter-spacing:.05em;
  padding:5px 11px 5px 9px; border-radius:20px; margin-top:14px;
}
.badge::before{content:""; width:5px; height:5px; border-radius:50%; background:currentColor; opacity:.85;}
.badge-critical{background:#fee2e2; color:#dc2626;}
.badge-high{background:#ffedd5; color:#c2410c;}
.badge-medium{background:#dbeafe; color:#2563eb;}

/* ---------- numbered timeline ---------- */
.timeline{display:grid; grid-template-columns:repeat(5,1fr); gap:18px; position:relative;}
.timeline::before{
  content:""; position:absolute; top:41px; left:11%; right:11%; height:1px;
  background:repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px); z-index:0;
}
.timeline .step{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:24px 18px; text-align:center; position:relative; z-index:1;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.timeline .step:hover{
  transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:transparent;
}
.timeline .step .step-num{
  width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-dark)); color:#fff;
  font-size:.8rem; font-weight:800; display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px; box-shadow:0 6px 14px -4px rgba(37,99,235,.55);
}
.timeline .step .icon-circle{margin:0 auto 14px;}
.timeline .step h3{margin-bottom:6px; font-size:1rem;}
.timeline .step p{font-size:.82rem;}
.timeline .step .underline{width:30px; height:3px; background:var(--accent); margin:14px auto 0; border-radius:2px;}
@media (max-width:960px){.timeline{grid-template-columns:repeat(2,1fr);} .timeline::before{display:none;} }
@media (max-width:600px){.timeline{grid-template-columns:1fr;} }

/* ---------- Dark band ---------- */
.band-dark{
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  border-radius:var(--radius-lg); color:#fff; padding:48px;
  display:grid; grid-template-columns:1fr 2fr; gap:36px; align-items:center;
  position:relative; overflow:hidden;
}
.band-dark::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(560px circle at 100% 0%, rgba(96,165,250,.16), transparent 60%);
}
.band-dark h2{color:#fff;}
.band-dark p{color:#cbd5e1;}
.band-dark .pillars{display:grid; grid-template-columns:repeat(5,1fr); gap:20px; position:relative;}
.band-dark .pillar-icon{
  width:48px; height:48px; border-radius:12px; background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; margin-bottom:12px; font-size:1.1rem;
  border:1px solid rgba(255,255,255,.08); transition:transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.band-dark .pillar:hover .pillar-icon{transform:translateY(-3px); background:rgba(255,255,255,.16);}
.band-dark .pillar h4{color:#fff; font-size:.92rem; margin-bottom:6px;}
.band-dark .pillar p{font-size:.8rem; color:#94a3b8;}
.band-visual{
  width:150px; height:150px; border-radius:50%; margin:0 auto;
  background:radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), rgba(255,255,255,.02));
  display:flex; align-items:center; justify-content:center; font-size:2.4rem;
  border:1px solid rgba(255,255,255,.15);
}
@media (max-width:960px){
  .band-dark{grid-template-columns:1fr; padding:32px 22px;}
  .band-dark .pillars{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:480px){
  .band-dark .pillars{grid-template-columns:1fr;}
}

/* ---------- checklist ---------- */
.checklist{display:grid; grid-template-columns:1fr 1fr; gap:12px 24px; margin:18px 0;}
.checklist li{display:flex; align-items:flex-start; gap:10px; font-size:.92rem; color:var(--text);}
.checklist li i{color:var(--accent); margin-top:3px;}
@media (max-width:600px){.checklist{grid-template-columns:1fr;}}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg,var(--bg-blue-soft),#e0e7ff);
  border-radius:var(--radius-lg); padding:28px 32px; display:flex; align-items:center;
  justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-banner.dark{background:linear-gradient(120deg,var(--navy),var(--navy-2)); color:#fff;}
.cta-banner.dark h2, .cta-banner.dark p{color:#fff;}
.cta-banner.dark p{color:#cbd5e1;}
.cta-banner h2{font-size:1.6rem; margin-bottom:6px;}
.cta-banner .cta-actions{display:flex; gap:14px; flex-wrap:wrap;}
.cta-banner-img{
  background:linear-gradient(120deg,var(--navy),var(--navy-2)); border-radius:var(--radius-lg);
  padding:0; overflow:hidden; display:flex; align-items:stretch; position:relative;
  box-shadow:var(--shadow-lg);
}
.cta-banner-img::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(600px circle at 0% 0%, rgba(37,99,235,.25), transparent 60%);
}
.cta-banner-img .txt{padding:32px 36px; color:#fff; flex:1; position:relative; z-index:1;}
.cta-banner-img .txt h2{color:#fff;}
.cta-banner-img .txt p{color:#cbd5e1;}
.cta-banner-img img{width:340px; object-fit:cover; position:relative;}
@media (max-width:860px){
  .cta-banner-img{flex-direction:column;}
  .cta-banner-img .txt{padding:34px 26px;}
  .cta-banner-img img{width:100%; height:180px;}
}
@media (max-width:600px){
  .cta-banner{padding:30px 24px;}
  .cta-banner .cta-actions{width:100%;}
  .cta-banner .cta-actions .btn{flex:1;}
}

/* ---------- Testimonial ---------- */
.testimonial{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:30px 34px; display:flex; align-items:center; gap:26px; box-shadow:var(--shadow);
}
.testimonial .logo{
  font-weight:800; font-size:1.05rem; color:var(--navy); border:1px solid var(--border);
  border-radius:8px; padding:10px 16px; white-space:nowrap;
}
.testimonial blockquote{font-size:.98rem; color:var(--text); font-style:italic;}
.testimonial cite{display:block; margin-top:8px; font-style:normal; font-size:.85rem; color:var(--muted);}
.dots{display:flex; gap:6px; justify-content:center; margin-top:16px;}
.dots span{width:7px; height:7px; border-radius:50%; background:var(--border);}
.dots span.active{background:var(--accent); width:20px; border-radius:4px;}
@media (max-width:600px){
  .testimonial{flex-direction:column; align-items:flex-start; padding:26px;}
}

/* ---------- Partner logos ---------- */
.partner-row{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;}
.partner-logo{
  flex:1; min-width:130px; text-align:center; padding:16px; border:1px solid var(--border);
  border-radius:10px; font-weight:700; color:var(--navy); background:#fff; font-size:.95rem;
  transition:box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.partner-logo:hover{box-shadow:var(--shadow); transform:translateY(-2px);}

/* ---------- Footer ---------- */
footer{background:#f8fafc; border-top:1px solid var(--border); padding:40px 0 22px; margin-top:40px;}
.footer-top{display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px; padding-bottom:36px;}
.footer-brand p{font-size:.88rem; margin:14px 0 18px;}
.footer-social{display:flex; gap:10px;}
.footer-social a{
  width:36px; height:36px; border-radius:9px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; color:var(--muted);
  transition:all var(--dur) var(--ease); background:#fff;
}
.footer-social a:hover{color:#fff; background:var(--accent); border-color:var(--accent); transform:translateY(-2px);}
.footer-col h4{font-size:.85rem; margin-bottom:16px; color:var(--navy);}
.footer-col li{margin-bottom:10px;}
.footer-col a{font-size:.88rem; color:var(--muted); transition:color var(--dur) var(--ease);}
.footer-col a:hover{color:var(--blue);}
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  padding-top:22px; border-top:1px solid var(--border); font-size:.82rem; color:var(--muted);
}
.footer-badges{display:flex; gap:8px; flex-wrap:wrap;}
.footer-badges span{border:1px solid var(--border); border-radius:6px; padding:5px 10px; font-size:.72rem; font-weight:700;}
@media (max-width:900px){ .footer-top{grid-template-columns:1fr 1fr; gap:30px 24px;} }
@media (max-width:600px){
  footer{padding:44px 0 22px; margin-top:56px;}
  .footer-top{grid-template-columns:1fr; gap:28px;}
  .footer-bottom{flex-direction:column; align-items:flex-start;}
}

/* ---------- Ticker (threats-addressed strip) ---------- */
.ticker{
  background:linear-gradient(90deg,#fef2f2,#fff5f5); border-top:1px solid var(--border);
  border-bottom:1px solid var(--border); padding:12px 0; overflow:hidden; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.ticker::-webkit-scrollbar{display:none;}
.ticker .container{display:flex; gap:14px; flex-wrap:nowrap; align-items:center; font-size:.76rem; color:#b91c1c; font-weight:700; width:max-content; min-width:100%;}
.ticker span{position:relative; padding-left:14px; letter-spacing:.01em; white-space:nowrap;}
.ticker span:first-child{padding-left:0; color:var(--navy); display:flex; align-items:center; gap:6px;}
.ticker span:not(:first-child)::before{
  content:""; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:4px; height:4px; border-radius:50%; background:#fca5a5;
}
.ticker span i{color:#dc2626;}
@media (max-width:768px){
  .ticker .container{flex-wrap:wrap; width:auto; min-width:0;}
}

/* ---------- Split panel (e.g. card grid + supporting image) ---------- */
.split-panel{
  display:grid; grid-template-columns:1.1fr 1fr; gap:28px; align-items:center; margin-top:8px;
}
@media (max-width:960px){
  .split-panel{grid-template-columns:1fr; gap:32px;}
  .split-panel .hero-media{order:-1;}
}

/* ---------- Radial diagram (framework / ecosystem) ---------- */
.radial{position:relative; width:100%; max-width:440px; height:440px; margin:0 auto;}
/* framework.php currently uses .radial as a plain image wrapper (nodes commented out) */
body.page-framework .radial{height:auto;}
body.page-framework .radial img{width:100%; height:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);}
.radial-center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:130px; height:130px; border-radius:50%;
  background:radial-gradient(circle,#1e293b,#0f172a);
  color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:0 0 0 10px rgba(124,58,237,.08), var(--shadow-md); text-align:center; font-size:.72rem; padding:10px;
}
.radial-center .big{font-size:1.5rem; font-weight:800;}
.radial-node{
  position:absolute; width:118px; background:#fff; border:1px solid var(--border); border-radius:12px;
  box-shadow:var(--shadow); padding:14px 10px; text-align:center; font-size:.76rem; font-weight:700; color:var(--navy);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.radial-node:hover{transform:translateY(-3px) scale(1.04); box-shadow:var(--shadow-md); z-index:2;}
.radial-node .icon-circle{width:38px; height:38px; margin:0 auto 8px; font-size:1rem; border-radius:10px;}
@media (max-width:520px){ .radial{transform:scale(.78); margin:-40px auto;} body.page-framework .radial{transform:none; margin:0 auto;} }

/* ============================================
   Built for Financial Services section
   ============================================ */
.industry-focus-head{max-width:640px; margin-bottom:36px;}
.industry-focus-head h2{margin-bottom:10px;}
.industry-focus-head p{font-size:.95rem; margin-bottom:14px;}
.link-arrow{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.9rem;
  color:var(--blue);
}
.link-arrow i{font-size:.8rem; transition:transform var(--dur) var(--ease);}
.link-arrow:hover i{transform:translateX(3px);}

.industry-grid{align-items:stretch;}
.industry-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.industry-card:hover{
  box-shadow:var(--shadow-md); transform:translateY(-5px); border-color:transparent;
}
.industry-img{width:100%; height:150px; overflow:hidden; position:relative;}
.industry-img::after{
  content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(15,23,42,0) 55%,rgba(15,23,42,.35));
}
.industry-img img{width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease);}
.industry-card:hover .industry-img img{transform:scale(1.08);}
.industry-card h3{font-size:1rem; padding:16px 18px 6px;}
.industry-list{padding:0 18px 20px;}
.industry-list li{
  position:relative; font-size:.82rem; color:var(--muted); padding:5px 0 5px 16px;
}
.industry-list li::before{
  content:"•"; position:absolute; left:0; color:var(--blue); font-weight:800;
}
@media (max-width:960px){ .industry-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .industry-grid{grid-template-columns:1fr;} }

/* ============================================
   CTA tags row (AI Security / Governance / Risk / End-to-End)
   ============================================ */
.cta-tags{display:flex; flex-wrap:wrap; gap:10px; margin-top:26px;}
.cta-tags span{
  display:inline-flex; align-items:center; gap:8px; font-size:.8rem; font-weight:600;
  color:#e2e8f0; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  padding:8px 14px; border-radius:20px; transition:all var(--dur) var(--ease);
}
.cta-tags span:hover{background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.25); transform:translateY(-2px);}
.cta-tags span i{color:#60a5fa; font-size:.85rem;}
.cta-banner-img .txt .cta-actions{margin-top:24px;}

/* ============================================
   Global small-screen polish
   ============================================ */
@media (max-width:600px){
  .band-dark{border-radius:var(--radius);}
  .cta-banner-img{border-radius:var(--radius);}
  h1{margin-bottom:12px;}
}

/* ============================================
   ADVANCED MOTION — scroll reveal, entrances, marquee
   Driven by assets/js/animations.js (adds .reveal / .reveal-in)
   ============================================ */
.reveal{
  opacity:0; transform:translateY(30px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
  will-change:opacity, transform;
}
.reveal.reveal-in{opacity:1; transform:translateY(0);}
.reveal-scale{transform:translateY(0) scale(.9);}
.reveal-scale.reveal-in{transform:scale(1);}
.reveal-left{transform:translateX(-36px);}
.reveal-left.reveal-in{transform:translateX(0);}
.reveal-right{transform:translateX(36px);}
.reveal-right.reveal-in{transform:translateX(0);}

/* icon-circle gets a little pop the moment its card reveals */
.reveal.reveal-in .icon-circle{animation:popIn .55s var(--ease) both;}
@keyframes popIn{
  0%{transform:scale(.55); opacity:0;}
  65%{transform:scale(1.1); opacity:1;}
  100%{transform:scale(1);}
}

/* Navbar gains depth once the page is scrolled */
.navbar{transition:box-shadow .3s var(--ease), background .3s var(--ease);}
.navbar.scrolled{box-shadow:0 10px 26px -14px rgba(15,23,42,.22);}

/* Gentle float on hero imagery / dark-band visual so the page feels alive */
@keyframes floatY{0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);}}
.hero-media{animation:floatY 6s ease-in-out infinite;}
.band-visual{animation:floatY 5s ease-in-out infinite .3s;}

/* Primary button — light sweep on hover */
.btn-primary{position:relative; overflow:hidden;}
.btn-primary::after{
  content:""; position:absolute; top:0; left:-65%; width:45%; height:100%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,.4), transparent);
  transform:skewX(-18deg); transition:left .55s ease; pointer-events:none;
}
.btn-primary:hover::after{left:130%;}

/* Icon circles get a subtle ambient ring pulse on hover, on top of existing lift */
.icon-circle{position:relative;}
.icon-circle::after{
  content:""; position:absolute; inset:-4px; border-radius:inherit;
  border:1.5px solid currentColor; opacity:0; transform:scale(.85);
  transition:opacity .3s var(--ease), transform .3s var(--ease);
}
.card:hover .icon-circle::after, .step:hover .icon-circle::after, .industry-card:hover .icon-circle::after{
  opacity:.25; transform:scale(1);
}

/* Infinite ticker marquee — track is built by animations.js */
.ticker .marquee-container{display:flex; width:max-content; animation:tickerScroll 26s linear infinite;}
.ticker:hover .marquee-container{animation-play-state:paused;}
.ticker .marquee-track{display:flex; gap:14px; align-items:center; padding-right:14px; flex-shrink:0;}
@keyframes tickerScroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* Section headings draw an underline in as they enter */
.section-head .eyebrow{position:relative;}

@media (prefers-reduced-motion:reduce){
  .reveal, .reveal-scale, .reveal-left, .reveal-right{opacity:1 !important; transform:none !important; transition:none !important;}
  .reveal.reveal-in .icon-circle{animation:none !important;}
  .hero-media, .band-visual{animation:none !important;}
  .ticker .marquee-container{animation:none !important;}
  .btn-primary::after{display:none !important;}
}
/* ============================================
   MODAL & INTERACTIVE STRATEGY DIALOGS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(15, 23, 42, 0.06);
  max-width: 680px;
  width: 95%;
  padding: 44px 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover {
  color: var(--navy);
  background: var(--bg-soft);
}
.modal-head {
  margin-bottom: 24px;
}
.modal-head h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 8px;
}
.modal-head p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}
.modal-form .form-group {
  margin-bottom: 18px;
}
.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.modal-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.phone-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.phone-code-select {
  width: 136px !important;
  flex-shrink: 0;
  cursor: pointer;
  padding: 13px 10px !important;
  font-size: 0.86rem !important;
}
.phone-number-input {
  flex: 1;
}
@media (max-width: 480px) {
  .phone-code-select {
    width: 110px !important;
    font-size: 0.8rem !important;
    padding: 13px 6px !important;
  }
}
@media (max-width: 480px) {
  .modal-card {
    padding: 24px 18px;
  }
  .modal-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVENESS
   Tested for all viewport widths (320px - 1440px)
   ============================================ */

/* Prevent any accidental horizontal scrolling */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Service pillar layout rows */
.service-pillar-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.card-span-2 {
  grid-column: span 2;
}
.card-span-3 {
  grid-column: span 3;
}
.band-dark-split {
  grid-template-columns: 1fr 1.4fr;
}

/* Impact & challenge banner blocks */
.impact-banner {
  background: var(--bg-blue-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.risk-challenge-grid {
  background: var(--bg-blue-soft);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.global-presence-grid {
  background: linear-gradient(135deg, #0a0a1e, #1e0f3d);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}

/* Tablets & Mobile (<= 960px) */
@media (max-width: 960px) {
  .card-span-2,
  .card-span-3,
  .split-panel .card,
  .service-pillar-row .card,
  .grid .card,
  [style*="grid-column"] {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .band-dark-split {
    grid-template-columns: 1fr !important;
  }
  .service-pillar-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
  }
  .service-pillar-row > div {
    width: 100% !important;
  }
  .service-pillar-row .grid,
  .service-pillar-row .grid-2,
  .service-pillar-row .grid-3 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .service-pillar-row .card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
  .risk-challenge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 24px;
  }
  .risk-challenge-grid > div:first-child {
    grid-column: span 2;
  }
  .impact-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
  }
  .global-presence-grid {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .split-panel {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 28px !important;
  }
  .split-panel .hero-media {
    width: 100% !important;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  section {
    padding: clamp(36px, 6vw, 56px) 0;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 5.2vw + 0.4rem, 2.25rem);
    line-height: 1.25;
  }
  .hero p.lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 13px 20px;
  }
  .radial img, .hero-media img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
  }
  .cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px;
    gap: 20px;
  }
  .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-banner-img {
    flex-direction: column;
  }
  .cta-banner-img .txt {
    padding: 28px 20px;
  }
  .cta-banner-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stat-strip .stat {
    padding: 16px 14px;
  }
  .stat-strip .stat .num {
    font-size: 1.25rem;
  }
  .stat-strip .stat .label {
    font-size: 0.72rem;
  }
  .checklist {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .navbar .nav-inner {
    padding: 10px 14px;
  }
  .brand-text .name {
    font-size: 0.95rem;
  }
  .brand-text .tag {
    display: none;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .section-head h2 {
    font-size: 1.35rem;
  }
  .card {
    padding: 20px 16px;
  }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 {
    grid-template-columns: 1fr !important;
  }
  .risk-challenge-grid {
    grid-template-columns: 1fr;
    padding: 22px 16px;
  }
  .risk-challenge-grid > div:first-child {
    grid-column: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer-badges span {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}

/* ============================================
   HERO PROOF BADGES (2x2 Clean Modern Layout)
   ============================================ */
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.hero-proof-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.3);
}
.hero-proof-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-proof-text .title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.hero-proof-text .sub {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
@media (max-width: 520px) {
  .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ============================================
   UX & LAYOUT IMPROVEMENTS (Scroll Margins, Card Heights, Featured Cards)
   ============================================ */

/* 1. Universal sticky header scroll offset */
section[id], div[id], [id] {
  scroll-margin-top: 95px;
}

/* 2. Equal card heights and balanced badge alignment */
.grid-5 .card,
.grid-4 .card,
.grid-3 .card,
.timeline .step {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid-5 .card p,
.grid-4 .card p,
.grid-3 .card p {
  flex-grow: 1;
}

.grid-5 .card .badge,
.grid-4 .card .badge,
.grid-3 .card .badge {
  margin-top: auto;
  align-self: flex-start;
}

/* 3. Featured Full-Width Card Styles for 10th items */
.card-featured-row {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff, var(--bg-blue-soft));
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.08);
}

.card-featured-row .icon-circle {
  margin: 0;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  font-size: 1.4rem;
}

.card-featured-row .content {
  flex: 1;
}

.card-featured-row .content h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.card-featured-row .content p {
  font-size: 0.86rem;
  color: var(--muted);
}

.card-featured-row .badge-wrap {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .card-featured-row {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .card-featured-row {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .card-featured-row .icon-circle {
    margin-bottom: 4px;
  }
}

/* ==========================================================================
   ATTRACTIVE CYBER MOTION & VISUAL EFFECTS (High-Tech Enterprise AI UI)
   ========================================================================== */

/* 1. Hero Canvas & Ambient Glow */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(124, 58, 237, 0.08) 45%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-35px, 25px) scale(1.1); }
  100% { transform: translate(25px, -20px) scale(0.95); }
}

.hero-grid {
  position: relative;
  z-index: 1;
}

/* 2. Spotlight Glow on Cards (Tracks Mouse Cursor) */
.has-spotlight {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.has-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(37, 99, 235, 0.12), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.has-spotlight:hover::before {
  opacity: 1;
}

.has-spotlight > * {
  position: relative;
  z-index: 1;
}

/* 3. Button Light Sweep Shimmer */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(25deg);
  animation: btnShimmerSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShimmerSweep {
  0%, 65% { left: -70%; }
  100% { left: 150%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px -8px rgba(37, 99, 235, 0.65), 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px -6px rgba(37, 99, 235, 0.2);
}

/* 4. Interactive Icon Hover Dynamics */
.card:hover .icon-circle,
.hero-proof-item:hover .hero-proof-icon,
.timeline .step:hover .step-num,
.timeline .step:hover .icon-circle,
.industry-card:hover .industry-img {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 10px 24px -4px rgba(37, 99, 235, 0.35);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

/* 5. Smooth Spring Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 6. Radar Pulse Effect on Dots & Badges */
.dot {
  position: relative;
}

.dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #22c55e;
  animation: radarWave 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes radarWave {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* 7. Shimmer Border on Featured Highlight Card */
.card-featured-row {
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
}

.card-featured-row:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 36px -8px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* 8. 3D Tilt Shadow Elevation */
.hero-media {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.hero-media:hover {
  box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* ==========================================================================
   VIBRANT LIGHT THEME & RICH COLOR COMBINATIONS ARCHITECTURE
   ========================================================================== */

/* Enhanced Root Palette */
:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #38bdf8;
  --indigo: #4f46e5;
  --purple: #7c3aed;
  --cyan: #06b6d4;
  --emerald: #059669;
  --amber: #ea580c;
  --navy: #090d16;
  --navy-2: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --bg-soft: #f8faff;
  --bg-blue-soft: #eef4ff;
  --border: #e2e8f0;
  --white: #ffffff;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
}

/* 1. Luminous Eyebrow Pill Badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.eyebrow i {
  color: #2563eb;
  font-size: 0.75rem;
}

/* 2. Rich Luminous Icon Circles */
.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.ic-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 18px -4px rgba(37, 99, 235, 0.3);
}

.ic-purple {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #6d28d9;
  border: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 8px 18px -4px rgba(124, 58, 237, 0.3);
}

.ic-teal {
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.25);
  box-shadow: 0 8px 18px -4px rgba(13, 148, 136, 0.3);
}

.ic-green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 8px 18px -4px rgba(34, 197, 94, 0.3);
}

.ic-orange {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: #c2410c;
  border: 1px solid rgba(234, 88, 12, 0.25);
  box-shadow: 0 8px 18px -4px rgba(234, 88, 12, 0.3);
}

/* 3. Cards with Subtle Gradient Depth & Illuminated Hover */
.card, .industry-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.card:hover, .industry-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.16), 0 0 0 1px rgba(37, 99, 235, 0.15);
  transform: translateY(-6px);
}

/* 4. Glossy Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 13px 6px 11px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.badge-critical {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #b91c1c;
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.08);
}

.badge-high {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #c2410c;
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.08);
}

.badge-medium {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
}

/* 5. Dynamic Electric Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.5), 0 2px 6px rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 6. Step Numbers & Timeline Styling */
.timeline .step .step-num {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 8px 18px -4px rgba(37, 99, 235, 0.5);
}

/* 7. Hero Proof Badges Rich Contrast */
.hero-proof-item {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.hero-proof-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 28px -6px rgba(37, 99, 235, 0.15);
}

/* ==========================================================================
   3 NEW INTERACTIVE ANIMATION SECTIONS (Light Theme Enterprise Suite)
   ========================================================================== */

/* --------------------------------------------------------------------------
   SECTION 1: AI Threat Radar & Live Defense Matrix Simulator
   -------------------------------------------------------------------------- */
.defense-matrix-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px -10px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.08);
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.defense-matrix-box::before {
  content: "";
  position: absolute;
  top: 0; right: 0; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.matrix-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: #eef4ff;
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.matrix-tab {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.matrix-tab.active {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.18);
}

.matrix-panel {
  display: none;
  animation: panelFadeIn 0.35s ease forwards;
}

.matrix-panel.active {
  display: block;
}

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

.matrix-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s, border-color 0.2s;
}

.matrix-item:hover {
  transform: translateX(4px);
  border-color: var(--blue);
}

.matrix-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.matrix-status-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 16px;
  letter-spacing: 0.04em;
}

/* Radar Display */
.radar-display-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, #f0f7ff 0%, #e0edff 70%, #d0e3ff 100%);
  border: 2px solid rgba(37, 99, 235, 0.3);
  box-shadow: inset 0 0 30px rgba(37, 99, 235, 0.15), 0 12px 30px rgba(37, 99, 235, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-grid-line {
  position: absolute;
  border: 1px dashed rgba(37, 99, 235, 0.25);
  border-radius: 50%;
}
.radar-grid-line.r1 { width: 33%; height: 33%; }
.radar-grid-line.r2 { width: 66%; height: 66%; }
.radar-grid-line.r3 { width: 95%; height: 95%; }

.radar-crosshair-h {
  position: absolute;
  left: 0; right: 0; top: 50%; height: 1px;
  background: rgba(37, 99, 235, 0.2);
}
.radar-crosshair-v {
  position: absolute;
  top: 0; bottom: 0; left: 50%; width: 1px;
  background: rgba(37, 99, 235, 0.2);
}

.radar-sweep {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(37, 99, 235, 0.4) 0deg, transparent 60deg, transparent 360deg);
  animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-blip {
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 12px #2563eb;
  animation: blipPulse 2s ease-in-out infinite;
}
.blip-1 { top: 28%; left: 35%; animation-delay: 0.4s; }
.blip-2 { top: 65%; left: 72%; animation-delay: 1.1s; background:#dc2626; box-shadow:0 0 12px #dc2626; }
.blip-3 { top: 40%; left: 68%; animation-delay: 1.8s; background:#16a34a; box-shadow:0 0 12px #16a34a; }

@keyframes blipPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.6); opacity: 1; }
}

.radar-center-shield {
  position: relative;
  z-index: 2;
  width: 48px; height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* --------------------------------------------------------------------------
   SECTION 2: Interactive 5-Pillar Live Flow Stepper
   -------------------------------------------------------------------------- */
.flow-stepper-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-top: 20px;
}

.flow-tabs-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}

.flow-tab-btn {
  padding: 16px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8faff;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flow-tab-btn .btn-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.flow-tab-btn .btn-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.flow-tab-btn:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12);
}

.flow-tab-btn.active {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: var(--blue);
  box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.25);
  transform: translateY(-3px);
}

.flow-tab-btn.active .btn-num {
  color: var(--blue);
}

.flow-tab-btn.active .btn-title {
  color: var(--blue-dark);
}

.flow-content-card {
  margin-top: 24px;
  background: linear-gradient(180deg, #f8faff 0%, #eef4ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  padding: 28px;
  display: none;
  animation: panelFadeIn 0.35s ease forwards;
}

.flow-content-card.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.flow-deliverables {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 10px;
  padding: 16px 20px;
}

.flow-deliverables h4 {
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flow-deliverables ul {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.7;
}

.flow-deliverables ul li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   SECTION 3: Interactive Enterprise AI Risk & Readiness Scorecard
   -------------------------------------------------------------------------- */
.calculator-box {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -12px rgba(37, 99, 235, 0.15);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.calc-options-row {
  margin-bottom: 20px;
}

.calc-label {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-chip {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-chip:hover {
  border-color: var(--blue);
  background: #f8faff;
}

.calc-chip.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.calc-result-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  text-align: center;
}

.calc-meter {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: conic-gradient(#dc2626 0deg 270deg, #e2e8f0 270deg 360deg);
  position: relative;
}

.calc-meter-inner {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: inset 0 2px 6px rgba(15, 23, 42, 0.08);
}

.calc-meter-val {
  font-size: 1.45rem;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
}

.calc-meter-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .defense-matrix-box, .calc-grid, .flow-content-card.active {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .flow-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .defense-matrix-box, .calculator-box, .flow-stepper-box {
    padding: 24px 18px;
  }
  .flow-tabs-nav {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UNIVERSAL 3D LAYER PHYSICS & SPECULAR GLARE (All Existing Sections)
   ========================================================================== */

/* 1. Multi-Layer 3D Depth on Cards */
.perspective-card {
  transform-style: preserve-3d;
  perspective: 1100px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.perspective-card .icon-circle,
.perspective-card .industry-img,
.perspective-card .hero-proof-icon,
.perspective-card .step-num {
  transform: translateZ(28px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.perspective-card h3,
.perspective-card h4,
.perspective-card .title {
  transform: translateZ(18px);
}

.perspective-card p,
.perspective-card .sub,
.perspective-card ul {
  transform: translateZ(12px);
}

.perspective-card .badge,
.perspective-card .learn,
.perspective-card .matrix-status-badge {
  transform: translateZ(24px);
}

/* Specular 3D Card Glare Overlay */
.card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  mix-blend-mode: overlay;
}

/* 2. 3D Float on Hero Graphics & 5-Pillar Visuals */
@keyframes float3D {
  0% { transform: perspective(1000px) translateY(0px) rotateY(0deg) rotateX(0deg); }
  50% { transform: perspective(1000px) translateY(-12px) rotateY(3deg) rotateX(-2deg); }
  100% { transform: perspective(1000px) translateY(0px) rotateY(0deg) rotateX(0deg); }
}

.hero-media img,
.radial img {
  animation: float3D 6.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.15));
}

/* 3. 3D Scroll Entrance Physics */
.reveal {
  opacity: 0;
  transform: perspective(1000px) rotateX(12deg) translateY(32px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.reveal-in {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
}

/* 4. Enhanced 3D Elevated Shadow Hover on Cards */
.card:hover,
.industry-card:hover,
.timeline .step:hover {
  box-shadow: 0 24px 48px -12px rgba(37, 99, 235, 0.22), 0 0 0 1.5px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   ENHANCED 3D HERO SECTION DEPTH, ELEVATED HEIGHT & PARALLAX SUITE
   ========================================================================== */

/* 1. Elevated Hero Height & Atmospheric 3D Lighting */
.hero {
  min-height: 72vh;
  padding: clamp(54px, 7vw, 90px) 0 clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: radial-gradient(1200px circle at 50% -10%, rgba(238, 244, 255, 0.8) 0%, #ffffff 75%);
}

.hero .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Dual 3D Floating Ambient Glowing Orbs */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.12) 40%, transparent 70%);
  pointer-events: none;
  animation: heroOrbFloatA 10s ease-in-out infinite alternate;
  z-index: 0;
  filter: blur(10px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, rgba(37, 99, 235, 0.08) 45%, transparent 70%);
  pointer-events: none;
  animation: heroOrbFloatB 12s ease-in-out infinite alternate;
  z-index: 0;
  filter: blur(12px);
}

@keyframes heroOrbFloatA {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-45px, 35px) scale(1.12) rotate(15deg); }
  100% { transform: translate(35px, -30px) scale(0.92) rotate(-10deg); }
}

@keyframes heroOrbFloatB {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
  100% { transform: translate(-30px, 35px) scale(0.95); }
}

/* 2. Deep 3D Perspective on Hero Media & Holographic Halo */
.hero-media,
.radial {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: calc(var(--radius-lg) + 12px);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15));
  filter: blur(18px);
  opacity: 0.7;
  z-index: -1;
  animation: haloPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes haloPulse {
  0% { opacity: 0.5; transform: scale(0.97); }
  100% { opacity: 0.85; transform: scale(1.03); }
}

.hero-media img,
.radial img {
  transform: translateZ(25px);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  animation: heroFloat3D 6.5s ease-in-out infinite;
}

@keyframes heroFloat3D {
  0% { transform: translateZ(25px) translateY(0px) rotateY(0deg) rotateX(0deg); }
  50% { transform: translateZ(35px) translateY(-14px) rotateY(3.5deg) rotateX(-2.5deg); }
  100% { transform: translateZ(25px) translateY(0px) rotateY(0deg) rotateX(0deg); }
}

/* 3. Floating 3D Badge with Glassmorphism */
.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.15);
  padding: 14px 18px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(90%, 300px);
  transform: translateZ(50px);
  z-index: 10;
  transition: transform 0.3s ease;
}

.hero-badge:hover {
  transform: translateZ(60px) scale(1.04);
}

/* 4. Left Hero Content 3D Layering */
.hero-grid > div:first-child {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hero h1 {
  transform: translateZ(20px);
}

.hero p.lead {
  transform: translateZ(14px);
}

.hero .hero-btns {
  transform: translateZ(24px);
}

.hero-proof-grid {
  transform: translateZ(30px);
}

/* ==========================================================================
   DEVELOPER BRIEF 2 ENHANCEMENTS & CLEANUPS
   ========================================================================== */

/* 1. Consistent Ticker Red Color Across All Items */
.ticker .container {
  color: #dc2626 !important;
}
.ticker span,
.ticker span:first-child {
  color: #dc2626 !important;
  font-weight: 700 !important;
}

/* 2. Bold Numbers (10, 5, 4, 1, etc.) */
.stat .num,
.card h3.num,
.card .num,
h3.num,
.proof-num {
  font-weight: 900 !important;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* 3. Floating Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55);
}

/* 4. Founder Profile Card (Why Us Page) */
.founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 18px 45px -12px rgba(15, 23, 42, 0.1);
  align-items: center;
}
.founder-img-col {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.25);
  border: 3px solid #ffffff;
}
.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius) - 2px);
  display: block;
}
@media (max-width: 900px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .founder-img-col {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* 5. Client Engagement Cards (BFSI Page) */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.engagement-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.engagement-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  border-top-color: var(--blue);
  box-shadow: 0 20px 40px -8px rgba(37, 99, 235, 0.18);
}
.engagement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
}
.domain-pill-blue { background: #eff6ff; color: #2563eb; border: 1px solid rgba(37, 99, 235, 0.2); }
.domain-pill-purple { background: #faf5ff; color: #7c3aed; border: 1px solid rgba(124, 58, 237, 0.2); }
.domain-pill-teal { background: #f0fdfa; color: #0d9488; border: 1px solid rgba(13, 148, 136, 0.2); }

.engagement-title {
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.pillar-flow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e40af;
  background: #eff6ff;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px dashed rgba(37, 99, 235, 0.35);
}
.pillar-flow-badge i { color: #2563eb; }
.engagement-field {
  margin-bottom: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.engagement-field strong {
  color: var(--navy);
  font-weight: 700;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.engagement-field span,
.engagement-field p {
  color: var(--text);
}
.outcome-box {
  margin-top: 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  border-left: 3px solid #2563eb;
}
.outcome-title {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e40af;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.outcome-box p {
  font-size: 0.84rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* 6. Standardize BFSI Floating Badges to Identical Size */
.bfsi-hero-badge {
  width: 290px !important;
  min-height: 64px !important;
  max-width: 290px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   Social Media Links Styling & Animations
   ========================================================================== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: #ffffff;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}
.footer-social a[title*="LinkedIn"]:hover,
.footer-social a[aria-label*="LinkedIn"]:hover {
  color: #ffffff;
  background: #0a66c2;
  border-color: #0a66c2;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(10, 102, 194, 0.3);
}
.footer-social a[title*="X"]:hover,
.footer-social a[aria-label*="X"]:hover {
  color: #ffffff;
  background: #0f172a;
  border-color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.3);
}
.footer-social a[title*="Instagram"]:hover,
.footer-social a[aria-label*="Instagram"]:hover {
  color: #ffffff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(225, 48, 108, 0.35);
}

/* ==========================================================================
   Comprehensive Real-Device Responsive Fine-Tuning
   ========================================================================== */

/* Modal Dialog Real-Device Polish */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 42px;
  max-width: 780px !important;
  width: 95%;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}
.phone-input-group {
  display: flex !important;
  gap: 10px !important;
  align-items: stretch !important;
  width: 100% !important;
}
.phone-code-select {
  width: 155px !important;
  min-width: 155px !important;
  max-width: 160px !important;
  flex-shrink: 0 !important;
  padding: 12px 10px !important;
  font-size: 0.88rem !important;
  font-weight: 600;
  border-radius: 10px;
  background-color: #f8fafc;
}
.phone-number-input {
  flex: 1 !important;
  min-width: 0 !important;
  width: 100% !important;
  padding: 12px 14px !important;
  font-size: 0.95rem !important;
  border-radius: 10px;
}
.modal-card::-webkit-scrollbar {
  width: 6px;
}
.modal-card::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Tablet (Portrait & Landscape: 768px - 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .stat-strip {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
  }
  .founder-card {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
}

/* Mobile & Small Tablet (< 768px) */
@media (max-width: 960px) {
  .split-panel {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 28px !important;
    width: 100% !important;
  }
  .split-panel > div {
    width: 100% !important;
  }
  .split-panel .grid,
  .split-panel .grid-3,
  .split-panel .grid-2,
  .split-panel .grid-4 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 16px !important;
  }
  .split-panel .card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
  .timeline {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .timeline::before {
    display: none !important;
  }
  .timeline .step {
    width: 100% !important;
  }
  .band-dark {
    padding: 32px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  .band-dark .pillars {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .band-dark .pillar {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    width: 100% !important;
  }
  .hero-media {
    margin-left: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .hero-badge,
  .bfsi-hero-badge {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    box-shadow: 0 4px 12px rgba(15,23,42,0.08) !important;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .founder-card {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
  }
  .founder-img-col {
    max-width: 240px;
    margin: 0 auto;
  }
  .grid, .grid-5, .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  .card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .modal-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .navbar .nav-inner {
    padding: 12px 18px;
  }
  .nav-cta {
    display: none;
  }
}

/* Small Smartphone Viewports (< 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  section {
    padding: 18px 0;
  }
  .brand .name {
    font-size: 1.08rem;
  }
  .brand .tag {
    display: none; /* Keep header compact on ultra-small mobile */
  }
  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
  h1 {
    font-size: 1.72rem !important;
    line-height: 1.22 !important;
  }
  h2 {
    font-size: 1.36rem !important;
    line-height: 1.25 !important;
  }
  .stat-strip {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .stat {
    padding: 16px 12px;
  }
  .card {
    padding: 18px 16px;
  }
  .phone-input-group {
    flex-direction: column;
    gap: 6px;
  }
  .phone-code-select {
    width: 100% !important;
    max-width: 100% !important;
  }
  .phone-number-input {
    width: 100% !important;
  }
  .captcha-challenge-box {
    padding: 10px 12px !important;
  }
  .captcha-challenge-box > div {
    flex-direction: column;
    align-items: flex-start !important;
  }
  #m_captcha {
    width: 100% !important;
    max-width: 120px;
  }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-badges {
    gap: 6px;
  }
}

/* Touch Device Target Accessibility */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-links a, .footer-social a, .flow-tab-btn, .matrix-tab {
    min-height: 44px;
    min-width: 44px;
  }
  .card:hover, .hero-media:hover img {
    transform: none !important;
  }
}

/* Form Validation & Error Highlighting */
.field-error-msg {
  display: none;
  font-size: 0.74rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: 4px;
  line-height: 1.35;
  animation: fadeInDown 0.2s ease-out;
}
.field-error-msg.active {
  display: block;
}
.modal-form input.is-invalid,
.modal-form select.is-invalid,
.modal-form textarea.is-invalid {
  border-color: #dc2626 !important;
  background-color: #fffbfa !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}
.modal-form input.is-valid,
.modal-form select.is-valid,
.modal-form textarea.is-valid {
  border-color: #10b981 !important;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}


