/* ============================================================
   NUVIO TECHNOLOGIES — Light / White Stylesheet
   nuvio-light.css
   Use: <link rel="stylesheet" href="/css/nuvio-light.css" />
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --navy:       #0D1B36;
  --navy-mid:   #132445;
  --blue:       #2176FF;
  --blue-hover: #1a5fd4;
  --cyan:       #00A8B5;
  --off-white:  #F4F7FC;
  --gray:       #6B7A99;
  --light-gray: #E4EAF3;
  --mid-gray:   #D0D8EA;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Poppins', sans-serif;
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  color: #1A2740;
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
}

/* ============================================================
   NAVBAR — white with subtle shadow
   ============================================================ */
.navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 2px 16px rgba(13,27,54,0.06);
}
.navbar-brand {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy) !important;
  letter-spacing: -0.02em;
}
.navbar-brand span { color: var(--blue); }

.navbar-brand .sep{size:.1rem;font-weight:100;color:var(--mid-gray);}
.navbar-brand .pn{color:var(--blue);font-size: .9em;font-weight:600;}

.navbar-nav .nav-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.btn-nav-cta {
  background: var(--blue);
  color: #fff !important;
  border-radius: 6px;
  padding: 0.45rem 1.2rem !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s !important;
}
.btn-nav-cta:hover { background: var(--blue-hover) !important;  color: #fff !important;}

/* ── hamburger toggler on light navbar ── */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13,27,54,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler { border-color: rgba(13,27,54,0.2); }

.dropdown-item{
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

/* ============================================================
   PAGE HERO (inner pages) — soft light gradient
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #f0f5ff 0%, #eaf1ff 50%, #f4f7fc 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--light-gray);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,118,255,0.08) 0%, transparent 70%);
  top: -100px; right: -60px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(33,118,255,0.08);
  border: 1px solid rgba(33,118,255,0.2);
  color: var(--blue);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.page-hero h1 span { color: var(--blue); }
.page-hero p.lead {
  color: var(--gray);
  font-size: 1.05rem; line-height: 1.75;
  max-width: 620px;
}

/* ============================================================
   HOME HERO — light
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #f0f5ff 0%, #eaf1ff 40%, #f8faff 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--light-gray);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 100%);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--blue); }
.hero p.lead {
  color: var(--gray);
  font-size: 1.05rem; line-height: 1.75;
  max-width: 580px; margin-bottom: 2.5rem;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 14px; padding: 1.8rem; height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(13,27,54,0.05);
}
.hero-card:hover {
  border-color: rgba(33,118,255,0.35);
  box-shadow: 0 12px 40px rgba(33,118,255,0.1);
}
.hero-card .card-icon {
  width: 44px; height: 44px;
  background: rgba(33,118,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem; color: var(--blue);
}
.hero-card h5 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 700; }
.hero-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; }
.hero-card a { color: var(--blue); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.hero-card a:hover { color: var(--blue-hover); }

/* ============================================================
   STATS BAR — light
   ============================================================ */
.stats-bar {
  background: #fff;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-item h3 {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: var(--blue); margin-bottom: 0.2rem;
}
.stat-item p { color: var(--gray); font-size: 0.85rem; margin: 0; }
.stat-divider { border-left: 1px solid var(--light-gray); }

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
section { padding: 90px 0; }
.section-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.2;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem; line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: var(--blue); color: #fff; border: none;
  padding: 0.8rem 1.8rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--blue-hover); color: #fff;
  transform: translateY(-2px);
}
.btn-outline-custom {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--mid-gray);
  padding: 0.8rem 1.8rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline-custom:hover {
  border-color: var(--blue); color: var(--blue);
  background: rgba(33,118,255,0.04);
}
.btn-blue {
  background: var(--blue); color: #fff; border: none;
  padding: 0.75rem 1.7rem; border-radius: 8px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-blue:hover {
  background: var(--blue-hover); color: #fff;
  transform: translateY(-2px);
}
.btn-product-primary {
  background: var(--blue); color: #fff; border: none;
  padding: 0.75rem 1.6rem; border-radius: 8px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-product-primary:hover {
  background: var(--blue-hover); color: #fff;
  transform: translateY(-2px);
}
.btn-product-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--light-gray);
  padding: 0.75rem 1.6rem; border-radius: 8px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.2s;
}
.btn-product-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* CTA buttons */
.btn-cta-white {
  background: #fff; color: var(--navy); border: none;
  padding: 0.7rem 1.5rem; border-radius: 7px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-cta-white:hover { background: var(--off-white); color: var(--navy); }
.btn-cta-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--mid-gray);
  padding: 0.7rem 1.5rem; border-radius: 7px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-cta-outline:hover {
  border-color: var(--blue); color: var(--blue);
  background: rgba(33,118,255,0.04);
}


