/* =========================================================
   MEGA LINKS INFORMATION TECHNOLOGY LLC — Website Stylesheet
   Theme: White / Royal Blue / Navy
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --white: #ffffff;
  --off-white: #f5f8ff;
  --ice: #eef3ff;
  --royal: #2455e6;
  --royal-dark: #173bb0;
  --navy: #0b1c4d;
  --navy-deep: #071230;
  --sky: #4f86ff;
  --accent-cyan: #22c1dc;
  --text-main: #1b2440;
  --text-muted: #5b6685;
  --text-soft: #8892ab;
  --border: #e3e9fb;
  --success: #17b26a;
  --warn: #f5a623;

  --grad-primary: linear-gradient(135deg, var(--royal) 0%, var(--royal-dark) 55%, var(--navy) 100%);
  --grad-soft: linear-gradient(135deg, #eaf1ff 0%, #dbe7ff 100%);
  --grad-hero-bg: radial-gradient(circle at 15% 20%, rgba(36,85,230,0.14), transparent 45%),
                   radial-gradient(circle at 85% 10%, rgba(34,193,220,0.12), transparent 40%),
                   radial-gradient(circle at 50% 90%, rgba(23,59,176,0.10), transparent 50%);

  --shadow-sm: 0 2px 10px rgba(20,40,110,0.06);
  --shadow-md: 0 10px 30px rgba(20,40,110,0.10);
  --shadow-lg: 0 20px 60px rgba(11,28,77,0.16);
  --shadow-glow: 0 0 0 1px rgba(36,85,230,0.08), 0 20px 45px rgba(36,85,230,0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1220px;
  --header-h: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--royal); background: var(--ice); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--royal); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--navy); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-pad { padding: 96px 0; }
.bg-ice { background: var(--off-white); }
.text-center { text-align: center; }
.placeholder-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: #a7742a; background: #fff4e0; border: 1px solid #f3dfae;
  padding: 3px 9px; border-radius: 6px; margin-left: 8px; vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.96rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary { background: var(--grad-primary); color: var(--white); box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 50px rgba(23,59,176,0.28); }
.btn-outline { background: var(--white); color: var(--royal); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--royal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--white); color: var(--royal-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.btn-whatsapp { background: #1ebe5d; color: var(--white); box-shadow: 0 12px 26px rgba(30,190,93,0.30); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(30,190,93,0.4); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); background: rgba(255,255,255,0.96); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px; background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-weight: 800; font-size: 1.1rem; box-shadow: var(--shadow-glow); flex-shrink: 0;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name strong { font-size: 0.98rem; color: var(--navy); font-weight: 800; letter-spacing: 0.01em; }
.brand-name span { font-size: 0.68rem; color: var(--royal); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.92rem; font-weight: 600; color: var(--text-main); position: relative; padding: 6px 0;
  transition: color 0.25s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--royal);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--royal); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border-radius: 10px;
  align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--white);
}
.hamburger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--white);
  z-index: 999; transform: translateX(100%); transition: transform 0.4s var(--ease);
  overflow-y: auto; padding: 30px 24px 100px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 16px 4px; font-size: 1.1rem; font-weight: 700; color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .header-actions { flex-direction: column; margin-top: 26px; align-items: stretch; }
.mobile-nav .header-actions .btn { width: 100%; margin-bottom: 12px; }

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--header-h) + 64px) 0 90px; background: var(--white); background-image: var(--grad-hero-bg);
  overflow: hidden; position: relative;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.5; z-index: 0;
  animation: floatBlob 12s ease-in-out infinite;
}
.hero::before { width: 340px; height: 340px; background: radial-gradient(circle, rgba(36,85,230,0.16), transparent 70%); top: -80px; right: -60px; }
.hero::after { width: 280px; height: 280px; background: radial-gradient(circle, rgba(34,193,220,0.16), transparent 70%); bottom: -60px; left: -60px; animation-delay: 2s; }
@keyframes floatBlob { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-24px) scale(1.06); } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.3vw, 3.35rem); color: var(--navy); margin-bottom: 22px; }
.hero-copy h1 .accent { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy p.lead { font-size: 1.12rem; color: var(--text-muted); max-width: 560px; margin-bottom: 34px; }
.hero-btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-whatsapp-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #1ebe5d; }
.hero-whatsapp-link svg { width: 20px; height: 20px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.trust-chip {
  display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border);
  padding: 10px 16px; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.trust-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

/* ---------- Hero Dashboard Illustration ---------- */
.hero-visual { position: relative; }
.dash-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 26px; position: relative; z-index: 2;
  animation: dashFloat 6s ease-in-out infinite;
}
@keyframes dashFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.dash-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-card-head .dots { display: flex; gap: 6px; }
.dash-card-head .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.dash-card-head strong { font-size: 0.85rem; color: var(--navy); font-weight: 800; }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: var(--success); }
.dash-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--success); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(23,178,106,0.5); } 70% { box-shadow: 0 0 0 8px rgba(23,178,106,0); } 100% { box-shadow: 0 0 0 0 rgba(23,178,106,0); } }

