/* ============================================================
   INFINITE SOLUTIONS — Shared Stylesheet
   Exact replica of Digifytive color scheme & layout (White Theme)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --red: #e6133a;
  --red-dark: #c0102e;
  --navy: #0d1b4b;
  --navy2: #0a1535;
  --text: #1a1a2e;
  --text-gray: #555e7b;
  --text-light: #8892a8;
  --bg: #ffffff;
  --bg-light: #f5f7ff;
  --bg-section: #f8f9ff;
  --border: #e8eaf2;
  --border2: #d0d5e8;
  --shadow: 0 4px 30px rgba(13,27,75,0.08);
  --shadow-lg: 0 10px 50px rgba(13,27,75,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  transition: opacity 0.5s;
}
.pre-logo {
  font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 900;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.pre-logo span { color: var(--red); }
.pre-bar {
  width: 180px; height: 3px; background: #eee; border-radius: 3px; overflow: hidden;
}
.pre-fill {
  height: 100%; width: 0; background: var(--red);
  border-radius: 3px; animation: fill-bar 1.4s ease forwards;
}
@keyframes fill-bar { to { width: 100%; } }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.top-bar-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.top-bar-left { display: flex; gap: 28px; }
.top-bar-left span { display: flex; align-items: center; gap: 7px; }
.top-bar-left i { color: var(--red); font-size: 0.78rem; }
.top-social { display: flex; gap: 14px; }
.top-social a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.2s; font-size: 0.85rem;
}
.top-social a:hover { color: white; }

/* ===== HEADER / NAVBAR ===== */
header {
  background: #fff;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.logo-text {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.35rem;
  color: var(--navy); letter-spacing: -0.3px; line-height: 1;
}
.logo-text span { color: var(--red); }
.nav-menu { display: flex; list-style: none; gap: 8px; }
.nav-menu a {
  color: var(--text); text-decoration: none; font-weight: 700; font-size: 0.9rem;
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--red); background: rgba(230,19,58,0.06); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-icons { display: flex; gap: 8px; }
.nav-icons a {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-gray); text-decoration: none; font-size: 0.85rem;
  transition: all 0.2s; position: relative;
}
.nav-icons a:hover { border-color: var(--red); color: var(--red); }
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--red); color: white; font-size: 0.6rem; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.btn-contact {
  background: var(--navy); color: white; font-weight: 800; font-size: 0.85rem;
  padding: 10px 22px; border-radius: 50px; text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-contact:hover { background: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  padding: 90px 0 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.hero-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.hero-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.hero p {
  color: var(--text-gray); font-size: 1.05rem; max-width: 580px;
  margin: 0 auto 40px; line-height: 1.8;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn-red {
  background: var(--red); color: white; font-weight: 800; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 50px; text-decoration: none; border: none;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(230,19,58,0.3);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(230,19,58,0.35); }
.btn-navy-outline {
  background: transparent; color: var(--navy); font-weight: 800; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 50px; text-decoration: none;
  border: 2px solid var(--navy); cursor: pointer; transition: all 0.2s;
}
.btn-navy-outline:hover { background: var(--navy); color: white; }
.hero-images {
  position: relative; margin: 0 auto;
  max-width: 1100px;
}
.hero-dash-main {
  background: #fff; border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 60px rgba(13,27,75,0.12);
  overflow: hidden; border: 1px solid var(--border); border-bottom: none;
  padding: 20px;
}
.dash-mockup {
  background: var(--bg-light); border-radius: 12px; padding: 20px;
  display: grid; grid-template-columns: 200px 1fr; gap: 16px; height: 300px;
}
.dash-sidebar {
  background: var(--navy); border-radius: 10px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.dash-brand { color: white; font-weight: 800; font-size: 0.85rem; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dash-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 0.78rem; font-weight: 600;
}
.dash-nav-item.active { background: rgba(255,255,255,0.12); color: white; }
.dash-nav-item i { font-size: 0.8rem; }
.dash-main { display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.dash-topbar { display: flex; gap: 10px; }
.dash-stat {
  background: white; border-radius: 10px; padding: 14px; flex: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.dash-stat-num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--navy); }
.dash-stat-label { font-size: 0.7rem; color: var(--text-light); margin-top: 2px; }
.dash-stat.red .dash-stat-num { color: var(--red); }
.dash-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.dash-chart-box {
  background: white; border-radius: 10px; padding: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden;
}
.dash-chart-title { font-size: 0.72rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.mini-bars { display: flex; gap: 4px; align-items: flex-end; height: 60px; }
.mini-bar { flex: 1; border-radius: 3px; background: var(--bg-light); }
.mini-bar.a { height: 40%; background: #6c7fd8; }
.mini-bar.b { height: 70%; background: var(--red); }
.mini-bar.c { height: 55%; background: #6c7fd8; }
.mini-bar.d { height: 90%; background: var(--red); }
.mini-bar.e { height: 60%; background: #6c7fd8; }
.mini-bar.f { height: 80%; background: var(--red); }
.donut-wrap { display: flex; align-items: center; gap: 10px; height: 100%; }
.donut {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--red) 0% 45%, #6c7fd8 45% 70%, #f5c518 70% 85%, #e8eaf2 85% 100%);
}
.donut-legend { font-size: 0.65rem; color: var(--text-gray); display: flex; flex-direction: column; gap: 4px; }
.donut-legend span { display: flex; align-items: center; gap: 4px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
/* floating hero cards */
.hero-floating {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 16px; flex-wrap: wrap;
}
.hf-card {
  background: white; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(13,27,75,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.hf-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hf-icon.r { background: rgba(230,19,58,0.1); color: var(--red); }
.hf-icon.n { background: rgba(13,27,75,0.08); color: var(--navy); }
.hf-icon.g { background: rgba(39,174,96,0.1); color: #27ae60; }
.hf-label { font-size: 0.72rem; color: var(--text-light); }
.hf-val { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem; color: var(--navy); }
.hf-trend { font-size: 0.7rem; font-weight: 700; }
.hf-trend.up { color: #27ae60; }
.hf-trend.dn { color: var(--red); }
.hero-rating {
  background: white; border-radius: 14px; padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(13,27,75,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.stars { color: #f5c518; font-size: 0.85rem; }
.rating-text { font-weight: 800; font-size: 0.85rem; color: var(--navy); }
.rating-sub { font-size: 0.72rem; color: var(--text-light); }

/* ===== SECTION BASE ===== */
section { padding: 90px 0; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Nunito', sans-serif; font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 900; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-subtitle { color: var(--text-gray); font-size: 1rem; line-height: 1.8; }
.text-center { text-align: center; }
.text-center .section-subtitle { max-width: 620px; margin: 0 auto; }

/* ===== FEATURES STRIP ===== */
.strip {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.strip-grid {
  max-width: 1260px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.strip-item {
  padding: 28px 30px; border: 1px solid var(--border);
  border-radius: 60px; background: #fff;
  display: flex; gap: 18px; align-items: center;
  box-shadow: 0 4px 20px rgba(13,27,75,0.06);
  transition: all 0.3s;
}
.strip-item:hover { border-color: var(--red); transform: translateY(-3px); }
.strip-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--navy); flex-shrink: 0;
}
.strip-text h4 { font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: 3px; }
.strip-text p { font-size: 0.82rem; color: var(--text-gray); line-height: 1.4; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 50px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h3 {
  font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 900;
  color: var(--navy); margin-bottom: 8px;
}
.cta-banner p { color: var(--text-gray); margin-bottom: 24px; font-size: 0.95rem; }
.money-back { font-size: 0.82rem; color: var(--text-light); margin-top: 10px; }
.money-back i { color: var(--red); margin-right: 4px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .section-subtitle { margin-bottom: 32px; }
.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.about-feat-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 2px 12px rgba(13,27,75,0.05);
}
.about-feat-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; color: white;
}
.about-feat-icon.blue { background: #3b82f6; }
.about-feat-icon.red { background: var(--red); }
.about-feat-icon.green { background: #10b981; }
.about-feat-icon.purple { background: #8b5cf6; }
.about-feat-item span { font-weight: 700; font-size: 0.88rem; color: var(--text); line-height: 1.3; }
.about-visual { position: relative; }
.about-img-main {
  background: var(--navy); border-radius: 24px; padding: 36px;
  color: white; text-align: center;
}
.about-img-main .big-icon { font-size: 4rem; margin-bottom: 16px; }
.about-img-main h3 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.3rem; margin-bottom: 8px; }
.about-img-main p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.about-stat {
  background: rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; text-align: center;
}
.about-stat .num { font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 900; color: white; }
.about-stat .red-num { color: var(--red); }
.about-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* Donut chart */
.donut-stat-box {
  background: white; border-radius: 20px; padding: 28px;
  box-shadow: 0 8px 30px rgba(13,27,75,0.1); text-align: center;
  margin-bottom: 16px;
}
.donut-stat-box h4 { font-weight: 800; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.donut-stat-box p { font-size: 0.75rem; color: var(--text-light); margin-bottom: 20px; }
.donut-big-wrap { display: flex; align-items: center; justify-content: center; gap: 24px; }
.donut-big {
  width: 120px; height: 120px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--red) 0% 36%, #3b82f6 36% 74%, #3dd6f5 74% 99%, #e8eaf2 99% 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.donut-big::after { content: '99%'; position: absolute; width: 80px; height: 80px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.donut-legend-big { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.dl-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-gray); }
.dl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ===== PRICING MINI ===== */
.pricing-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 40px auto 0; }
.price-mini-card {
  border-radius: 20px; padding: 36px 32px;
  transition: all 0.3s; box-shadow: var(--shadow-lg);
}
.price-mini-card:hover { transform: translateY(-5px); }
.price-mini-card.red-card { background: #e6133a; }
.price-mini-card.yellow-card { background: #f5a623; }
.price-mini-card h3 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.4rem; color: white; margin-bottom: 14px; }
.price-mini-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-mini-card ul li { font-size: 0.9rem; color: rgba(255,255,255,0.85); padding: 5px 0; display: flex; gap: 10px; align-items: center; }
.price-mini-card ul li::before { content: '●'; color: white; font-size: 0.5rem; flex-shrink: 0; }
.price-big { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 3rem; color: white; margin-bottom: 24px; letter-spacing: -1px; }
.btn-dark-pill { display: inline-block; background: #111; color: white; font-weight: 800; font-size: 0.9rem; padding: 12px 28px; border-radius: 50px; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
.btn-dark-pill:hover { background: #000; transform: translateY(-2px); }

/* ===== CONSULTANCY ===== */
.consultancy { background: var(--bg-section); }
.consultancy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.consultancy p { color: var(--text-gray); line-height: 1.9; font-size: 0.95rem; margin-bottom: 16px; }
.clients-title { font-size: 0.78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin: 28px 0 16px; }
.client-logos-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.client-chip {
  padding: 6px 14px; border-radius: 50px; background: white;
  border: 1px solid var(--border); font-size: 0.78rem; font-weight: 600;
  color: var(--text-gray); transition: all 0.2s;
}
.client-chip:hover { border-color: var(--red); color: var(--red); }
.consultancy-cards { display: flex; flex-direction: column; gap: 16px; }
.consultancy-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow); transition: all 0.2s;
}
.consultancy-card:hover { border-color: var(--navy); transform: translateX(-4px); }
.c-card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  background: rgba(13,27,75,0.06); color: var(--navy);
}
.c-card-icon.red { background: rgba(230,19,58,0.08); color: var(--red); }
.c-card h4 { font-weight: 800; font-size: 0.95rem; color: var(--navy); margin-bottom: 5px; }
.c-card p { font-size: 0.83rem; color: var(--text-gray); line-height: 1.6; }

/* ===== WHY CHOOSE ===== */
.why-section { background: var(--navy2); padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-section .section-label { color: #ff8fa3; }
.why-section .section-title { color: white; }
.why-section .section-subtitle { color: rgba(255,255,255,0.55); }
.why-visual { position: relative; }
.why-img-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 36px; text-align: center;
}
.why-img-box h3 { color: white; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem; margin-bottom: 6px; }
.why-img-box > p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }
.progress-section { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.progress-item {}
.progress-top { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.progress-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: var(--red); }
.progress-fill.blue { background: #4f8ef7; }
.why-features { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.why-feat { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.why-feat::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%; background: var(--red);
  flex-shrink: 0; color: white; font-size: 0.75rem; display: flex; align-items: center; justify-content: center;
  line-height: 24px; text-align: center;
}
.floating-stat-cards { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.fsc { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 14px 18px; text-align: center; flex: 1; min-width: 120px; }
.fsc .num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.5rem; color: white; }
.fsc .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.fsc.red-card .num { color: var(--red); }

/* ===== CORE FEATURES ===== */
.features-section { background: #0d1b4b; }
.features-section .section-label { color: #ff6b8a; }
.features-section .section-title { color: white; }
.features-grid-boxes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 40px; }
.feat-box {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px 22px; text-align: center;
  cursor: pointer; transition: all 0.3s;
}
.feat-box:hover, .feat-box.active { background: rgba(255,255,255,0.14); border-color: var(--red); }
.feat-box-icon { font-size: 2rem; margin-bottom: 12px; }
.feat-box h4 { font-weight: 800; font-size: 0.9rem; color: white; line-height: 1.4; }
.feat-box-wide { grid-column: span 1; }
/* first 2 boxes span full top row */
.feat-box.top { }
.features-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 40px; margin-bottom: 16px; }
.features-top .feat-box { padding: 36px 28px; }
.features-bottom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ===== INDUSTRIES ===== */
.industries-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.industry-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.industry-item {
  display: flex; align-items: center; gap: 14px;
  background: white; border: 1px solid var(--border);
  padding: 16px 20px; border-radius: 12px; transition: all 0.2s;
  cursor: pointer; box-shadow: 0 2px 8px rgba(13,27,75,0.04);
}
.industry-item:hover, .industry-item.active { border-color: var(--navy); background: var(--navy); }
.industry-item:hover span, .industry-item.active span { color: white; }
.industry-item:hover i, .industry-item.active i { color: var(--red); }
.industry-item i { color: var(--navy); font-size: 1rem; transition: all 0.2s; }
.industry-item span { font-weight: 700; font-size: 0.9rem; color: var(--text); transition: all 0.2s; }
.call-cta { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.call-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
.call-label { font-size: 0.75rem; color: var(--text-light); }
.call-number a { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--navy); text-decoration: none; }
.call-number a:hover { color: var(--red); }
.industry-visual { }
.stat-big-box {
  background: var(--navy); border-radius: 20px; padding: 36px; text-align: center; color: white;
  margin-bottom: 16px;
}
.stat-big-num { font-family: 'Nunito', sans-serif; font-size: 4rem; font-weight: 900; color: var(--red); }
.stat-big-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 4px; }
.mini-feature-cards { display: flex; flex-direction: column; gap: 12px; }
.mfc {
  background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px;
  display: flex; gap: 12px; align-items: center; box-shadow: 0 2px 10px rgba(13,27,75,0.05);
}
.mfc-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.mfc-icon.r { background: rgba(230,19,58,0.1); color: var(--red); }
.mfc-icon.n { background: rgba(13,27,75,0.08); color: var(--navy); }
.mfc-icon.g { background: rgba(39,174,96,0.1); color: #27ae60; }
.mfc h5 { font-size: 0.85rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.mfc p { font-size: 0.75rem; color: var(--text-light); }

/* ===== PRICING PLANS ===== */
.pricing-section { background: var(--bg-section); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.pricing-card {
  background: var(--red); border-radius: 20px; padding: 36px 28px;
  position: relative; transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(230,19,58,0.25);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(230,19,58,0.35); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: white; font-size: 0.72rem; font-weight: 800;
  padding: 5px 16px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.5px;
}
.pricing-card h3 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.2rem; color: white; margin-bottom: 20px; }
.price-num { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.6rem; color: white; margin-bottom: 24px; }
.price-num small { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.7); }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.pricing-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.87rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.pricing-card ul li i { color: white; flex-shrink: 0; margin-top: 2px; font-size: 0.8rem; }
.btn-get {
  display: block; text-align: center; padding: 13px; border-radius: 50px;
  font-weight: 800; font-size: 0.9rem; text-decoration: none; transition: all 0.25s; border: 2px solid white;
  background: white; color: var(--red);
}
.btn-get:hover { background: var(--navy); border-color: var(--navy); color: white; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-section); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testi-card {
  background: white; border: 1px solid var(--border); border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.testi-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote { color: var(--red); font-size: 2rem; line-height: 1; margin-bottom: 14px; font-family: Georgia, serif; }
.testi-text { color: var(--text-gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem; color: white;
}
.testi-name { font-weight: 800; font-size: 0.9rem; color: var(--navy); }
.testi-stars { color: #f5c518; font-size: 0.78rem; margin-top: 2px; }

/* ===== FAQ SECTION ===== */
.faq-section {}
.faq-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.faq-stat {
  text-align: center; background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; box-shadow: var(--shadow);
}
.faq-stat .num { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; color: var(--navy); }
.faq-stat .lbl { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: 0 2px 10px rgba(13,27,75,0.04);
}
.faq-q {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 800; font-size: 0.95rem; color: var(--navy); transition: all 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-q i { color: var(--red); transition: transform 0.3s; font-size: 0.9rem; flex-shrink: 0; margin-left: 14px; }
.faq-a { padding: 0 24px; color: var(--text-gray); font-size: 0.9rem; line-height: 1.8; max-height: 0; overflow: hidden; transition: all 0.35s; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open { border-color: var(--navy); }
.faq-item.open .faq-q { color: var(--navy); }

/* ===== CONTACT ===== */
.contact-section {}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.ci-icon.red { background: var(--red); }
.ci-info h5 { font-weight: 800; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.ci-info p { font-size: 0.87rem; color: var(--text-gray); line-height: 1.6; }
.contact-form-box {
  background: var(--bg-section); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 0.82rem; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border2); border-radius: 10px;
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  background: white; outline: none; transition: all 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,27,75,0.07); }
.fg textarea { height: 120px; resize: vertical; }
.fg select { cursor: pointer; }

/* ===== CLIENTS MARQUEE ===== */
.clients-section { background: var(--bg-section); padding: 60px 0; overflow: hidden; }
.clients-section h2 { text-align: center; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--navy); margin-bottom: 36px; }
.marquee-wrap { overflow: hidden; }
.marquee-track { display: flex; gap: 16px; animation: marquee 35s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-chip {
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 18px; font-size: 0.82rem; font-weight: 700; color: var(--text-gray);
  white-space: nowrap; box-shadow: 0 2px 8px rgba(13,27,75,0.04);
  transition: all 0.2s;
}
.marquee-chip:hover { border-color: var(--navy); color: var(--navy); }

/* ===== READY TO GET STARTED ===== */
.ready-section {
  background: var(--navy); padding: 80px 0; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.ready-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(230,19,58,0.15), transparent 70%);
}
.ready-section h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2.2rem; margin-bottom: 14px; position: relative; z-index: 1; }
.ready-section p { color: rgba(255,255,255,0.6); margin-bottom: 28px; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
footer { background: var(--navy2); padding: 70px 0 0; color: white; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo-text { color: white; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.87rem; line-height: 1.8; margin: 16px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; transition: all 0.2s;
}
.footer-social:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h5 { font-weight: 800; font-size: 0.9rem; color: white; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-newsletter { margin-top: 20px; }
.footer-newsletter label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input {
  flex: 1; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07); color: white; font-family: inherit; font-size: 0.85rem; outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-form input:focus { border-color: var(--red); }
.footer-newsletter-form button {
  padding: 10px 18px; background: var(--red); color: white; border: none;
  border-radius: 8px; font-weight: 800; font-size: 0.82rem; cursor: pointer; transition: all 0.2s;
}
.footer-newsletter-form button:hover { background: var(--red-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom-links a:hover { color: white; }

/* ===== MOBILE MENU ===== */
.mob-menu {
  display: none; position: fixed; top: 74px; left: 0; right: 0; z-index: 998;
  background: white; border-bottom: 1px solid var(--border);
  padding: 20px 24px; flex-direction: column; gap: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--navy); text-decoration: none; font-weight: 700; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.mob-menu a:last-child { border-bottom: none; }
.mob-menu a:hover { color: var(--red); }

/* ===== FADE UP ANIMATION ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: var(--navy); padding: 70px 0 60px; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.page-hero h1 { font-family: 'Nunito', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.breadcrumb { margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--red); margin: 0 8px; }

/* ===== INNER PAGE CONTENT ===== */
.page-content { padding: 70px 0; }
.content-box { max-width: 860px; margin: 0 auto; }
.content-box h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--navy); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--red); }
.content-box h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--navy); margin: 24px 0 10px; }
.content-box p { color: var(--text-gray); line-height: 1.9; margin-bottom: 14px; font-size: 0.95rem; }
.content-box ul { list-style: none; margin: 12px 0 16px; display: flex; flex-direction: column; gap: 10px; }
.content-box ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-gray); font-size: 0.93rem; line-height: 1.7; }
.content-box ul li i { color: var(--red); flex-shrink: 0; margin-top: 4px; }
.content-box strong { color: var(--navy); font-weight: 800; }
.content-box hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.content-intro {
  background: var(--navy); color: white; border-radius: 16px; padding: 28px 32px; margin-bottom: 36px;
  font-size: 0.95rem; line-height: 1.8;
}
.content-intro p { color: rgba(255,255,255,0.7); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-icons, .nav-right { display: none; }
  .hamburger { display: flex; }
  .about-grid, .why-grid, .consultancy-grid, .contact-grid,
  .industries-grid, .feature-showcase { grid-template-columns: 1fr; }
  .pricing-grid, .testi-grid, .faq-stats { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar-left { display: none; }
  .pricing-mini-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
