/* ── VARIABLES & RESET ── */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--blue:#123A7A;
--blue-h:#0E2F63;
--blue-l:#123A7A;
--sky:#F7F8FA;
--off-white:#F7F8FA;
--dark:#0F172A;
--text-main:#0F172A;
--text-muted:#64748B;
--white:#FFFFFF;
--border:#E5E7EB;
--accent:#F4A12A;
--success:#10B981;
--max:1280px;
--btn-radius: 10px;
--card-radius: 18px;
--trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
--trans-fast: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
font-family: 'Inter', sans-serif;
color: var(--text-main);
background: var(--white);
line-height: 1.6;
overflow-x: hidden;
width: 100%;
}
h1,h2,h3,h4,h5 {
color: var(--text-main);
line-height: 1.2;
font-family: 'Plus Jakarta Sans', sans-serif;
}
a { text-decoration: none; color: inherit; transition: 0.2s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
.w {
max-width: var(--max);
margin: 0 auto;
padding: 0 24px;
}
section {
padding-top: 90px;
padding-bottom: 90px;
}
/* ── BUTTON REDESIGN ── */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
font-weight: 700;
font-family: 'Plus Jakarta Sans', sans-serif;
border-radius: var(--btn-radius);
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: none;
padding: 14px 32px;
font-size: 15px;
white-space: nowrap;
letter-spacing: 0.2px;
}
.btn-primary {
background: var(--blue);
color: var(--white);
box-shadow: 0 4px 12px rgba(18, 58, 122, 0.15);
}
.btn-primary:hover {
background: var(--blue-h);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(18, 58, 122, 0.25);
}
.btn-accent {
background: var(--accent);
color: var(--white);
box-shadow: 0 4px 12px rgba(244, 161, 42, 0.2);
}
.btn-accent:hover {
background: #d98c20;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(244, 161, 42, 0.3);
}
.btn-outline {
background: var(--white);
color: var(--blue);
border: 1.5px solid var(--border);
box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.btn-outline:hover {
background: var(--sky);
border-color: var(--blue);
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}
.btn-wa { background: #25D366; color: var(--white); }
/* ── TOPBAR ── */
.hd-top { background: var(--blue); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hd-top .w { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hd-contacts { display: flex; gap: 24px; align-items: center; }
.hd-contact { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.9); }
.hd-contact i { color: var(--accent); }
.hd-soc-links { display: flex; gap: 10px; }
.hd-soc-links a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 12px; }
/* ── NAVBAR ── */
.hd-nav { background: var(--white); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
.hd-nav .w { display: flex; align-items: center; height: 80px; justify-content: space-between; }
.hd-logo img { height: 65px; width: auto; }
.hd-links { display: flex; align-items: center; gap: 32px; }
.hd-link { position: relative; height: 80px; display: flex; align-items: center; }
.hd-link > a { font-size: 13px; font-weight: 700; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.5px; }
.hd-link > a:hover, .hd-link.active > a { color: var(--blue); }
.hd-demo-cta { display: flex; align-items: center; gap: 16px; }
.hd-ham { display: none; background: none; border: none; color: var(--text-main); font-size: 24px; cursor: pointer; }
/* Mega Menu */
.mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); width: 800px; background: var(--white); border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: 0.2s; padding: 32px; border: 1px solid var(--border); border-top: 4px solid var(--blue); }
.hd-link:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mega-col h5 { font-size: 12px; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.mega-col ul { list-style: none; }
.mega-col ul li a { font-size: 13px; color: var(--text-muted); display: block; padding: 6px 0; font-weight: 500; }
.mega-col ul li a:hover { color: var(--blue); transform: translateX(5px); }
/* Mobile Drawer */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.4); z-index: 1998; backdrop-filter: blur(4px); }
.mob-overlay.open { display: block; }
.mob-drawer { position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: var(--white); z-index: 1999; overflow-y: auto; transition: right 0.3s ease; padding-bottom: 32px; border-left: 1px solid var(--border); }
.mob-drawer.open { right: 0; }
.mob-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.mob-head img { height: 32px; }
.mob-close { background: none; border: none; color: var(--text-main); font-size: 24px; cursor: pointer; }
.mob-item { border-bottom: 1px solid var(--border); }
.mob-item > a, .mob-acc-btn { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--text-main); width: 100%; background: none; border: none; text-transform: uppercase; cursor: pointer; }
.mob-sub { display: none; background: var(--off-white); padding: 10px 0; }
.mob-sub.open { display: block; }
.mob-sub a { display: block; padding: 10px 32px; font-size: 13px; color: var(--text-muted); }
/* ── HERO SECTION FIXED ANIMATION ── */
.hero { background: var(--sky); padding: 110px 0 90px; position: relative; }
.hero .w { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 20px; border-radius: 50px; margin-bottom: 25px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.hero-tag .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; }
.hero h1 { font-size: clamp(34px, 4.5vw, 60px); color: var(--text-main); font-weight: 800; margin-bottom: 24px; letter-spacing: -1.5px; line-height: 1.1; }
/* Fixed isolated hero word logic */
.hero-word { display: inline-grid; overflow: hidden; height: 1.25em; vertical-align: bottom; color: var(--accent); }
.hero-word span { grid-area: 1/1; opacity: 0; animation: rollHero 10s infinite; transform: translateY(100%); }
.hero-word span:nth-child(1) { animation-delay: 0s; }
.hero-word span:nth-child(2) { animation-delay: 2.5s; }
.hero-word span:nth-child(3) { animation-delay: 5s; }
.hero-word span:nth-child(4) { animation-delay: 7.5s; }
@keyframes rollHero {
0% { transform: translateY(80%); opacity: 0; }
5%, 20% { transform: translateY(0); opacity: 1; }
25% { transform: translateY(-80%); opacity: 0; }
100% { transform: translateY(-80%); opacity: 0; }
}
.hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 540px; }
.hero-btns { display: flex; gap: 16px; }
.hero-img { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1); border: 1px solid var(--border); background: var(--white); animation: heroFloating 5s ease-in-out infinite; }
@keyframes heroFloating {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
.hero-slider { position: relative; aspect-ratio: 4/3; }
.hero-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.hero-slider img.active { opacity: 1; }
.hero-badges { position: absolute; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border); }
.h-badge { padding: 20px 10px; text-align: center; border-right: 1px solid var(--border); }
.h-badge:last-child { border-right: none; }
.h-badge strong { display: block; font-size: 13px; font-weight: 800; margin-bottom: 4px; color: var(--text-main); }
.h-badge strong i { margin-right: 6px; color: var(--blue); }
.h-badge small { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity; }
.reveal.active { opacity: 1; transform: translateY(0); }
/* ── STATS BAR REDESIGN ── */
.stats-bar { background: var(--blue); padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat h3 { font-size: clamp(32px, 4vw, 48px); color: var(--accent); font-weight: 900; margin-bottom: 4px; }
.stat p { font-size: 13px; color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.95; }
/* ── CLIENT LOGOS ── */
.clients { background: var(--white); padding: 50px 0; overflow: hidden; border-bottom: 1px solid var(--border); }
.logo-row { position: relative; display: flex; align-items: center; }
.logo-track { display: flex; align-items: center; width: max-content; gap: 24px; animation: scrollMarquee 40s linear infinite; }
@keyframes scrollMarquee { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.logo-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 16px;
padding: 15px;
box-shadow: 0 4px 12px rgba(0,0,0,.04);
width: 180px;
height: 90px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.logo-card img { max-height: 45px; width: auto; object-fit: contain; }
/* ── GLOBAL HEADERS ── */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-label { display: inline-block; font-size: 12px; font-weight: 800; color: var(--blue); background: rgba(18, 58, 122, 0.08); padding: 6px 20px; border-radius: 50px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.sec-title { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.sec-title span { color: var(--blue); }
.sec-desc { font-size: 17px; color: var(--text-muted); max-width: 750px; margin: 0 auto; }
/* ── INDUSTRIES ── */
.industries { background: var(--white); }
.ind-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.ind-tab { padding: 12px 28px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; font-size: 14px; font-weight: 700; color: var(--text-muted); cursor: pointer; transition: 0.3s; }
.ind-tab:hover, .ind-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.ind-panel { display: none; }
.ind-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; background: var(--sky); padding: 60px; border-radius: 24px; border: 1px solid var(--border); }
.ind-info h3 { font-size: 32px; margin-bottom: 20px; }
.ind-info p { margin-bottom: 32px; font-size: 17px; color: var(--text-muted); line-height: 1.8; }
.ind-img { border-radius: 20px; overflow: hidden; height: 380px; border: 1px solid var(--border); }
.ind-img img { width: 100%; height: 100%; object-fit: cover; }
/* =========================
   INDUSTRY TABS REDESIGN
========================= */

.ind-tabs{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
margin-top:28px;
}

.ind-tab{
display:flex;
align-items:center;
justify-content:center;
gap:8px;

padding:12px 18px;
min-height:58px;

background:#fff;
border:1px solid #E5E7EB;
border-radius:8px;

font-weight:700;
font-size:14px;
cursor:pointer;

transition:.3s ease;

box-shadow:0 4px 10px rgba(0,0,0,.04);
}

.ind-tab img{
width:22px;
height:22px;
object-fit:contain;
flex-shrink:0;
}

.ind-tab:hover{
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.ind-tab.active{
background:#123A7A;
border-color:#123A7A;
color:#fff;
box-shadow:0 8px 18px rgba(18,58,122,.20);
}

.ind-tab.active img{
transform:scale(1.05);
}

/* MOBILE */

@media(max-width:768px){

.ind-tabs{
display:grid !important;
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.ind-tab{
flex-direction:column;
padding:12px 8px;
min-height:88px;

border-radius:8px;
text-align:center;
}

.ind-tab img{
width:28px;
height:28px;
margin-bottom:2px;
}

.ind-tab span{
font-size:12px;
line-height:1.25;
font-weight:800;
}

}
/* ── FINAMAN ERP FEATURES (NEW SECTION) ── */
.features {
background: radial-gradient(circle at top left, #eef6ff, transparent 40%), radial-gradient(circle at bottom right, #eef6ff, transparent 40%), #F7F8FA;
}
.feat-stats-row {
display: flex;
justify-content: center;
gap: 48px;
margin-bottom: 50px;
padding-bottom: 30px;
border-bottom: 1px solid var(--border);
flex-wrap: wrap;
}
.feat-stat-item {
display: flex;
align-items: center;
gap: 12px;
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 800;
color: var(--blue);
}
.feat-stat-item i {
font-size: 20px;
color: var(--accent);
}
.feat-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.feat-card {
background: var(--white);
border-radius: 12px;
padding: 32px 24px;
border: 1px solid var(--border);
box-shadow: 0 8px 24px rgba(0,0,0,0.04);
transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
transform: translateZ(0);
}
.feat-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(18, 58, 122, 0.1);
border-color: var(--blue);
}
.feat-card i {
font-size: 36px;
color: var(--blue);
margin-bottom: 20px;
display: inline-block;

}
@keyframes floatIcon {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.feat-card h4 {
font-size: 17px;
font-weight: 800;
margin-bottom: 12px;
}
.feat-card p {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
}
/* ── WHY CHOOSE ── */
/* ── WHY CHOOSE ── */

.why{
background:var(--white);
}

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

.why-card{

text-align:center;

padding:36px 22px;

border-radius:12px;

border:1px solid #E2E8F0;

background:
linear-gradient(
180deg,
#FFFFFF 0%,
#F5F9FF 100%
);

transition:.3s ease;

box-shadow:
0 8px 24px rgba(0,0,0,.04);

}

.why-card:hover{

transform:translateY(-6px);

border-color:var(--blue);

box-shadow:
0 20px 40px rgba(18,58,122,.08);

}

.why-icon{

width:68px;
height:68px;

border-radius:50%;

background:
radial-gradient(
circle,
#F2F8FF,
#E7F0FF
);

display:flex;
align-items:center;
justify-content:center;

font-size:28px;

color:var(--blue);

margin:0 auto 18px;

box-shadow:
0 8px 20px rgba(37,99,235,.08);

}

.why-card h4{

font-size:17px;
font-weight:800;

margin-bottom:10px;

line-height:1.3;

}

.why-card p{

font-size:14px;

line-height:1.6;

color:var(--text-muted);

}

/* MOBILE */

@media(max-width:768px){

.why-grid{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.why-card{

padding:18px 14px;

border-radius:10px;

}

.why-icon{

width:52px;
height:52px;

font-size:22px;

margin:0 auto 12px;

}

.why-card h4{

font-size:14px;

margin-bottom:8px;

}

.why-card p{

display:block;

font-size:12px;

line-height:1.45;

color:var(--text-muted);

}

}/* ── MODULES ── */
.modules { background: var(--white); border-top: 1px solid var(--border); }
.mod-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.mod-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px 15px; text-align: center; transition: 0.3s; box-shadow: 0 6px 18px rgba(0,0,0,.03); }
.mod-card:hover { background: var(--sky); border-color: var(--blue); transform: translateY(-5px); }
.mod-card .mod-ico { font-size: 32px; margin-bottom: 12px; color: var(--blue); }
.mod-card h4 { font-size: 14px; font-weight: 800; margin-bottom: 5px; }
.mod-card p { font-size: 12px; color: var(--text-muted); font-weight: 600; }
/* ── CASE STUDIES ── */
.cases { background: var(--off-white); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.case-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.04); transition: 0.3s; }
.case-card:hover { transform: translateY(-8px); border-color: var(--blue); }
.case-img { height: 200px; position: relative; overflow: hidden; }
.case-tag { position: absolute; top: 16px; left: 16px; background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 50px; z-index: 10; }
.case-body { padding: 32px; }
.case-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.case-metric { background: var(--off-white); padding: 12px; border-radius: 8px; text-align: center; border: 1px solid var(--border); }
.case-metric strong { display: block; font-size: 18px; color: var(--blue); font-weight: 800; }
/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); overflow: hidden; border-top: 1px solid var(--border); }
.testi-track-wrap { display: flex; overflow: hidden; position: relative; margin-bottom: 24px; }
.testi-track { display: flex; gap: 24px; width: max-content; animation: scrollL 50s linear infinite; }
@keyframes scrollL { to { transform: translateX(calc(-50%)); } }
.testi-card { width: 400px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px; flex-shrink: 0; box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; }
.testi-card blockquote { font-size: 15px; color: var(--text-main); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
/* ── VIDEOS ── */

.videos{
background:var(--off-white);
}

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

.video-card{
background:linear-gradient(
180deg,
#FFFFFF 0%,
#F8FAFC 100%
);

border:1px solid var(--border);
border-radius:20px;
overflow:hidden;

box-shadow:
0 10px 30px rgba(15,23,42,.05);

transition:.35s ease;
cursor:pointer;
}

.video-card:hover{
transform:translateY(-6px);
box-shadow:
0 20px 40px rgba(15,23,42,.08);
}

.video-thumb{
position:relative;
aspect-ratio:16/9;
background:#F8FAFC;
overflow:hidden;
}

.video-thumb img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.video-play{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
}

.video-play i{
width:72px;
height:72px;

background:rgba(255,255,255,.92);

backdrop-filter:blur(10px);

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;
color:var(--blue);

box-shadow:
0 10px 30px rgba(0,0,0,.12);
}

.video-frame{
display:none;
aspect-ratio:16/9;
}

.video-card.playing .video-thumb{
display:none;
}
.video-frame{
display:none;
aspect-ratio:16/9;
width:100%;
}

.video-frame iframe{
width:100%;
height:100%;
min-height:250px;
border:none;
display:block;
}
.video-card.playing .video-frame{
display:block;
}
/* ── FAQ ── */
.faq { background: var(--white); }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: 0.3s; background: var(--white); }
.faq-item.open { border-color: var(--blue); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.faq-q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 16px; color: var(--text-main); }
.faq-q i { color: var(--blue); transition: 0.3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 24px; }
.faq-a p { font-size: 15px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 16px; }
/* ── PREMIUM DEMO FORM SECTION ── */

.form-sec{
background:var(--off-white);
}

.form-container{

background:
radial-gradient(circle at top right,
rgba(37,99,235,.22),
transparent 35%),

radial-gradient(circle at bottom left,
rgba(16,185,129,.10),
transparent 40%),

linear-gradient(
135deg,
#08142F 0%,
#0B1B3D 50%,
#09152E 100%
);

border-radius:32px;
padding:60px;
position:relative;
overflow:hidden;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
position:relative;
z-index:2;
}

.form-left h2{
color:var(--white);
font-size:clamp(34px,4vw,52px);
line-height:1.1;
font-weight:900;
margin-bottom:20px;
}

.form-left h2 span{
color:var(--accent);
}

.form-left > p{
color:rgba(255,255,255,.75);
font-size:18px;
line-height:1.7;
margin-bottom:35px;
max-width:520px;
}

.form-feat{
display:flex;
align-items:center;
gap:14px;
margin-bottom:16px;
color:var(--white);
font-weight:600;
font-size:15px;
}

.form-feat i{
width:42px;
height:42px;

display:flex;
align-items:center;
justify-content:center;

border-radius:12px;

background:rgba(255,255,255,.08);

color:var(--accent);

font-size:18px;
}

.form-card{

background:rgba(255,255,255,.98);

backdrop-filter:blur(12px);

border-radius:24px;

padding:36px;

border:1px solid rgba(255,255,255,.5);

box-shadow:
0 25px 60px rgba(0,0,0,.18);

}

.f-group{
margin-bottom:14px;
}

.f-group label{
display:block;
font-size:12px;
font-weight:700;
color:var(--text-main);
margin-bottom:6px;
text-transform:uppercase;
letter-spacing:.5px;
}

.f-group input,
.f-group select{

width:100%;

height:54px;

padding:0 16px;

background:#F8FAFC;

border:1.5px solid #E2E8F0;

border-radius:12px;

font-size:14px;

font-family:inherit;

outline:none;

transition:.3s ease;

}

.f-group input:focus,
.f-group select:focus{

border-color:var(--blue);

box-shadow:
0 0 0 4px rgba(37,99,235,.08);

}

.f-submit{

width:100%;

height:56px;

background:var(--blue);

color:var(--white);

border:none;

border-radius:12px;

font-size:16px;

font-weight:800;

cursor:pointer;

transition:.3s ease;

margin-top:10px;

}

.f-submit:hover{
transform:translateY(-2px);
}

.demo-trust{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
margin-top:16px;
}

.demo-trust span{
background:#EEF5FF;
color:var(--blue);
padding:6px 12px;
border-radius:20px;
font-size:11px;
font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

.form-container{
padding:26px 18px;
border-radius:24px;
}

.form-grid{
grid-template-columns:1fr;
gap:24px;
}

.form-left h2{
font-size:36px;
line-height:1.05;
margin-bottom:12px;
}

.form-left > p{
font-size:15px;
line-height:1.6;
margin-bottom:18px;
}

.form-feat{
font-size:14px;
margin-bottom:10px;
}

.form-feat i{
width:36px;
height:36px;
font-size:15px;
}

.form-card{
padding:20px;
border-radius:18px;
}

.f-group{
margin-bottom:10px;
}

.f-group label{
text-align:left;
font-size:11px;
margin-bottom:4px;
}

.f-group input,
.f-group select{
height:48px;
padding:0 14px;
font-size:14px;
}

.f-submit{
height:50px;
font-size:15px;
margin-top:4px;
}

.demo-trust{
margin-top:12px;
gap:8px;
}

.demo-trust span{
font-size:10px;
padding:5px 10px;
}

}/* ── LEADERSHIP ── */
.leadership { background: var(--white); }
.lead-grid { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.lead-img { border-radius: 20px; overflow: hidden; border: 4px solid var(--border); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.lead-img img { width: 100%; height: auto; }
.lead-quote { border-left: 4px solid var(--accent); padding-left: 24px; margin: 24px 0; font-size: 18px; font-style: italic; color: var(--text-main); font-weight: 600; }
/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.foot-brand img{
height:60px;
width:auto;
display:block;
margin-bottom:20px;

filter:none;
}.foot-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); }
.foot-col h4 { color: var(--white); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }
.foot-col a { display: block; font-size: 14px; margin-bottom: 12px; transition: 0.2s; color: rgba(255,255,255,0.7); }
.foot-col a:hover { color: var(--accent); padding-left: 5px; }
.foot-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.3); }
/* ── STICKY WHATSAPP ── */
.float-wa { position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--white); box-shadow: 0 8px 24px rgba(37,211,102,0.3); z-index: 999; transition: 0.3s; }
.float-wa:hover { transform: scale(1.1); color: var(--white); }
/* ── RESPONSIVE PC to MOBILE ── */
@media (max-width: 1200px) {
.hero .w, .ind-panel.active, .feat-panel.active, .form-grid, .lead-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
.hero-img, .ind-img, .feat-img-showcase, .lead-img { max-width: 500px; margin: 0 auto; }
.hero-btns, .feat-list li { justify-content: center; }
.hero-badges { position: relative; margin-top: -5px; }
.feat-card-content { order: 2; padding: 40px; }
.feat-img-showcase { order: 1; height: 350px; }
.lead-quote { text-align: left; }
.foot-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
.feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
section { padding-top: 50px; padding-bottom: 50px; }
.hd-top { display: none; }
.hd-links, .hd-demo-cta .btn-primary { display: none; }
.hd-ham { display: block; }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-grid, .case-grid, .video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
section { padding-top: 40px; padding-bottom: 40px; }
.w { padding: 0 20px; }
.hero { padding-top: 60px; }
.hero h1 { font-size: 30px; letter-spacing: -0.8px; }
.hero-tag { display: none; }
.hero-btns { flex-direction: column; width: 100%; gap: 12px; }
.btn { width: 100%; padding: 14px 20px; }
.stats-grid { gap: 12px; }
.stat h3 { font-size: 26px; }
.stat p { font-size: 11px; }

.ind-panel.active { padding: 30px 15px; }
.ind-info h3 { font-size: 24px; }
.ind-img { height: 250px; }

.ind-tab { padding: 8px 18px; font-size: 12px; }

.feat-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
.feat-card { padding: 25px 15px; }
.feat-card i { font-size: 28px; }
.feat-card h4 { font-size: 14px; }
.feat-card p { font-size: 12px; }
.feat-stats-row { gap: 20px; margin-bottom: 30px; }
.feat-stat-item { font-size: 13px; }

.mod-grid, .why-grid, .case-grid, .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.why-card, .mod-card { padding: 25px 15px; }
.why-icon { width: 50px; height: 50px; font-size: 22px; margin-bottom: 15px; }
.why-card h4, .mod-card h4 { font-size: 13px; margin-bottom: 6px; }
.why-card p { font-size: 11px; }

.case-metric { padding: 8px 5px; }
.case-metric strong { font-size: 16px; }
.case-body { padding: 20px; }
.case-body h3 { font-size: 16px; }

.form-container { padding: 40px 20px; border-radius: 25px; }
.form-card { padding: 30px 20px; border-radius: 15px; }
.form-feat { font-size: 13px; margin-bottom: 12px; }

.testi-card { width: 280px; padding: 25px; }
.testi-track-wrap::before, .testi-track-wrap::after { display: none; }

.logo-card { width: 110px; height: 65px; padding: 10px; border-radius: 10px; }
.logo-card img { max-height: 30px; }

.foot-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
.foot-brand p { margin: 0 auto; }
}
@media (max-width: 480px) {
.why-grid, .stats-grid, .case-grid, .video-grid { grid-template-columns: 1fr; }
.mod-grid { grid-template-columns: repeat(2, 1fr); }
.sec-title { font-size: 26px; }
}
@media (max-width:768px){

.feat-grid{
grid-template-columns:repeat(3,1fr);
gap:10px;
}
.feat-card{
border-radius:6px;
}
.feat-card{
padding:16px 10px;
text-align:center;
}

.feat-card i{
font-size:24px;
margin-bottom:10px;
}

.feat-card h4{
font-size:12px;
line-height:1.3;
margin-bottom:6px;
}

.feat-card p{
display:none; /* hides description for compact mobile view */
}

}
@media(max-width:768px){

.feat-card:nth-child(12){
display:none;
}

}
@media(max-width:768px){

.why-grid{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.why-card{
padding:18px 12px;
}

.why-icon{
width:48px;
height:48px;
font-size:20px;
margin:0 auto 12px;
}

.why-card h4{
font-size:13px;
line-height:1.3;
margin-bottom:6px;
}


}
@media(max-width:768px){

.feat-card p{
display:block;
font-size:10px;
line-height:1.3;
margin-top:4px;
color:var(--text-muted);
}

}
/* Icon Circle Background */

.feat-card i{
position:relative;

width:64px;
height:64px;

display:flex;
align-items:center;
justify-content:center;

margin-bottom:18px;

font-size:28px;
color:var(--blue);

background:rgba(37,99,235,.08);

border-radius:50%;

box-shadow:
0 0 0 1px rgba(37,99,235,.05),
0 10px 25px rgba(37,99,235,.08);

animation:iconFloat 3s ease-in-out infinite;
}

/* Mobile */

@media(max-width:768px){

.feat-card i{
width:50px;
height:50px;
font-size:22px;
margin:0 auto 10px;
}

}
@keyframes iconFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-4px);
}