.dash-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 18px; }
.dash-stat { background: var(--off-white); border-radius: var(--radius-sm); padding: 14px; border: 1px solid var(--border); }
.dash-stat .lbl { font-size: 0.7rem; color: var(--text-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.dash-stat .val { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-top: 4px; }
.dash-stat .trend { font-size: 0.72rem; font-weight: 700; margin-top: 3px; }
.dash-stat .trend.up { color: var(--success); }
.dash-stat .trend.down { color: #e05252; }

.dash-chart { background: var(--off-white); border-radius: var(--radius-sm); padding: 16px; border: 1px solid var(--border); margin-bottom: 14px; }
.dash-chart .lbl { font-size: 0.72rem; font-weight: 700; color: var(--text-soft); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 64px; }
.bars span { flex: 1; border-radius: 5px 5px 0 0; background: var(--grad-primary); animation: barGrow 1.4s var(--ease) both; }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }

.dash-tasks { display: flex; flex-direction: column; gap: 8px; }
.dash-task { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--text-main); }
.dash-task .chk { width: 16px; height: 16px; border-radius: 5px; border: 2px solid var(--royal); flex-shrink: 0; }
.dash-task .chk.done { background: var(--royal); position: relative; }
.dash-task span.muted { color: var(--text-soft); margin-left: auto; font-weight: 700; }

.float-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 14px 18px; display: flex; align-items: center; gap: 10px;
  z-index: 3; animation: dashFloat 5s ease-in-out infinite;
}
.float-card.fc-1 { top: -22px; left: -30px; animation-delay: 0.5s; }
.float-card.fc-2 { bottom: -18px; right: -26px; animation-delay: 1.2s; }
.float-card .fc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.float-card.fc-1 .fc-icon { background: #e6fbf0; color: var(--success); }
.float-card.fc-2 .fc-icon { background: var(--ice); color: var(--royal); }
.float-card .fc-title { font-size: 0.72rem; color: var(--text-soft); font-weight: 700; }
.float-card .fc-val { font-size: 1rem; font-weight: 800; color: var(--navy); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-points { display: grid; gap: 14px; margin-top: 26px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.about-point:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.about-point .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--ice); color: var(--royal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; }
.about-point p { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.about-visual { position: relative; }
.about-panel { background: var(--grad-primary); border-radius: var(--radius-lg); padding: 44px 34px; color: var(--white); box-shadow: var(--shadow-glow); position: relative; overflow: hidden; }
.about-panel::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.18), transparent 55%); }
.about-panel h3 { font-size: 1.5rem; margin-bottom: 14px; position: relative; }
.about-panel p { color: rgba(255,255,255,0.86); font-size: 0.98rem; position: relative; margin-bottom: 22px; }
.about-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.about-mini-stats div { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-sm); padding: 14px; }
.about-mini-stats strong { font-size: 1.4rem; display: block; }
.about-mini-stats span { font-size: 0.74rem; opacity: 0.85; }