.btn-cta-blue {
  background: transparent; color: var(--light-gray);
  border: 1.5px solid var(--mid-gray);
  padding: 0.7rem 1.5rem; border-radius: 7px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-cta-blue:hover { border: 1.5px solid var(--off-white); color: var(--off-white); }
/* ============================================================
   COMING SOON BADGE
   ============================================================ */
.coming-soon-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  color: #b45309;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.7rem; border-radius: 50px;
  margin-bottom: 1rem;
}

/* ============================================================
   ABOUT SECTION (home)
   ============================================================ */
.about { background: var(--off-white); }
.about-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.about-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(33,118,255,0.1); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1rem;
}
.about-feature h6 {
  font-weight: 700; font-size: 0.95rem;
  margin-bottom: 0.25rem; color: var(--navy);
}
.about-feature p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* about visual — light blue panel */
.about-visual {
  background: linear-gradient(135deg, #ddeeff 0%, #e8f0ff 100%);
  border: 1px solid rgba(33,118,255,0.15);
  border-radius: 18px; padding: 2.5rem;
  height: 100%; min-height: 380px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-visual-content { position: relative; z-index: 1; }
.about-visual h4 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.5rem; font-weight: 700; }
.about-visual p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }
.about-pill {
  display: inline-block;
  background: rgba(33,118,255,0.1); color: var(--blue);
  border: 1px solid rgba(33,118,255,0.2);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  margin-bottom: 1rem;
}

/* ============================================================
   HOME PRODUCTS CARDS
   ============================================================ */