100%{
transform:translateY(0px);
}

}
/* Premium Icon Styling Updates */
.why-icon, .mod-ico {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.06); /* Soft light-blue background */
    border-radius: 50% !important;
    margin: 0 auto 20px !important;
    transition: var(--trans-fast);
    animation: iconSubtleFloat 4s ease-in-out infinite;
    flex-shrink: 0;
}

/* Size adjustments to keep circular proportions */
.why-icon { width: 70px; height: 70px; font-size: 30px !important; }
.mod-ico { width: 64px; height: 64px; font-size: 26px !important; }

/* Gradient Icon Effects */
.icon-gradient-blue {
    background: linear-gradient(135deg, #123A7A 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.icon-gradient-green {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.icon-gradient-multi {
    background: linear-gradient(135deg, #2563EB 0%, #10B981 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.icon-gradient-orange {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle float animation (max 3px) */
@keyframes iconSubtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Card Hover override to sync with icon */
.why-card:hover .why-icon, .mod-card:hover .mod-ico {
    background: rgba(37, 99, 235, 0.12);
    transform: scale(1.05);
}
.testi-company{
font-size:14px;
font-weight:600;
color:var(--blue);
margin-top:4px;
}

.testi-role{
font-size:15px;
font-weight:700;
color:var(--dark);
}
.video-meta{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
}

.video-meta h4{
margin:0;
font-size:18px;
font-weight:700;
line-height:1.3;
}

.video-meta small{
display:block;
margin-top:4px;
font-size:13px;
color:var(--text-muted);
}

.video-tag{
background:#EEF5FF;
color:var(--blue);

padding:6px 12px;

border-radius:20px;

font-size:12px;
font-weight:700;

white-space:nowrap;
}
@media(max-width:768px){

.why-card p{
display:block !important;
visibility:visible !important;
opacity:1 !important;

font-size:12px;
line-height:1.45;
margin-top:8px;

color:var(--text-muted);
}

}
@media(max-width:768px){

.lead-grid{
display:flex;
flex-direction:column;
gap:20px;
}

.lead-info{
order:1;
}

.lead-img{
order:2;

width:100%;
height:340px;

border-radius:12px;
overflow:hidden;
}

.lead-img img{
width:100%;
height:100%;
object-fit:contain;
object-position:center bottom;

background:#F8FAFC;
}

}
@media(max-width:768px){

.lead-img{
width:100%;
height:400px;
border-radius:12px;
overflow:hidden;
background:#ffffff;
}

.lead-img img{
width:100%;
height:100%;
object-fit:cover;
object-position:center 20%;
}

}
@media(max-width:768px){

.foot-grid{
grid-template-columns:1fr !important;
text-align:left !important;
gap:24px;
}

.foot-brand,
.foot-col{
text-align:left !important;
align-items:flex-start !important;
}

.foot-col a,
.foot-col p{
text-align:left !important;
justify-content:flex-start !important;
}

.foot-bottom{
text-align:left !important;
font-size:12px;
line-height:1.6;
}

}
.foot-brand img{
max-width:120px;
height:auto;
display:block;
}
.erp-overview{
background:var(--white);
}

.erp-video-card{
display:grid;
grid-template-columns:1.4fr 1fr;
gap:40px;

background:#fff;

border:1px solid var(--border);

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.erp-video-wrap iframe{
width:100%;
height:100%;
min-height:420px;
border:none;
}

.erp-video-content{
padding:40px;
display:flex;
flex-direction:column;
justify-content:center;
}

.erp-badge{
display:inline-flex;
align-items:center;
gap:8px;

background:#EEF5FF;

color:var(--blue);

padding:8px 14px;

border-radius:50px;

font-size:12px;
font-weight:700;

margin-bottom:18px;
}

.erp-video-content h3{
font-size:30px;
margin-bottom:15px;
}

.erp-video-content p{
color:var(--text-muted);
line-height:1.8;
margin-bottom:25px;
}

.erp-highlights{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
margin-bottom:25px;
}

.erp-highlights div{
font-size:14px;
font-weight:600;
}

.erp-highlights i{
color:#10B981;
margin-right:6px;
}

@media(max-width:768px){

.erp-video-card{
grid-template-columns:1fr;
}

.erp-video-wrap iframe{
min-height:240px;
}

.erp-video-content{
padding:24px;
}

.erp-video-content h3{
font-size:24px;
}

}
/* DEMO POPUP */

.demo-popup{
position:fixed;
inset:0;
background:rgba(0,0,0,.65);
backdrop-filter:blur(6px);
display:none;
align-items:center;
justify-content:center;
padding:20px;
z-index:99999;
}

.demo-popup.active{
display:flex;
}

.demo-popup-box{
width:100%;
max-width:520px;
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 30px 80px rgba(0,0,0,.25);
position:relative;
animation:popupShow .3s ease;
}

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

.demo-popup-head{
background:#123A7A;
color:#fff;
padding:22px;
text-align:center;
}

.demo-popup-head h3{
color:#fff;
font-size:26px;
margin-bottom:6px;
}

.demo-popup-head p{
color:rgba(255,255,255,.85);
font-size:14px;
}

.demo-popup-close{
position:absolute;
top:12px;
right:14px;
background:none;
border:none;
font-size:24px;
color:#fff;
cursor:pointer;
}

.demo-popup-body{
padding:25px;
}

.demo-popup-body input,
.demo-popup-body select{
width:100%;
height:50px;
margin-bottom:12px;
padding:0 14px;
border:1px solid #E2E8F0;
border-radius:10px;
font-size:14px;
}
.demo-popup-body .f-group{
margin-bottom:14px;
}

.demo-popup-body label{
display:block;
font-size:13px;
font-weight:700;
margin-bottom:6px;
color:#1E293B;
text-transform:uppercase;
letter-spacing:.4px;
}

.demo-popup-body input,
.demo-popup-body select{
width:100%;
height:52px;
padding:0 14px;
border:1px solid #E2E8F0;
border-radius:10px;
background:#F8FAFC;
}
.demo-popup-body button{
width:100%;
height:52px;
background:#123A7A;
color:#fff;
border:none;
border-radius:10px;
font-weight:700;
cursor:pointer;
}

@media(max-width:768px){

.demo-popup{
padding:12px;
}

.demo-popup-box{
max-width:100%;
border-radius:16px;
}

.demo-popup-head{
padding:18px;
}

.demo-popup-head h3{
font-size:22px;
}

.demo-popup-body{
padding:18px;
}

}