/* ---------- Cards Grid (services) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity 0.35s; z-index: 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(36,85,230,0.25); }
.service-card:hover::before { opacity: 0.5; }
.service-card > * { position: relative; z-index: 1; }
.service-card .num { font-size: 0.75rem; font-weight: 800; color: var(--royal); background: var(--ice); display: inline-block; padding: 3px 10px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.service-card .icon-tile { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; margin-bottom: 18px; box-shadow: var(--shadow-glow); }
.service-card h3 { font-size: 1.14rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; }

.highlight-band {
  margin-top: 60px; background: var(--navy); border-radius: var(--radius-lg); padding: 44px 40px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap; color: var(--white); position: relative; overflow: hidden;
}
.highlight-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 90% 20%, rgba(79,134,255,0.35), transparent 55%); }
.highlight-band > * { position: relative; z-index: 1; }
.highlight-band .hb-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.highlight-band h3 { font-size: 1.3rem; margin-bottom: 8px; }
.highlight-band p { color: rgba(255,255,255,0.78); max-width: 640px; }

/* ---------- Simple list cards (social/website/ads) ---------- */
.list-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.list-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.list-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.list-card .lc-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--ice); color: var(--royal); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.list-card span { font-weight: 700; font-size: 0.92rem; color: var(--text-main); }

/* ---------- Demo Section ---------- */
.demo-section { background: var(--grad-primary); position: relative; overflow: hidden; }
.demo-section::before { content: ''; position: absolute; inset: 0; background: var(--grad-hero-bg); opacity: 0.7; }
.demo-section::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%); top: -180px; right: -150px; }
.demo-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: flex-start; }
.demo-copy { color: var(--white); }
.demo-copy .eyebrow { background: rgba(255,255,255,0.14); color: var(--white); border-color: rgba(255,255,255,0.3); }
.demo-copy .eyebrow::before { background: var(--white); }
.demo-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.demo-copy p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }
.demo-feature-list { display: grid; gap: 12px; margin-bottom: 30px; }
.demo-feature-list li { display: flex; gap: 10px; align-items: center; font-weight: 600; font-size: 0.94rem; }
.demo-feature-list li::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0; }

.demo-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.demo-form-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 4px; }
.demo-form-card .sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--off-white); color: var(--text-main); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 4px rgba(36,85,230,0.12); background: var(--white); }
.field textarea { resize: vertical; min-height: 90px; }
.field .err { color: #e05252; font-size: 0.76rem; margin-top: 5px; display: none; font-weight: 600; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e05252; }
.field.invalid .err { display: block; }
.form-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: #e6fbf0; color: var(--success); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; }
.form-success h4 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 20px); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step .step-num {
  width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 2px solid var(--royal);
  color: var(--royal); font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: var(--shadow-md); transition: all 0.35s var(--ease);
}
.process-step:hover .step-num { background: var(--grad-primary); color: var(--white); transform: scale(1.08); }
.process-step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; padding: 0 8px; }

/* ---------- Why Choose Us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .wc-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--ice); color: var(--royal); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.why-card p { font-weight: 700; color: var(--navy); font-size: 0.95rem; }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.industry-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s; }
.industry-card:hover { transform: translateY(-6px); background: var(--grad-primary); box-shadow: var(--shadow-glow); }
.industry-card .ind-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--ice); color: var(--royal); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px; transition: background 0.3s, color 0.3s; }
.industry-card:hover .ind-ico { background: rgba(255,255,255,0.2); color: var(--white); }
.industry-card h3 { font-size: 0.98rem; color: var(--navy); transition: color 0.3s; }
.industry-card:hover h3 { color: var(--white); }

/* ---------- Stats ---------- */
.stats-section { background: var(--navy); position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(79,134,255,0.22), transparent 45%), radial-gradient(circle at 80% 70%, rgba(34,193,220,0.18), transparent 45%); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); font-weight: 800; }
.stat-item .stat-label { color: rgba(255,255,255,0.72); font-size: 0.88rem; font-weight: 600; margin-top: 8px; }
.stats-note { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 36px; position: relative; z-index: 1; }