.products { background: #fff; }
.product-card {
  border: 1px solid var(--light-gray); border-radius: 16px;
  padding: 2rem; height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  background: #fff;
}
.product-card:hover {
  box-shadow: 0 20px 60px rgba(33,118,255,0.1);
  border-color: rgba(33,118,255,0.3);
  transform: translateY(-4px);
}
.product-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue) 0%, #00bdd4 100%);
  border-radius: 13px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; color: #fff;
  margin-bottom: 1.25rem;
}
.product-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--navy); }
.product-tag {
  font-size: 0.75rem; font-weight: 600; color: var(--blue);
  background: rgba(33,118,255,0.08);
  padding: 0.2rem 0.65rem; border-radius: 4px;
  display: inline-block; margin-bottom: 0.9rem;
}
.product-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.product-features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.product-features li {
  font-size: 0.86rem; color: #445;
  padding: 0.3rem 0 0.3rem 1.3rem;
  position: relative;
}
.product-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}
.btn-product {
  background: var(--navy); color: #fff; border: none;
  padding: 0.6rem 1.3rem; border-radius: 7px;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 0.4rem;
  transition: background 0.2s;
}
.btn-product:hover { background: var(--blue); color: #fff; }

/* featured card — accent blue instead of dark navy */
.product-card.featured {
  background: linear-gradient(160deg, #1256cc 0%, #1a5fd4 100%);
  border-color: rgba(33,118,255,0.4);
}
.product-card.featured h4 { color: #fff; }
.product-card.featured p { color: rgba(255,255,255,0.7); }
.product-card.featured .product-tag { background: rgba(255,255,255,0.15); color: #fff; }
.product-card.featured .product-features li { color: rgba(255,255,255,0.85); }
.product-card.featured .product-features li::before { color: #a8d8ff; }
.product-card.featured .btn-product { background: rgba(255,255,255,0.15); color: #fff; }
.product-card.featured .btn-product:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   CONSULTING CARDS (home)
   ============================================================ */
.consulting { background: var(--off-white); }
.consulting-card {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 14px; padding: 1.8rem; height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.consulting-card:hover {
  box-shadow: 0 12px 40px rgba(33,118,255,0.08);
  border-color: rgba(33,118,255,0.25);
}
.consulting-icon {
  width: 46px; height: 46px;
  background: rgba(33,118,255,0.08); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--blue); margin-bottom: 1.1rem;
}
.consulting-card h5 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.consulting-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.consulting-link {
  color: var(--blue); font-size: 0.87rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem;
}
.consulting-link:hover { color: var(--blue-hover); }
.consulting-list { list-style: none; padding: 0; margin: 0; }
.consulting-list li {
  font-size: 0.84rem; color: #555;
  padding: 0.28rem 0 0.28rem 1.2rem;
  position: relative;
  border-top: 1px solid var(--light-gray);
}
.consulting-list li:first-child { border-top: none; }
.consulting-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--blue); font-size: 0.75rem; top: 0.35rem;
}

/* ============================================================
   WHY NUVIO (home) — light
   ============================================================ */
.why { background: var(--off-white); }
.why .section-heading { color: var(--navy); }
.why-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 14px; padding: 1.8rem; height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-color: rgba(33,118,255,0.3);
  box-shadow: 0 12px 40px rgba(33,118,255,0.08);
}
.why-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.why-card h5 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p { color: var(--gray); font-size: 0.87rem; line-height: 1.7; margin: 0; }

/* ============================================================
   INDUSTRIES (home) — light
   ============================================================ */
.industries { background: #fff; }
.industry-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-radius: 50px; padding: 0.6rem 1.2rem;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
  margin: 0.35rem; transition: all 0.2s; text-decoration: none;
}
.industry-pill:hover {
  background: rgba(33,118,255,0.08);
  border-color: rgba(33,118,255,0.3); color: var(--blue);
}
.industry-pill i { color: var(--blue); }

/* ============================================================
   CTA SECTION — light: blue gradient (same punch, light body)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fd4 100%);
  padding: 90px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HOME CTA SECTION — light blue accent
   ============================================================ */
.home-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fd4 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.home-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.home-cta .section-heading { color: #fff; }
.home-cta .section-sub { color: rgba(255,255,255,0.75); max-width: 600px; }
.cta-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 2rem; height: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.cta-card:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
}
.cta-card h5 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.cta-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.2rem; }

/* ============================================================
   CTA STRIP (products page)
   ============================================================ */
.cta-strip { background: var(--off-white); padding: 70px 0; }
.cta-strip h2 {
  font-weight: 800; color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}
.cta-strip p { color: var(--gray); font-size: 0.97rem; line-height: 1.75; }

/* ============================================================
   PRODUCTS PAGE — Product rows
   ============================================================ */
.products-section { background: #fff; }
.product-row { padding: 60px 0; border-bottom: 1px solid var(--light-gray); }
.product-row:last-child { border-bottom: none; }
.product-row.alt { background: var(--off-white); }

.product-main-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--blue) 0%, #00bdd4 100%);
  border-radius: 18px; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(33,118,255,0.2);
}
.product-main-icon.dark {
  background: linear-gradient(135deg, #1A2740 0%, var(--navy-mid) 100%);
  box-shadow: 0 12px 30px rgba(13,27,54,0.2);
}
.product-main-icon.teal {
  background: linear-gradient(135deg, #00a8b5 0%, #00e0c7 100%);
  box-shadow: 0 12px 30px rgba(0,194,209,0.25);
}
.product-main-icon.orange {
  background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  box-shadow: 0 12px 30px rgba(249,115,22,0.25);
}
.product-main-icon.violet {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  box-shadow: 0 12px 30px rgba(124,58,237,0.25);
}
.product-name-tag {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.4rem;
}
.product-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 0.4rem; letter-spacing: -0.02em;
}
.product-tagline { font-size: 1rem; color: var(--gray); font-weight: 500; margin-bottom: 1.2rem; }
.product-desc { color: #445; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }

.feature-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(33,118,255,0.06);
  border: 1px solid rgba(33,118,255,0.15);
  color: var(--navy); font-size: 0.82rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 50px; margin: 0.25rem;
}
.feature-pill i { color: var(--blue); font-size: 0.85rem; }

/* product visual card — light blue panel */
.product-visual-card {
  background: linear-gradient(135deg, #ddeeff 0%, #e4ecff 100%);
  border: 1px solid rgba(33,118,255,0.15);
  border-radius: 20px; padding: 2.5rem;
  position: relative; overflow: hidden;
  height: 100%; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.product-visual-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.product-visual-card.teal-bg  { background: linear-gradient(135deg, #d0f2f5 0%, #c5eef3 100%); border-color: rgba(0,168,181,0.2); }
.product-visual-card.orange-bg { background: linear-gradient(135deg, #fff0e6 0%, #ffe4cc 100%); border-color: rgba(249,115,22,0.2); }
.product-visual-card.violet-bg { background: linear-gradient(135deg, #f0eaff 0%, #e8deff 100%); border-color: rgba(124,58,237,0.2); }

.visual-stat { position: relative; z-index: 1; }
.visual-stat h3 { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.1rem; }
.visual-stat p { color: var(--gray); font-size: 0.85rem; margin: 0; }
.visual-big-icon { font-size: 6rem; opacity: 0.07; position: absolute; bottom: -10px; right: 20px; color: var(--navy); }

/* ============================================================
   NUVIO ONE SECTION (products page) — light blue band
   ============================================================ */
.nuvio-one-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0ff 100%);
  border-top: 1px solid rgba(33,118,255,0.12);
  border-bottom: 1px solid rgba(33,118,255,0.12);
  padding: 80px 0; position: relative; overflow: hidden;
}
.nuvio-one-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.nuvio-one-section .section-heading { color: var(--navy); }
.one-feature-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1rem; }
.one-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(33,118,255,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.95rem;
}
.one-feature-item h6 { color: var(--navy); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
.one-feature-item p { color: var(--gray); font-size: 0.83rem; line-height: 1.55; margin: 0; }

/* ============================================================
   SERVICES PAGE — Service areas
   ============================================================ */
.service-area { padding: 70px 0; border-bottom: 1px solid var(--light-gray); }
.service-area:last-child { border-bottom: none; }
.service-area.alt { background: var(--off-white); }

.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem;
}
.icon-blue  { background: rgba(33,118,255,0.1); color: var(--blue); }
.icon-cyan  { background: rgba(0,168,181,0.1);  color: var(--cyan); }
.icon-navy  { background: rgba(13,27,54,0.07);  color: var(--navy); }

.service-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.service-subtitle { font-size: 1rem; color: var(--gray); font-weight: 500; margin-bottom: 1.2rem; }
.service-desc { color: #445; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.8rem; }

.deliverable-card {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: 0.75rem;
  display: flex; align-items: flex-start; gap: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.deliverable-card:hover {
  border-color: rgba(33,118,255,0.3);
  box-shadow: 0 4px 20px rgba(33,118,255,0.07);
}
.deliverable-num {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(33,118,255,0.1); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: var(--blue);
}
.deliverable-card h6 { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.deliverable-card p { font-size: 0.83rem; color: var(--gray); margin: 0; line-height: 1.55; }

/* service visual — light blue panel */
.service-visual {
  background: linear-gradient(135deg, #ddeeff 0%, #e4ecff 100%);
  border: 1px solid rgba(33,118,255,0.15);
  border-radius: 20px; padding: 2.5rem;
  height: 100%; min-height: 360px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.service-visual.teal-bg { background: linear-gradient(135deg, #cdf2f4 0%, #c0ecef 100%); border-color: rgba(0,168,181,0.2); }
.service-visual.mid-bg  { background: linear-gradient(135deg, #e4ecff 0%, #d8e6ff 100%); border-color: rgba(33,118,255,0.2); }
.sv-content { position: relative; z-index: 1; }
.sv-kpi h3 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 0.1rem; }
.sv-kpi p  { color: var(--gray); font-size: 0.83rem; margin: 0; }
.sv-big-icon { font-size: 5.5rem; opacity: 0.07; position: absolute; bottom: -5px; right: 15px; color: var(--navy); }
.tech-tag {
  display: inline-block;
  background: rgba(33,118,255,0.07);
  border: 1px solid rgba(33,118,255,0.15);
  color: var(--navy);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: 6px; margin: 0.2rem;
}

/* ============================================================
   SERVICES PAGE — Process section — light
   ============================================================ */
.process-section { background: var(--off-white); }
.process-section .section-heading { color: var(--navy); }
.process-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 14px; padding: 1.8rem; height: 100%;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.process-card:hover {
  border-color: rgba(33,118,255,0.3);
  box-shadow: 0 12px 40px rgba(33,118,255,0.08);
}
.process-step-num {
  font-size: 4rem; font-weight: 800;
  color: rgba(33,118,255,0.06);
  position: absolute; top: 0.5rem; right: 1rem;
  line-height: 1; font-family: var(--font-head);
}
.process-card h5 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-card p  { color: var(--gray); font-size: 0.87rem; line-height: 1.7; margin: 0; }

/* ============================================================
   SERVICES PAGE — AI spotlight
   ============================================================ */
.ai-spotlight { background: var(--off-white); }
.ai-use-card {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 1.4rem; height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.ai-use-card:hover {
  box-shadow: 0 10px 35px rgba(33,118,255,0.09);
  border-color: rgba(33,118,255,0.25);
}
.ai-dept-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.6rem;
}
.ai-use-card h6 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.ai-use-list { list-style: none; padding: 0; margin: 0; }
.ai-use-list li {
  font-size: 0.82rem; color: var(--gray);
  padding: 0.2rem 0 0.2rem 1.1rem; position: relative;
}
.ai-use-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--blue); font-size: 0.72rem; top: 0.28rem;
}

/* ============================================================
   CONTACT PAGE — Form
   ============================================================ */
.contact-section { background: var(--off-white); padding: 80px 0 100px; }

.contact-form-wrap {
  background: #fff; border-radius: 20px; padding: 2.8rem;
  box-shadow: 0 20px 60px rgba(13,27,54,0.06);
  border: 1px solid var(--light-gray);
}
.form-label { font-size: 0.87rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-control,
.form-select {
  border: 1.5px solid var(--light-gray);
  border-radius: 9px; font-size: 0.92rem;
  padding: 0.7rem 1rem; color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,118,255,0.1);
  outline: none;
}
.form-control::placeholder { color: #aab4c8; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-divider {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 0.5rem; margin: 1.8rem 0 1.2rem;
}
.btn-submit {
  background: var(--blue); color: #fff; border: none;
  padding: 0.85rem 2rem; border-radius: 9px;
  font-weight: 700; font-size: 0.95rem; width: 100%;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  cursor: pointer;
}
.btn-submit:hover { background: var(--blue-hover); transform: translateY(-2px); }
.form-note { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

.intent-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.intent-tab {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--off-white); border: 1.5px solid var(--light-gray);
  color: var(--navy); font-size: 0.84rem; font-weight: 600;
  padding: 0.55rem 1rem; border-radius: 50px;
  cursor: pointer; transition: all 0.2s; user-select: none;
}
.intent-tab.active,
.intent-tab:hover {
  background: rgba(33,118,255,0.08);
  border-color: var(--blue); color: var(--blue);
}
.intent-tab i { font-size: 0.9rem; }

/* ============================================================
   CONTACT PAGE — Info panel
   ============================================================ */
.contact-info-panel { padding-left: 1rem; }
.info-card {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 14px; padding: 1.6rem; margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  border-color: rgba(33,118,255,0.25);
  box-shadow: 0 6px 25px rgba(33,118,255,0.07);
}
.info-card-icon {
  width: 42px; height: 42px;
  background: rgba(33,118,255,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue); margin-bottom: 0.9rem;
}
.info-card h6 { font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.3rem; }
.info-card p,
.info-card a { font-size: 0.87rem; color: var(--gray); margin: 0; text-decoration: none; line-height: 1.65; }
.info-card a:hover { color: var(--blue); }

/* office card — light blue panel */
.office-card {
  background: linear-gradient(135deg, #ddeeff 0%, #e4ecff 100%);
  border: 1px solid rgba(33,118,255,0.15);
  border-radius: 14px; padding: 1.6rem; margin-bottom: 1rem;
  position: relative; overflow: hidden;
}
.office-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.office-card-content { position: relative; z-index: 1; }
.office-card h6 { color: var(--navy); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
.office-card p  { color: var(--gray); font-size: 0.85rem; margin: 0; line-height: 1.65; }

/* ============================================================
   CONTACT PAGE — Response option cards
   ============================================================ */
.response-options { background: #fff; padding: 70px 0; border-top: 1px solid var(--light-gray); }
.resp-card {
  border: 1px solid var(--light-gray); border-radius: 14px;
  padding: 1.8rem; height: 100%; text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.resp-card:hover {
  box-shadow: 0 15px 50px rgba(33,118,255,0.09);
  border-color: rgba(33,118,255,0.3);
  transform: translateY(-3px);
}
.resp-card-icon {
  width: 56px; height: 56px;
  background: rgba(33,118,255,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue); margin: 0 auto 1.2rem;
}
.resp-card h5 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.resp-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.2rem; }
.resp-time {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(0,168,181,0.08); border: 1px solid rgba(0,168,181,0.2);
  color: #007a82; font-size: 0.78rem; font-weight: 600;
  padding: 0.25rem 0.7rem; border-radius: 50px; margin-bottom: 1rem;
}
.btn-resp {
  display: inline-block; background: var(--navy); color: #fff; border: none;
  padding: 0.6rem 1.3rem; border-radius: 7px;
  font-size: 0.87rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.btn-resp:hover { background: var(--blue); color: #fff; }

/* ============================================================
   CONTACT PAGE — Form success state
   ============================================================ */
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success .success-icon { font-size: 3.5rem; color: #22c55e; margin-bottom: 1rem; }
.form-success h4 { font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p  { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   FOOTER — light
   ============================================================ */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  padding: 60px 0 30px;
}
.footer-brand { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.footer-brand span { color: var(--blue); }
footer h6 {
  color: var(--navy); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a {
  color: var(--gray); font-size: 0.87rem;
  text-decoration: none; transition: color 0.2s;
}
footer ul li a:hover { color: var(--blue); }
footer p.footer-desc { color: var(--gray); font-size: 0.87rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-divider {
  border-top: 1px solid var(--light-gray);
  margin: 2rem 0 1.5rem;
}
.footer-bottom p { color: var(--gray); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--gray); text-decoration: none; }
.footer-bottom a:hover { color: var(--blue); }

.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--light-gray);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(33,118,255,0.1); color: var(--blue); }

/* ============================================================
   ABOUT PAGE — Story section
   ============================================================ */
.story-section { background: #fff; }
.story-lead {
  font-size: 1.12rem; color: #334; line-height: 1.9;
  margin-bottom: 1.5rem;
}
.story-lead strong { color: var(--navy); font-weight: 700; }
.story-lead em { color: var(--blue); font-style: normal; font-weight: 600; }

.story-quote {
  border-left: 3px solid var(--blue);
  padding: 1rem 1.4rem;
  background: rgba(33,118,255,0.04);
  border-radius: 0 10px 10px 0;
  margin: 1.8rem 0;
}
.story-quote p {
  font-size: 1rem; color: var(--navy);
  font-style: italic; font-weight: 500;
  margin: 0; line-height: 1.75;
}

.story-visual {
  background: linear-gradient(135deg, #ddeeff 0%, #e4ecff 100%);
  border: 1px solid rgba(33,118,255,0.15);
  border-radius: 20px; padding: 2.5rem;
  height: 100%; min-height: 400px;
  position: relative; overflow: hidden;
}
.story-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.story-content,
.story-visual-content { position: relative; z-index: 1; }

.story-milestone {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.2rem; position: relative;
}
.story-milestone:last-child { margin-bottom: 0; }
.milestone-year {
  flex-shrink: 0; min-width: 52px;
  font-size: 0.75rem; font-weight: 800;
  color: var(--blue); letter-spacing: 0.05em;
  padding-top: 0.1rem;
}
.milestone-dot {
  flex-shrink: 0; width: 10px; height: 10px;
  background: var(--blue); border-radius: 50%;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 3px rgba(33,118,255,0.15);
}
.milestone-text h6 {
  color: var(--navy); font-size: 0.88rem; font-weight: 700;
  margin-bottom: 0.15rem;
}
.milestone-text p {
  color: var(--gray); font-size: 0.81rem;
  margin: 0; line-height: 1.55;
}
.milestone-line {
  width: 1px; background: rgba(33,118,255,0.2);
  margin: 0 4.5px; flex-shrink: 0;
  min-height: 18px;
}

/* ============================================================
   ABOUT PAGE — Mission & Vision
   ============================================================ */
.mv-section { background: var(--off-white); }
.mv-card {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 16px; padding: 2.2rem; height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.mv-card:hover {
  box-shadow: 0 16px 50px rgba(33,118,255,0.09);
  border-color: rgba(33,118,255,0.25);
  transform: translateY(-3px);
}
/* dark variant becomes blue accent */
.mv-card.dark {
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fd4 100%);
  border-color: rgba(33,118,255,0.3);
}
.mv-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.3rem;
}
.mv-icon.blue-icon  { background: rgba(33,118,255,0.1);  color: var(--blue); }
.mv-icon.cyan-icon  { background: rgba(0,168,181,0.1);   color: var(--cyan); }
.mv-icon.white-icon { background: rgba(255,255,255,0.2); color: #fff; }
.mv-card h4 {
  font-size: 1.15rem; font-weight: 800; margin-bottom: 0.7rem;
  color: var(--navy);
}
.mv-card.dark h4 { color: #fff; }
.mv-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin: 0; }
.mv-card.dark p { color: rgba(255,255,255,0.75); }

/* ============================================================
   ABOUT PAGE — Core Values
   ============================================================ */
.values-section { background: #fff; }
.value-card {
  border: 1px solid var(--light-gray); border-radius: 14px;
  padding: 1.8rem; height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  background: #fff;
}
.value-card:hover {
  box-shadow: 0 14px 45px rgba(33,118,255,0.08);
  border-color: rgba(33,118,255,0.25);
  transform: translateY(-3px);
}
.value-number {
  font-size: 2.2rem; font-weight: 800;
  color: rgba(33,118,255,0.1); font-family: var(--font-head);
  line-height: 1; margin-bottom: 0.6rem;
  letter-spacing: -0.04em;
}
.value-card h5 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin: 0; }
.value-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(33,118,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem; margin-bottom: 1rem;
}

/* ============================================================
   ABOUT PAGE — Team / Why us strip — light blue
   ============================================================ */
.team-strip {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
  border-top: 1px solid rgba(33,118,255,0.12);
  border-bottom: 1px solid rgba(33,118,255,0.12);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.team-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,118,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,118,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.team-stat-item { text-align: center; position: relative; z-index: 1; }
.team-stat-item h3 {
  font-size: 2.4rem; font-weight: 800; color: var(--blue);
  margin-bottom: 0.2rem; letter-spacing: -0.03em;
}
.team-stat-item p { color: var(--gray); font-size: 0.87rem; margin: 0; }
.team-divider { border-left: 1px solid rgba(33,118,255,0.15); }

/* ============================================================
   FAQ PAGE — Categories & Accordion
   ============================================================ */
.faq-section { background: var(--off-white); padding: 80px 0 100px; }

.faq-category-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.faq-cat-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #fff; border: 1.5px solid var(--light-gray);
  color: var(--navy); font-size: 0.85rem; font-weight: 600;
  padding: 0.55rem 1.1rem; border-radius: 50px;
  cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: rgba(33,118,255,0.08);
  border-color: var(--blue); color: var(--blue);
}
.faq-cat-btn i { font-size: 0.9rem; }

.faq-group { margin-bottom: 3rem; }
.faq-group-label {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.faq-group-label-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(33,118,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.95rem; flex-shrink: 0;
}
.faq-group-label h5 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin: 0;
}

.faq-accordion { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: rgba(33,118,255,0.3);
  box-shadow: 0 6px 25px rgba(33,118,255,0.07);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.2rem 1.4rem;
  cursor: pointer; user-select: none;
}
.faq-question h6 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin: 0; line-height: 1.5;
}
.faq-item.open .faq-question h6 { color: var(--blue); }
.faq-chevron {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--off-white); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.8rem;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(33,118,255,0.1); color: var(--blue);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.4rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.4rem 1.3rem;
}
.faq-answer p {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.8; margin: 0;
}
.faq-answer a { color: var(--blue); text-decoration: none; font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ============================================================
   FAQ PAGE — Still have questions CTA — light blue
   ============================================================ */
.faq-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fd4 100%);
  border-radius: 20px; padding: 3rem;
  position: relative; overflow: hidden; text-align: center;
}
.faq-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.faq-cta-content { position: relative; z-index: 1; }
.faq-cta h3 {
  color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.02em;
}
.faq-cta p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }

/* ============================================================
   AI SOLUTIONS PAGE — Stats bar
   ============================================================ */
.ai-stats-bar {
  background: #fff;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 2rem 0;
}
.ai-stat-item { text-align: center; }
.ai-stat-item h3 {
  font-size: 2rem; font-weight: 800; color: var(--blue);
  margin-bottom: 0.15rem; letter-spacing: -0.03em;
}
.ai-stat-item p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ============================================================
   AI SOLUTIONS PAGE — Tab switcher
   ============================================================ */
.ai-tab-section { background: #fff; padding: 80px 0 100px; }

.ai-view-toggle {
  display: inline-flex;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 5px;
  gap: 4px; margin-bottom: 3rem;
}
.ai-toggle-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem; border-radius: 9px;
  font-size: 0.9rem; font-weight: 600; color: var(--gray);
  background: transparent; border: none;
  cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.ai-toggle-btn.active {
  background: #fff; color: var(--navy);
  box-shadow: 0 2px 10px rgba(13,27,54,0.08);
}
.ai-toggle-btn i { font-size: 1rem; }

/* ============================================================
   AI SOLUTIONS PAGE — Function cards
   ============================================================ */
.ai-function-grid { display: none; }
.ai-function-grid.active { display: block; }

.ai-fn-card {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 16px; overflow: hidden; height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.ai-fn-card:hover {
  box-shadow: 0 18px 55px rgba(33,118,255,0.1);
  border-color: rgba(33,118,255,0.3);
  transform: translateY(-4px);
}
.ai-fn-card-header {
  padding: 1.6rem 1.6rem 1.2rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: flex-start; gap: 1rem;
}
.ai-fn-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.ai-fn-card h5 {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  margin-bottom: 0.25rem;
}
.ai-fn-card .fn-desc {
  font-size: 0.83rem; color: var(--gray); margin: 0; line-height: 1.55;
}
.ai-fn-body { padding: 1.2rem 1.6rem 1.6rem; }
.ai-use-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem; color: #445;
}
.ai-use-item:last-child { border-bottom: none; }
.ai-use-item i { color: var(--blue); font-size: 0.75rem; margin-top: 0.25rem; flex-shrink: 0; }

/* colour variants for function icons */
.fn-blue   { background: rgba(33,118,255,0.1);  color: var(--blue); }
.fn-cyan   { background: rgba(0,168,181,0.1);   color: var(--cyan); }
.fn-green  { background: rgba(34,197,94,0.1);   color: #16a34a; }
.fn-orange { background: rgba(249,115,22,0.1);  color: #ea6600; }
.fn-violet { background: rgba(124,58,237,0.1);  color: #7c3aed; }
.fn-rose   { background: rgba(244,63,94,0.1);   color: #e11d48; }
.fn-amber  { background: rgba(245,158,11,0.1);  color: #d97706; }
.fn-teal   { background: rgba(20,184,166,0.1);  color: #0d9488; }

/* ============================================================
   AI SOLUTIONS PAGE — Industry cards
   ============================================================ */
.ai-industry-grid { display: none; }
.ai-industry-grid.active { display: block; }

.ai-ind-card {
  border-radius: 18px; overflow: hidden; height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid var(--light-gray);
}
.ai-ind-card:hover {
  box-shadow: 0 20px 60px rgba(13,27,54,0.1);
  transform: translateY(-4px);
}
.ai-ind-header {
  padding: 2rem 2rem 1.4rem;
  position: relative; overflow: hidden;
  min-height: 120px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ai-ind-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ai-ind-header-content { position: relative; z-index: 1; }
.ai-ind-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; margin-bottom: 0.8rem;
}
.ai-ind-header h4 { color: #fff; font-size: 1.15rem; font-weight: 800; margin-bottom: 0.2rem; }
.ai-ind-header p { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin: 0; }

/* header background colours per industry — unchanged, these are vibrant panels */
.ind-healthcare    { background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%); }
.ind-finance       { background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%); }
.ind-legal         { background: linear-gradient(135deg, #374151 0%, #4b5563 100%); }
.ind-hr            { background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); }
.ind-manufacturing { background: linear-gradient(135deg, #b45309 0%, #d97706 100%); }
.ind-education     { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
.ind-retail        { background: linear-gradient(135deg, #be185d 0%, #ec4899 100%); }
.ind-realestate    { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%); }

.ai-ind-body { background: #fff; padding: 1.4rem 1.8rem 1.8rem; }
.ai-ind-use-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem; color: #445;
  line-height: 1.5;
}
.ai-ind-use-item:last-child { border-bottom: none; }
.ai-ind-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 0.45rem;
}

/* ============================================================
   AI SOLUTIONS PAGE — How we deliver
   ============================================================ */
.ai-delivery-section { background: var(--off-white); padding: 90px 0; }
.ai-delivery-card {
  background: #fff; border: 1px solid var(--light-gray);
  border-radius: 14px; padding: 2rem; height: 100%;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.ai-delivery-card:hover {
  box-shadow: 0 14px 45px rgba(33,118,255,0.08);
  border-color: rgba(33,118,255,0.25);
}
.ai-delivery-num {
  font-size: 3.5rem; font-weight: 800; color: rgba(33,118,255,0.07);
  position: absolute; top: 0.8rem; right: 1.2rem;
  line-height: 1; font-family: var(--font-head);
  letter-spacing: -0.04em;
}
.ai-delivery-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(33,118,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue); margin-bottom: 1.1rem;
}
.ai-delivery-card h5 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.ai-delivery-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin: 0; }

/* ============================================================
   AI SOLUTIONS PAGE — Inline FAQ
   ============================================================ */
.ai-faq-section { background: #fff; padding: 90px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

   .dropdown-menu {
  border-radius: 0 !important;
}


@media (max-width: 768px) {
  .hero       { padding: 110px 0 70px; }
  .page-hero  { padding: 110px 0 60px; }
  section     { padding: 60px 0; }
  .service-area { padding: 60px 0; }
  .product-row  { padding: 40px 0; }
  .stat-divider { border-left: none; border-top: 1px solid var(--light-gray); }
  .contact-info-panel { padding-left: 0; margin-top: 2rem; }
  .contact-form-wrap  { padding: 1.8rem; }
  .team-divider { border-left: none; border-top: 1px solid rgba(33,118,255,0.12); }
  .faq-cta { padding: 2rem 1.5rem; }
  .story-visual { min-height: 340px; }
}