/* ---------- Testimonials ---------- */
.testi-wrap { max-width: 780px; margin: 0 auto; position: relative; }
.testi-slider { overflow: hidden; border-radius: var(--radius-lg); }
.testi-track { display: flex; transition: transform 0.55s var(--ease); }
.testi-slide { min-width: 100%; padding: 6px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); text-align: center; }
.testi-card .stars { color: var(--warn); font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 3px; }
.testi-card p.quote { font-size: 1.08rem; color: var(--text-main); font-style: italic; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.testi-person strong { display: block; color: var(--navy); font-size: 0.92rem; }
.testi-person span { color: var(--text-soft); font-size: 0.78rem; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
.testi-dots button.active { background: var(--royal); width: 26px; border-radius: var(--radius-pill); }
.testi-arrow { width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--royal); transition: all 0.25s; }
.testi-arrow:hover { background: var(--grad-primary); color: var(--white); }
.testi-disclaimer { text-align: center; color: var(--text-soft); font-size: 0.78rem; margin-top: 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--navy); }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: var(--ice); color: var(--royal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s var(--ease); font-weight: 800; }
.faq-item.open .faq-q .plus { transform: rotate(135deg); background: var(--grad-primary); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.94rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 38px 32px; position: relative; overflow: hidden; }
.contact-info-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(79,134,255,0.3), transparent 50%); }
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 22px; }
.cinfo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cinfo-row .ci-ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-row strong { display: block; font-size: 0.92rem; }
.cinfo-row span { color: rgba(255,255,255,0.68); font-size: 0.82rem; }
.contact-btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.map-placeholder {
  margin-top: 24px; border-radius: var(--radius-md); background: rgba(255,255,255,0.08); border: 1px dashed rgba(255,255,255,0.3);
  height: 150px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 700; text-align:center; padding: 10px;
}
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand .brand-name strong { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--royal); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.86rem; transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { padding: 24px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom .legal-links { display: flex; gap: 20px; }

/* ---------- Floating widgets ---------- */
.sticky-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 900; width: 60px; height: 60px; border-radius: 50%;
  background: #1ebe5d; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(30,190,93,0.42); transition: transform 0.3s var(--ease); animation: wa-pulse 2.4s infinite;
}
.sticky-whatsapp:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(30,190,93,0.5), 0 14px 34px rgba(30,190,93,0.42); } 70% { box-shadow: 0 0 0 14px rgba(30,190,93,0), 0 14px 34px rgba(30,190,93,0.42); } 100% { box-shadow: 0 0 0 0 rgba(30,190,93,0), 0 14px 34px rgba(30,190,93,0.42); } }

.back-to-top {
  position: fixed; bottom: 26px; right: 96px; z-index: 900; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border); color: var(--royal); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all 0.3s var(--ease); font-weight: 800;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Demo popup modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11,28,77,0.55); backdrop-filter: blur(3px); z-index: 1200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg); max-width: 480px; width: 100%; padding: 36px;
  box-shadow: var(--shadow-lg); position: relative; transform: scale(0.92) translateY(20px); transition: transform 0.35s var(--ease);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--text-muted); }
.modal-box h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 8px; }
.modal-box p.sub { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 22px; }
.modal-box .field { margin-bottom: 14px; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 560px; margin: 0 auto; z-index: 1300;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 22px 24px; transform: translateY(140%); transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 16px; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Page loader */
.page-loader {
  position: fixed; inset: 0; background: var(--white); z-index: 3000; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-mark { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 1.3rem; animation: loaderPulse 1.1s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.86); opacity: 0.7; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Simple pages (privacy/terms/thank-you) ---------- */
.simple-page { padding: calc(var(--header-h) + 60px) 0 100px; }
.simple-page .container { max-width: 880px; }
.simple-page h1 { color: var(--navy); font-size: 2rem; margin-bottom: 10px; }
.simple-page .updated { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 40px; }
.simple-page h2 { color: var(--navy); font-size: 1.2rem; margin: 32px 0 12px; }
.simple-page p, .simple-page li { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 12px; }
.simple-page ul { padding-left: 20px; list-style: disc; }
.thankyou-box { text-align: center; padding: 60px 0; }
.thankyou-box .check { width: 90px; height: 90px; border-radius: 50%; background: #e6fbf0; color: var(--success); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; margin: 0 auto 26px; }
.thankyou-box h1 { color: var(--navy); margin-bottom: 14px; }
.thankyou-box p { color: var(--text-muted); max-width: 480px; margin: 0 auto 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid, .about-grid, .demo-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto 20px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn:not(.btn-icon-only) span.long { display: none; }
}
@media (max-width: 640px) {
  .header-actions .btn-outline { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .back-to-top { right: 20px; bottom: 96px; }
  .sticky-whatsapp { width: 54px; height: 54px; }
  .section-pad { padding: 68px 0; }
}
