/* ==========================================================================
   Codeslure Digital Solutions
   Shared stylesheet matched directly from logo pixel color data
   ========================================================================== */

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

:root {
  --primary: #0369FF;
  --primary-light: #58A3FF;
  --secondary: #0B1B32;
  --secondary-light: #142B4D;

  --sun: var(--primary);               /* #0369FF */
  --sun-deep: #0253CC;                 /* Deeper Primary Blue */
  --ink: var(--secondary);             /* #0B1B32 */
  --ink-soft: var(--secondary-light);  /* #142B4D */
  --leaf: var(--primary-light);        /* #58A3FF */
  --white: #FFFFFF;
  --off: #F8FAFC;
  --line: #E2E8F0;
  --body-text: #0B1B32;
  --muted: #64748B;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 18px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); }
section[id] { scroll-margin-top: 24px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

/* Line Clamp Utilities */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------- Top bar */
.topbar { background: var(--ink); color: rgba(255,255,255,0.85); font-size: 0.8rem; padding: 8px 0; }
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--leaf); }
.topbar-sep { color: rgba(255,255,255,0.25); }

/* ------------------------------------------------------------ Navigation */
.site-nav { background: var(--white); border-bottom: 1px solid var(--line); padding: 10px 0; }
.navbar-brand { padding: 0; }
.navbar-brand img { height: 70px; width: auto; }
.navbar-nav .nav-link { color: rgba(17,24,39,0.85); font-size: 0.9rem; font-weight: 600; padding: 0.45rem 0.85rem; transition: color 0.2s; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--sun); }

/* Light Angle Chevron for Navbar Dropdowns */
.site-nav .dropdown-toggle::after {
  content: "\F282" !important;
  font-family: "bootstrap-icons" !important;
  border: none !important;
  font-size: 0.72rem !important;
  vertical-align: middle !important;
  margin-left: 0.35rem !important;
  color: currentColor;
  opacity: 0.65;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-nav .dropdown:hover > .dropdown-toggle::after,
.site-nav .dropdown.show > .dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 1;
}

.navbar-toggler { border: none; padding: 0; width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: linear-gradient(135deg, rgba(3,105,255,0.08), rgba(3,105,255,0.04)); border-radius: 10px; transition: background 0.25s; }
.navbar-toggler:hover { background: linear-gradient(135deg, rgba(3,105,255,0.15), rgba(3,105,255,0.08)); }
.navbar-toggler:focus { box-shadow: none; outline: none; }
.toggler-bar { display: block; width: 20px; height: 2.5px; background: var(--sun); border-radius: 3px; transition: all 0.3s ease; }
.toggler-bar:nth-child(2) { width: 15px; }
.navbar-toggler:hover .toggler-bar:nth-child(2) { width: 20px; }
.navbar-nav .nav-link.nav-cta { background: var(--sun); color: var(--white) !important; border-radius: var(--radius); font-weight: 700; padding: 0.65rem 1.75rem; }
.nav-cta:hover { background: var(--sun-deep); color: var(--white) !important; }
.offcanvas { width: min(320px, 85vw); }
.offcanvas-header { border-bottom: 1px solid var(--line); }
.offcanvas-body .nav-link { padding: 0.7rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
.offcanvas-body .nav-cta { text-align: center; margin-top: 1rem; border-bottom: none; }

/* Mobile dropdown inside offcanvas */
@media (max-width: 991.98px) {
  .offcanvas-body .dropdown-toggle::after {
    margin-left: auto;
    transition: transform 0.3s ease;
  }
  .offcanvas-body .dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .offcanvas-body .dropdown-menu {
    position: static !important;
    float: none;
    border: none;
    box-shadow: none;
    background: var(--off);
    border-radius: var(--radius);
    padding: 0.35rem 0;
    margin: 0.25rem 0 0.5rem;
    animation: slideDown 0.25s ease;
  }
  .offcanvas-body .dropdown-menu .dropdown-item {
    font-size: 0.9rem;
    padding: 0.55rem 1.15rem;
    color: var(--ink);
    border-radius: 6px;
    margin: 0 0.35rem;
    transition: background 0.2s;
  }
  .offcanvas-body .dropdown-menu .dropdown-item:hover,
  .offcanvas-body .dropdown-menu .dropdown-item:focus {
    background: rgba(3,105,255,0.08);
    color: var(--sun);
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (min-width: 992px) {
  .offcanvas-body .nav-link { border-bottom: none; }
  .offcanvas-body .nav-cta { margin-top: 0; }

  /* Desktop Dropdown Open on Hover */
  .site-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .site-nav .nav-item.dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease-in-out;
    margin-top: 0;
  }
}

/* -------------------------------------------------------- Section basics */
section { padding: 88px 0; }
.section-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun); margin-bottom: 0.65rem; }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -0.025em; color: var(--ink); line-height: 1.15; margin: 0; }
.section-sub { color: #475569; font-size: 1rem; line-height: 1.75; max-width: 560px; margin: 0; }
.on-dark .section-title { color: var(--white); }
.on-dark .section-sub { color: rgba(255,255,255,0.75); }

/* ----------------------------------------------------------- Buttons */
.btn-primary-sun { background: var(--sun); color: var(--white); border: none; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; padding: 0.78rem 2rem; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.btn-primary-sun:hover { background: var(--sun-deep); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(5,95,235,0.35); }
.btn-primary-sun:disabled, .btn-primary-sun[disabled] { background: var(--sun); color: var(--white); opacity: 0.85; transform: none; box-shadow: none; }
.btn-outline-sun { background: transparent; color: var(--ink); border: 1.5px solid rgba(15,30,55,0.25); border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; padding: 0.78rem 2rem; transition: border-color 0.2s, color 0.2s; }
.btn-outline-sun:hover { border-color: var(--sun); color: var(--sun); }
.btn-product { align-self: flex-start; margin-top: auto; background: var(--ink); color: var(--white); border: none; border-radius: var(--radius); font-size: 0.8rem; font-weight: 600; padding: 0.55rem 1.35rem; transition: background 0.2s; text-decoration: none; display: inline-block; }
.btn-product:hover { background: var(--sun); color: var(--white); }

/* -------------------------------------------------------------- Hero Redesigned */
.hero-redesigned {
  background: #0B1B32;
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero-redesigned .hero-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 85% 15%, rgba(3, 105, 255, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(88, 163, 255, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(11, 27, 50, 0.95) 0%, #0B1B32 100%);
  pointer-events: none;
}
/* Subtle dot grid overlay for depth */
.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(88, 163, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(88, 163, 255, 0.25);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseDotAnim 2s infinite;
}
@keyframes pulseDotAnim {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.hero-redesigned .hero-title {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero-redesigned .gradient-text {
  background: linear-gradient(135deg, #58A3FF 0%, #0369FF 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}
/* Typing cursor blink on gradient text */
.typing-highlight::after {
  content: '|';
  background: none;
  -webkit-text-fill-color: #58A3FF;
  font-weight: 300;
  animation: cursorBlink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-redesigned .hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  max-width: 560px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #0369FF 0%, #0252C7 100%);
  color: #FFFFFF !important;
  border: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(3, 105, 255, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-hero-primary:hover::before {
  left: 100%;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(3, 105, 255, 0.6);
  color: #FFFFFF !important;
}
.btn-hero-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* ---- Avatar Stack Social Proof ---- */
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid #0B1B32;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.avatar-circle:first-child { margin-left: 0; }
.avatar-circle:hover { transform: scale(1.1); z-index: 2; }
.avatar-more {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
}

/* ---- Hero Dashboard & Cards ---- */
.glass-dashboard {
  background: rgba(20, 43, 77, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(88, 163, 255, 0.2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}
.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.dash-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(88, 163, 255, 0.12);
  transition: all 0.3s ease;
}
.dash-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(88, 163, 255, 0.3);
  transform: translateX(4px);
}

/* Icon Boxes — Color Variants */
.icon-box {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-blue { background: rgba(3, 105, 255, 0.18); color: #58A3FF; }
.icon-box-green { background: rgba(34, 197, 94, 0.18); color: #4ade80; }
.icon-box-purple { background: rgba(168, 85, 247, 0.18); color: #c084fc; }
.icon-box-orange { background: rgba(251, 146, 60, 0.18); color: #fb923c; }

/* Dashboard Badges — Color Variants */
.dash-badge-blue { background: rgba(3, 105, 255, 0.18); color: #58A3FF; font-weight: 700; }
.dash-badge-green { background: rgba(34, 197, 94, 0.18); color: #4ade80; font-weight: 700; }
.dash-badge-purple { background: rgba(168, 85, 247, 0.18); color: #c084fc; font-weight: 700; }
.dash-badge-orange { background: rgba(251, 146, 60, 0.18); color: #fb923c; font-weight: 700; }

/* Floating Badges */
.hero-visual-card {
  margin-top: 50px;
  margin-bottom: 35px;
}
.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(11, 27, 50, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(88, 163, 255, 0.25);
  border-radius: 14px;
  padding: 12px 18px;
}
.badge-top-right {
  top: -50px;
  right: 10px;
}
.badge-bottom-left {
  bottom: -30px;
  left: -10px;
}
/* Dashboard Header Tags */
.dash-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.bg-warning-glow { background: rgba(255, 193, 7, 0.15); }
.bg-success-glow { background: rgba(34, 197, 94, 0.15); }
.extra-small {
  font-size: 0.72rem;
}
.animate-float {
  animation: floatAnim 4s ease-in-out infinite;
}
.animate-float-delay {
  animation: floatAnim 4s ease-in-out 2s infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}



/* -------------------------------------------- Page header (inner pages) */
.page-header { background: linear-gradient(150deg, #EEF2FF 0%, #F8FAFC 55%, #FFFFFF 100%); position: relative; overflow: hidden; padding: 60px 0; }
.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -6%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  background: radial-gradient(circle, rgba(88,122,255,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: -0.03em; color: var(--ink); line-height: 1.12; margin: 0 0 0.9rem; }
.page-header p { color: var(--body-text); font-size: 1.02rem; line-height: 1.7; max-width: 560px; margin: 0; }
.breadcrumb-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.1rem; }
.breadcrumb-bar a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--sun); }
.breadcrumb-bar span.sep { color: rgba(17,24,39,0.25); }
.breadcrumb-bar span.current { color: var(--sun); }

/* ---------------------------------------------------------- Trust Strip */
.trust-strip {
  background: linear-gradient(180deg, #0B1B32 0%, #0F2341 100%);
  border-top: 1px solid rgba(88, 163, 255, 0.1);
  border-bottom: 1px solid rgba(88, 163, 255, 0.1);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.trust-label {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-label i {
  font-size: 1.3rem;
  color: var(--primary);
}
.trust-label span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.trust-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
}
.trust-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(3, 105, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-stat-icon i {
  font-size: 1.1rem;
  color: var(--primary-light);
}
.trust-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #FFFFFF;
  line-height: 1.1;
}
.trust-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 991px) {
  .trust-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .trust-divider { display: none; }
  .trust-stats { justify-content: center; gap: 20px; }
}
@media (max-width: 575px) {
  .trust-stats { gap: 16px; }
  .trust-stat-item { gap: 8px; }
  .trust-stat-icon { width: 34px; height: 34px; }
  .trust-stat-number { font-size: 1.1rem; }
}

/* ------------------------------------------------------------- About Redesigned */
.about-home {
  background: var(--white);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(3, 105, 255, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: #4B5563;
  line-height: 1.7;
}

/* About Features List */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(3, 105, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon i {
  font-size: 1.3rem;
  color: var(--primary);
}
.about-feature-icon.icon-green {
  background: rgba(34, 197, 94, 0.12);
}
.about-feature-icon.icon-green i {
  color: #22c55e;
}
.about-feature-icon.icon-orange {
  background: rgba(249, 115, 22, 0.12);
}
.about-feature-icon.icon-orange i {
  color: #f97316;
}

.btn-primary-sun {
  background: linear-gradient(135deg, var(--primary) 0%, var(--sun-deep) 100%);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(3, 105, 255, 0.3);
}
.btn-primary-sun:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 105, 255, 0.4);
  color: var(--white);
}

/* About Visual - Stacked Cards */
.about-visual {
  padding-left: 20px;
}
.about-main-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(11, 27, 50, 0.08);
  overflow: hidden;
}
.about-card-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #F9FAFB;
}
.about-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
}
.about-card-body {
  padding: 0 24px;
}
.about-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about-card-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.about-card-value {
  font-size: 0.85rem;
  color: #6B7280;
  font-weight: 500;
}

/* Floating Mini Cards */
.about-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(11, 27, 50, 0.1);
  z-index: 2;
}
.about-float-top {
  top: -24px;
  right: -20px;
  animation: floatAnim 4s ease-in-out infinite;
}
.about-float-bottom {
  bottom: 15px;
  left: -15px;
  animation: floatAnim 4s ease-in-out 2s infinite;
}
.about-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.bg-primary-glow { background: rgba(3, 105, 255, 0.12); }
.bg-success-glow2 { background: rgba(34, 197, 94, 0.12); }

@media (max-width: 991px) {
  .about-visual { margin-top: 40px; padding-left: 0; padding: 0 20px; }
  .about-float-top { right: -10px; }
  .about-float-bottom { left: -10px; }
}

/* ------------------------------------------------------------- Audit Section */
.audit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ------------------------------------------------------------- Services */
.services { background: var(--white); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(17,24,39,0.12);
  border-color: rgba(3, 105, 255, 0.4);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(3, 105, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}
.service-icon i { font-size: 1.5rem; color: var(--primary); }
.service-card h5 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--secondary); margin-bottom: 0.55rem; }
.service-card p { font-size: 0.88rem; color: #475569; line-height: 1.65; margin: 0 0 1.1rem; }
@media (max-width: 575.98px) {
  .service-card { padding: 1rem 0.85rem; }
  .service-card h5 { font-size: 0.95rem; line-height: 1.35; margin-bottom: 0.4rem; }
  .service-card p { font-size: 0.8rem; line-height: 1.45; margin-bottom: 0.75rem; }
  .service-icon { width: 42px; height: 42px; margin-bottom: 0.75rem; border-radius: 10px; }
  .service-icon i { font-size: 1.25rem; }
}

/* ------------------------------------------------------------- Products */
.products { background: var(--off); }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); transition: transform 0.25s, box-shadow 0.25s; height: 100%; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(17,24,39,0.12); }
.product-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.product-body { padding: 1.3rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.product-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sun); margin-bottom: 0.45rem; }
.product-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 0.45rem; }
.product-body p { font-size: 0.85rem; color: #475569; line-height: 1.65; margin-bottom: 1.1rem; }

/* --------------------------------------------------------------- About */
.about { background: var(--white); }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 26px 62px rgba(17,24,39,0.14); }
.about-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-check { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 0.95rem; }
.about-check i { color: var(--sun); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }
.about-check p { font-size: 0.93rem; color: #334155; line-height: 1.55; margin: 0; }

/* ------------------------------------------------------- Value/stat band */
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; height: 100%; }
.value-card .value-icon { width: 46px; height: 46px; background: rgba(88,122,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-card .value-icon i { font-size: 1.35rem; color: var(--sun); }
.value-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: #475569; line-height: 1.65; margin: 0; }

.statband { background: var(--ink); }
.statband .stat-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.75rem); color: var(--leaf); line-height: 1; }
.statband .stat-cap { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-top: 8px; }

/* -------------------------------------------------------------- Process */
.process { background: var(--ink); }
.process-step { position: relative; text-align: center; padding: 0 0.5rem; }
.step-num {
  width: 56px;
  height: 56px;
  background: rgba(58,182,254,0.16);
  border: 2px solid var(--leaf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--leaf);
  margin: 0 auto 1.1rem;
  position: relative;
  z-index: 1;
}
.process-step h3 { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 0.45rem; }
.process-step p { font-size: 0.84rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0; }
.process-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 0;
  border-top: 2px dashed rgba(58,182,254,0.35);
}

/* --------------------------------------------------------- Testimonials */
.testimonials { background: var(--off); }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.85rem; border: 1px solid var(--line); height: 100%; }
.testi-stars { color: var(--sun); font-size: 0.85rem; margin-bottom: 0.85rem; }
.testi-card blockquote { font-size: 0.92rem; color: #2B2A29; line-height: 1.75; margin-bottom: 1.35rem; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 0.86rem; color: var(--ink); margin: 0; }
.testi-loc { font-size: 0.75rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------- CTA */
.cta-section { background: linear-gradient(135deg, #EEF2FF 0%, #F8FAFC 100%); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(88,122,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.8vw, 2.6rem); color: var(--ink); letter-spacing: -0.025em; }
.cta-section p.cta-lead { color: var(--body-text); font-size: 1rem; line-height: 1.75; max-width: 520px; }
.cta-card { background: var(--white); border-radius: var(--radius-xl); padding: 1.85rem; box-shadow: 0 24px 56px rgba(17,24,39,0.14); border: 1px solid var(--line); }
.cta-card-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem 2.75rem; box-shadow: 0 24px 56px rgba(17,24,39,0.12); border: 1px solid var(--line); }
.cta-card-wrap h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink); letter-spacing: -0.025em; margin: 0; }
.cta-card-wrap p.cta-lead { color: var(--body-text); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.cta-card-wrap p.cta-lead strong { color: var(--sun-deep); }
@media (max-width: 991px) { .cta-card-wrap { padding: 1.75rem; } }
.cta-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.1rem; margin-bottom: 1.25rem; }
.cta-card .form-control, .cta-card .form-select { font-size: 0.9rem; padding: 0.7rem 0.9rem; border-color: var(--line); border-radius: var(--radius); }
.cta-card .form-control:focus, .cta-card .form-select:focus { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(88,122,255,0.16); }
.cta-note { font-size: 0.74rem; color: var(--muted); text-align: center; margin: 0.75rem 0 0; }

/* ------------------------------------------------------- Detail layouts */
.detail-gallery { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 26px 62px rgba(17,24,39,0.16); }
.detail-gallery img { width: 100%; height: 420px; object-fit: cover; display: block; }
.detail-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.detail-thumbs img { width: 100%; height: 84px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.detail-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sun); background: rgba(88,122,255,0.12); padding: 6px 13px; border-radius: 100px; margin-bottom: 1rem; }
.detail-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: -0.025em; color: var(--ink); line-height: 1.15; margin-bottom: 1rem; }
.detail-lead { color: var(--body-text); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.detail-price { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--sun); }
.detail-price small { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.spec-list { list-style: none; padding: 0; margin: 1.5rem 0; border-top: 1px solid var(--line); }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.spec-list li span.k { color: var(--muted); font-weight: 600; }
.spec-list li span.v { color: var(--ink); font-weight: 700; text-align: right; }
.feature-row { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 0.85rem; }
.feature-row i { color: var(--sun); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }
.feature-row p { font-size: 0.92rem; color: #475569; line-height: 1.6; margin: 0; }
.detail-block h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.8vw, 1.9rem); letter-spacing: -0.02em; color: var(--ink); margin-bottom: 1rem; }
.detail-block p { color: var(--body-text); font-size: 0.96rem; line-height: 1.8; }

/* -------------------------------------------------------- Contact page */
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; height: 100%; }
.contact-card .contact-icon { width: 46px; height: 46px; background: rgba(88,122,255,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-card .contact-icon i { font-size: 1.3rem; color: var(--sun); }
.contact-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 0.4rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: #475569; line-height: 1.6; margin: 0; text-decoration: none; }
.contact-card a:hover { color: var(--sun); }
.contact-form .form-label { font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.contact-form .form-control, .contact-form .form-select { font-size: 0.92rem; padding: 0.72rem 0.95rem; border-color: var(--line); border-radius: var(--radius); }
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(88,122,255,0.16); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* --------------------------------------------------------- Gallery page */
.gallery-section { background: var(--off); }
.gallery-grid { align-items: stretch; }
.gallery-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(17,24,39,0.1);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,0) 28%, rgba(17,24,39,0.85) 100%);
  z-index: 1;
}
.gallery-card::after {
  content: '\F52A';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--sun);
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  z-index: 2;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.gallery-card:hover img,
.gallery-card:focus-visible img { transform: scale(1.06); opacity: 0.9; }
.gallery-card:hover::after,
.gallery-card:focus-visible::after { transform: translateY(0); opacity: 1; }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  z-index: 2;
}
.gallery-caption .gallery-tag {
  display: inline-block;
  color: var(--leaf);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.gallery-caption h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}
.gallery-feature { min-height: 360px; }
.glightbox-clean .gslide-description { background: var(--white); }
.glightbox-clean .gslide-title { color: var(--ink); font-family: var(--font-display); font-weight: 800; }
.glightbox-clean .gslide-desc { color: var(--body-text); font-family: var(--font-body); }

/* ---------------------------------------------------------- Legal pages */
.legal-content { max-width: 780px; }
.legal-content .legal-updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 2.5rem; }
.legal-content h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.015em; color: var(--ink); margin: 2.5rem 0 1rem; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--body-text); font-size: 0.96rem; line-height: 1.8; margin-bottom: 1.1rem; }
.legal-content ul { color: var(--body-text); font-size: 0.96rem; line-height: 1.8; padding-left: 1.2rem; margin-bottom: 1.1rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--sun); font-weight: 600; text-decoration: none; }
.legal-content a:hover { color: var(--sun-deep); text-decoration: underline; }

/* -------------------------------------------------------------- Footer */
footer { background: var(--ink); padding: 68px 0 26px; }
.footer-brand img { height: 74px; width: auto; }
.footer-desc { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-social { display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}
.footer-social a i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
}
.footer-social a:hover {
    transform: translateY(-4px) scale(1.08);
    color: #ffffff;
}
.footer-social a.social-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}
.footer-social a.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.45);
}
.footer-social a.social-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}
.footer-social a.social-youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.45);
}
.footer-social a.social-linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.45);
}
.footer-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.15rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,0.75); font-size: 0.875rem; text-decoration: none; line-height: 1.55; transition: color 0.2s; }
.footer-links a:hover { color: var(--leaf); }
.footer-links i { color: var(--leaf); font-size: 0.9rem; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem 1.5rem; }
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 0.78rem; margin: 0; }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { color: rgba(255,255,255,0.55); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-legal span { color: rgba(255,255,255,0.55); font-size: 0.78rem; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--leaf); }
.footer-legal .footer-legal-sep { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* ------------------------------------------------------- Floating FABs */
.floating-btns { position: fixed; bottom: 24px; right: 18px; display: flex; flex-direction: column; gap: 18px; z-index: 999; }
.fab { width: 50px; height: 50px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; text-decoration: none; box-shadow: 0 6px 20px rgba(17,24,39,0.3); transition: transform 0.2s; }
.fab:hover { transform: scale(1.08); }
@keyframes whatsappPulseBlink {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8), 0 0 12px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), 0 0 28px rgba(37, 211, 102, 0.85);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0 12px rgba(37, 211, 102, 0.5);
  }
}

.fab-whatsapp {
  background: #25D366 !important;
  color: #FFFFFF !important;
  animation: whatsappPulseBlink 3.2s infinite ease-in-out !important;
}
.fab-call { background: var(--primary); color: var(--white); box-shadow: 0 6px 20px rgba(3, 105, 255, 0.4); }

/* -------------------------------------------------------------- FAQS */
.faq-list { max-width: 760px; margin: 0 auto 2rem; }
.faq-item { border: 1.5px solid var(--line); border-radius: var(--radius-lg); margin-bottom: .65rem; background: var(--white); overflow: hidden; transition: box-shadow .2s; }
.faq-item:has(.faq-open) { border-color: rgba(88,122,255,0.5); box-shadow: 0 6px 24px rgba(88,122,255,0.1); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; transition: background .18s; }
.faq-btn:hover { background: var(--off); }
.faq-q-text { font-family: var(--font-display); font-weight: 700; font-size: .97rem; color: #000000; line-height: 1.5; }
.faq-open .faq-q-text { color: #000000; }
.faq-chevron { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(88,122,255,.12); display: flex; align-items: center; justify-content: center; color: var(--sun); font-size: .9rem; transition: transform .3s, background .2s; }
.faq-open .faq-chevron { transform: rotate(180deg); background: var(--sun); color: var(--white); }
.faq-open { border-bottom: 1px solid var(--line); }
.faq-body-inner { padding: 1.05rem 1.5rem 1.4rem; color: var(--body-text); font-size: .93rem; line-height: 1.78; }
.faq-body-inner p { margin-bottom: .5rem; }
.faq-body-inner p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .faq-btn { padding: .9rem 1.1rem; }
  .faq-body-inner { padding: .9rem 1.1rem 1.1rem; }
}

/* ----------------------------------------------------------- Career */
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(17,24,39,0.1); border-color: rgba(88,122,255,0.45); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.6rem; }
.job-card-header h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: 0; line-height: 1.3; }
.job-type-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.badge-ft { background: rgba(88,122,255,0.14); color: var(--sun-deep); }
.badge-pt { background: rgba(58,182,254,0.14); color: #0284C7; }
.badge-in { background: rgba(155,89,182,0.12); color: #7D3C98; }
.badge-ct { background: rgba(243,156,18,0.15); color: #B7950B; }
.job-card-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 0.7rem; }
.job-card-meta span { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.job-card-meta i { font-size: 0.85rem; color: var(--sun); }
.job-card-body p { font-size: 0.87rem; color: #475569; line-height: 1.65; margin: 0; }
.job-card-footer { margin-top: auto; padding-top: 1rem; }
.job-card-footer .apply-btn { font-size: 0.82rem; padding: 0.5rem 1.25rem; }

.form-wrap-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: 0 24px 56px rgba(17,24,39,0.1); }
.form-wrap-card .form-label { font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.form-wrap-card .form-control,
.form-wrap-card .form-select { font-size: 0.92rem; padding: 0.75rem 1rem; border-color: var(--line); border-radius: var(--radius); }
.form-wrap-card .form-control:focus,
.form-wrap-card .form-select:focus { border-color: var(--sun); box-shadow: 0 0 0 3px rgba(88,122,255,0.15); }
.form-wrap-card .input-group-text { font-family: var(--font-display); background: var(--off); border-color: var(--line); color: var(--ink); padding: 0.75rem 1rem; }
.file-input-wrap { position: relative; }
.file-input-wrap input[type="file"] { padding-right: 2.5rem; }
.file-input-wrap i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 1.2rem; pointer-events: none; }
.step-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(17,24,39,0.12);
  border-color: rgba(3, 105, 255, 0.4) !important;
}
.step-badge {
  width: 52px;
  height: 52px;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
@media (max-width: 575.98px) {
  .step-card { padding: 1.25rem 1rem !important; }
  .step-badge { width: 44px; height: 44px; font-size: 1rem; }
}

/* --------------------------------------------------------- Responsive */
@media (max-width: 991px) {
  .hero-img-wrap img { height: 380px; }
  .about-img img { height: 380px; }
  .detail-gallery img { height: 340px; }
  .gallery-feature { min-height: 300px; }
  .process-step { margin-bottom: 2rem; }
  .floating-badge { display: none; }
  .hero-redesigned { padding: 70px 0 80px; }
  .hero-grid-overlay { background-size: 24px 24px; }
}

@media (max-width: 767px) {
  section { padding: 60px 0; }
  .hero { padding: 48px 0 60px; }
  .hero-redesigned { padding: 56px 0 60px; }
  .page-header { padding: 44px 0; }
  .hero-img-wrap { margin-top: 2.25rem; }
  .hero-img-wrap img { height: 260px; }
  .about-img img { height: 300px; }
  .detail-gallery img { height: 260px; }
  .gallery-card,
  .gallery-card img,
  .gallery-feature { min-height: 240px; }
  .hero-stats { gap: 1.5rem; margin-top: 2rem; }
  .stat-val { font-size: 1.4rem; }
  .fab { width: 46px; height: 46px; font-size: 1.25rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-btns { flex-wrap: nowrap; gap: 0.6rem !important; }
  .hero-btns .btn { flex: 1 1 0; padding: 0.6rem 0.5rem; font-size: 0.82rem; text-align: center; white-space: nowrap; }
  .avatar-circle { width: 30px; height: 30px; font-size: 0.6rem; }
  .dash-card h6 { font-size: 0.82rem; }
  .dash-card small { font-size: 0.7rem; }
  .dash-card .badge { font-size: 0.65rem; padding: 4px 10px !important; }
  .typing-highlight::after { display: none; }
  .hero-grid-overlay { display: none; }
}

@media (max-width: 380px) {
  .hero-btns .btn { font-size: 0.72rem; padding: 0.55rem 0.35rem; }
}

/* --------------------------------------------------- Advantage Section */
.advantage-section {
  background: #0B1B32;
}
.advantage-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(3, 105, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(88, 163, 255, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.advantage-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(88, 163, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 163, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.advantage-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #58A3FF;
  background: rgba(3, 105, 255, 0.10);
  border: 1px solid rgba(88, 163, 255, 0.20);
  padding: 7px 20px;
  border-radius: 100px;
}
.advantage-eyebrow i { font-size: 0.85rem; }
.advantage-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.advantage-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 540px;
}

/* Card Styles */
.advantage-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(88, 163, 255, 0.10);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.advantage-card-accent {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.advantage-card:hover .advantage-card-accent {
  height: 6px;
}
.advantage-card-body {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.advantage-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.advantage-card:hover .advantage-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.advantage-step {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}
.advantage-card:hover .advantage-step {
  color: rgba(255, 255, 255, 0.30);
}
.advantage-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.advantage-card-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 0;
  flex: 1;
}
.advantage-divider {
  width: 32px;
  height: 2px;
  background: rgba(88, 163, 255, 0.20);
  border-radius: 2px;
  margin: 1rem 0 0.85rem;
  transition: width 0.4s ease, background 0.4s ease;
}
.advantage-card:hover .advantage-divider {
  width: 48px;
  background: rgba(88, 163, 255, 0.45);
}
.advantage-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.advantage-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFFFFF;
  line-height: 1;
}
.advantage-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}
.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88, 163, 255, 0.30);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

/* Bottom Badge */
.advantage-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(88, 163, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.advantage-bottom-badge i {
  color: #22C55E;
  font-size: 1rem;
}
.advantage-bottom-badge strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Custom 5-column grid for xl screens */
@media (min-width: 1200px) {
  .col-xl-2p4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 1199.98px) {
  .advantage-card-body { padding: 1.5rem 1.25rem 1.25rem; }
  .advantage-step { top: 1.25rem; right: 1.25rem; }
}
@media (max-width: 767px) {
  .advantage-card-body { padding: 1.35rem 1.15rem 1.15rem; }
  .advantage-card-accent { height: 3px; }
  .advantage-bottom-badge { font-size: 0.78rem; padding: 10px 20px; }
}

/* --------------------------------------------------- Process Redesign */
.process-bg-glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3,105,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.process-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--line) 20%, var(--line) 80%, transparent 95%);
  margin: 0 auto 2.5rem;
  max-width: 500px;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 12px rgba(11,27,50,0.03);
  overflow: hidden;
}
.process-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 12px rgba(11,27,50,0.03);
  overflow: hidden;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11,27,50,0.08);
  border-color: rgba(3,105,255,0.15);
}
.process-card-top {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 0;
}
.process-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #FFFFFF;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.process-card:hover .process-circle {
  transform: scale(1.12);
}
.process-card-body {
  padding: 1rem 1.25rem 0;
  text-align: center;
  flex: 1;
}
.process-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.25rem;
  transition: transform 0.35s ease;
}
.process-card:hover .process-icon {
  transform: scale(1.1);
}
.bg-primary-soft { background: rgba(3,105,255,0.08); }
.bg-purple-soft { background: rgba(124,58,237,0.08); }
.bg-warning-soft { background: rgba(245,158,11,0.08); }
.bg-success-soft { background: rgba(5,150,105,0.08); }
.bg-danger-soft { background: rgba(220,38,38,0.08); }
.process-card-foot {
  padding: 0.9rem 1.25rem 1.25rem;
  text-align: center;
}
.process-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(3,105,255,0.08);
  padding: 4px 14px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.process-card:hover .process-badge {
  background: var(--primary);
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .process-card-top { padding: 1.25rem 1rem 0; }
  .process-card-body { padding: 0.85rem 1rem 0; }
  .process-card-foot { padding: 0.75rem 1rem 1rem; }
}

/* --------------------------------------------------- Tools & Tech */
.tool-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 1.35rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px rgba(11,27,50,0.03);
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(11,27,50,0.08);
  border-color: rgba(3,105,255,0.12);
}
.tool-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tool-card:hover .tool-card-icon {
  transform: scale(1.12);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.tool-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.tool-card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.3);
}
@media (max-width: 575.98px) {
  .tool-card { padding: 1rem 0.75rem; }
  .tool-card-icon { width: 40px; height: 40px; font-size: 1.15rem; }
  .tool-card-title { font-size: 0.8rem; }
}

/* --------------------------------------------------- Stats Section */
.stats-section {
  background: #0B1B32;
}
.stats-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(88,163,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(168,85,247,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.75rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(8px);
}
.stat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--stat-color, #58A3FF) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--stat-color, #58A3FF);
  margin-bottom: 0.85rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stat-card:hover .stat-card-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px color-mix(in srgb, var(--stat-color, #58A3FF) 20%, transparent);
}
.stat-card-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.stat-card-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 575.98px) {
  .stat-card { padding: 1.25rem 0.75rem; }
  .stat-card-icon { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* --------------------------------------------------- FAQ Section */
.faq-section {
  background: #F8FAFC;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E9F0;
  border-radius: 14px;
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #D0D5DD;
}
.faq-item.faq-item-active {
  border-color: rgba(3,105,255,0.2);
  box-shadow: 0 4px 20px rgba(3,105,255,0.06);
}
.faq-header {
  margin-bottom: 0;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #1E293B;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: background 0.2s;
}
.faq-btn:hover {
  background: #FAFBFC;
}
.faq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(3,105,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369FF;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
  transition: all 0.3s ease;
}
.faq-item-active .faq-num {
  background: #0369FF;
  color: #FFFFFF;
}
.faq-q-text {
  flex: 1;
}
.faq-plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 0.75rem;
  transition: all 0.35s ease;
}
.faq-btn:not(.collapsed) .faq-plus {
  transform: rotate(45deg);
  background: rgba(3,105,255,0.1);
  color: #0369FF;
}
.faq-answer {
  padding: 0 1.35rem 1.15rem;
  color: #64748B;
  font-size: 0.92rem;
  line-height: 1.75;
}
.faq-answer p {
  margin-bottom: 0.5rem;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .faq-btn { padding: 0.95rem 1rem; font-size: 0.9rem; }
  .faq-answer { padding: 0 1rem 1rem; }
}

/* --------------------------------------------------- CTA Wrap */
.cta-wrap {
  background: #F8FAFC;
}
.cta-box {
  background: linear-gradient(135deg, #0B1B32, #1A3A5C);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 8px 32px rgba(11,27,50,0.12);
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}
.cta-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}
.cta-btn-solid {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  background: #0369FF;
  color: #FFFFFF;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn-solid:hover {
  background: #0055CC;
  transform: translateY(-2px);
  color: #FFFFFF;
}
.cta-btn-line {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn-line:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}
@media (max-width: 575.98px) {
  .cta-box { padding: 2.5rem 1.25rem; }
  .cta-btn-solid, .cta-btn-line { width: 100%; justify-content: center; }
}

/* --------------------------------------------------- Pricing Section */
.pricing-section {
  background: #0B1B32;
}
.pricing-section .section-title {
  color: #FFFFFF;
}
.pricing-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(88,163,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(168,85,247,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(8px);
  position: relative;
}
.pricing-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.pricing-featured {
  background: rgba(255,255,255,0.05);
  border-color: rgba(3,105,255,0.2);
  transform: scale(1.02);
}
.pricing-featured:hover {
  border-color: rgba(3,105,255,0.35);
  box-shadow: 0 16px 48px rgba(3,105,255,0.08);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0369FF;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--p-card-color, #58A3FF) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--p-card-color, #58A3FF);
  margin: 0 auto 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover .pricing-card-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px color-mix(in srgb, var(--p-card-color, #58A3FF) 15%, transparent);
}
.pricing-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}
.pricing-card-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li i {
  color: var(--p-card-color, #58A3FF);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 0.35s ease;
}
.pricing-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.pricing-btn-featured {
  background: #0369FF;
  border: none;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(3,105,255,0.25);
}
.pricing-btn-featured:hover {
  background: #0055CC;
  box-shadow: 0 8px 24px rgba(3,105,255,0.35);
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .pricing-featured { transform: none; }
}
@media (max-width: 575.98px) {
  .pricing-card { padding: 1.5rem 1.25rem; }
  .pricing-card-icon { width: 44px; height: 44px; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   Modern Pagination Component
   ========================================================================== */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0;
}
.pagination .page-item {
  margin: 0;
}
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background-color: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px !important;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.pagination .page-link:hover {
  color: var(--sun);
  background-color: rgba(3, 105, 255, 0.05);
  border-color: var(--sun);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 105, 255, 0.15);
}
.pagination .page-item.active .page-link {
  color: var(--white);
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  border-color: var(--sun);
  box-shadow: 0 4px 14px rgba(3, 105, 255, 0.35);
}
.pagination .page-item.disabled .page-link {
  color: var(--muted);
  background-color: var(--off);
  border-color: var(--line);
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ------------------------------------------ Audit Section – ASO Secondary */
.audit-icon-secondary {
  background: rgba(11, 27, 50, 0.10);
  color: var(--secondary);
}
.audit-badge-secondary {
  background: var(--secondary) !important;
  color: var(--white);
}
.btn-secondary-ink {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transition: all 0.3s ease;
}
.btn-secondary-ink:hover,
.btn-secondary-ink:focus {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 27, 50, 0.35);
}
.audit-check-secondary {
  color: var(--secondary);
}

/* ------------------------------------------ About Page Overrides */
.about-main-card {
  padding-bottom: 20px;
}
.about-float-bottom {
  bottom: -45px;
}

/* ------------------------------------------ Testimonials Section */
.testi-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}
.testi-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3,105,255,0.08) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(11,27,50,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(3,105,255,0.12);
}
.testi-card-featured {
  border-color: rgba(3,105,255,0.2);
  box-shadow: 0 8px 32px rgba(3,105,255,0.1);
}
@media (min-width: 768px) {
  .testi-card-featured {
    transform: translateY(-8px);
  }
  .testi-card-featured:hover {
    transform: translateY(-14px);
  }
}
.testi-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  color: rgba(3,105,255,0.08);
  line-height: 1;
  pointer-events: none;
}
.testi-stars {
  display: flex;
  gap: 3px;
}
.testi-stars i {
  font-size: 0.85rem;
  color: #D4D4D8;
  transition: color 0.2s;
}
.testi-stars i.active {
  color: #F59E0B;
}
.testi-content {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.testi-avatar-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(3,105,255,0.15);
  box-shadow: 0 2px 8px rgba(3,105,255,0.1);
  background: var(--off);
}
.testi-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.testi-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,105,255,0.08);
  color: var(--sun);
  font-size: 1.25rem;
}
.testi-author > div:last-child {
  min-width: 0;
  flex: 1;
}
.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
@media (max-width: 767.98px) {
  .testi-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .testi-quote-icon {
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------- Product Cards */
.custom-product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  height: 100%;
}
.custom-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(3,105,255,0.08);
  border-color: rgba(3,105,255,0.2);
}
.custom-product-img-wrap {
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
  position: relative;
}
.custom-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.custom-product-card:hover .custom-product-img-wrap img {
  transform: scale(1.05);
}
.custom-product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.custom-product-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sun);
  background: rgba(3,105,255,0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 0.85rem;
}
.custom-product-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.custom-product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.custom-product-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ----------------------------------------------------------- About Us Page Redesign */
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.03);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--sun);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  border: 4px solid var(--white);
}
.about-exp-badge .exp-years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about-exp-badge .exp-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .about-exp-badge {
    bottom: -10px;
    right: 20px;
    padding: 1rem;
  }
}
.about-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.about-check-item:hover {
  border-color: rgba(3,105,255,0.3);
  box-shadow: 0 4px 12px rgba(3,105,255,0.05);
}

/* Vision & Mission */
.vm-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(3,105,255,0.06);
  border-color: rgba(3,105,255,0.2);
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.4s ease;
}
.vm-card:hover::before {
  height: 100%;
}
.vm-icon {
  width: 60px;
  height: 60px;
  background: rgba(3,105,255,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.vm-card:hover .vm-icon {
  background: var(--primary);
  color: var(--white);
}
.vm-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.vm-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Core Values Modern */
.value-card-modern {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: all 0.35s ease;
}
.value-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(3,105,255,0.08);
  border-color: transparent;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}
.vcm-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--off);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.value-card-modern:hover .vcm-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}
.vcm-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.vcm-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ----------------------------------------------------------- Quote Section */
.quote-section {
  background: linear-gradient(135deg, rgba(3,105,255,0.02) 0%, rgba(3,105,255,0.06) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-box {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(3,105,255,0.06);
  position: relative;
  z-index: 1;
}
.quote-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: -60px auto 1.5rem;
  box-shadow: 0 10px 20px rgba(3,105,255,0.3);
  border: 4px solid var(--white);
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.qa-line {
  height: 2px;
  width: 40px;
  background: var(--primary);
  border-radius: 2px;
}
.qa-name {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
@media (max-width: 767.98px) {
  .quote-box {
    padding: 2.5rem 1.5rem;
  }
  .quote-text {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------- Redesigned 5-Step Delivery Roadmap */
@media (min-width: 1200px) {
  .col-xl-2p4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.process-section-redesigned {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  position: relative;
}

.process-timeline-container {
  position: relative;
}

@media (min-width: 992px) {
  .process-timeline-track {
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, rgba(3, 105, 255, 0.25) 0%, #0369FF 50%, rgba(3, 105, 255, 0.25) 100%);
    border-radius: 4px;
    z-index: 1;
    opacity: 0.6;
  }
}

.process-card-redesigned {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(3, 105, 255, 0.08);
  box-shadow: 0 10px 30px rgba(11, 27, 50, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.process-card-redesigned:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(3, 105, 255, 0.14);
  border-color: rgba(3, 105, 255, 0.3);
}

.process-card-accent-bar {
  height: 4px;
  width: 100%;
}

.process-card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0;
}

.process-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.process-card-redesigned:hover .process-step-num {
  transform: scale(1.15) rotate(5deg);
}

.process-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.process-card-redesigned:hover .process-icon-box {
  transform: scale(1.1);
}

.process-card-body-content {
  padding: 1rem 1.25rem;
  flex: 1;
}

.process-card-body-content h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #0B1B32;
  margin-bottom: 0.5rem;
}

.process-card-body-content p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 0;
}

.process-card-footer-tag {
  padding: 0 1.25rem 1.25rem;
}

.process-time-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

@media (max-width: 575.98px) {
  .process-card-top-header { padding: 1rem 0.85rem 0; }
  .process-step-num { width: 36px; height: 36px; font-size: 0.85rem; }
  .process-icon-box { width: 36px; height: 36px; font-size: 1.1rem; }
  .process-card-body-content { padding: 0.75rem 0.85rem; }
  .process-card-body-content h5 { font-size: 0.92rem; }
  .process-card-body-content p { font-size: 0.78rem; line-height: 1.4; }
  .process-card-footer-tag { padding: 0 0.85rem 0.85rem; }
  .process-time-pill { font-size: 0.68rem; padding: 4px 10px; }
}

/* --------------------------------------------------- Floating Sticky Quick Action Buttons (Equal Size Right) */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF !important;
  font-size: 1.45rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.fab-call {
  background: linear-gradient(135deg, #0369FF, #0055CC);
  box-shadow: 0 8px 24px rgba(3, 105, 255, 0.4);
}

.fab:hover {
  transform: translateY(-5px) scale(1.08);
  color: #FFFFFF !important;
}

.fab-whatsapp:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.fab-call:hover {
  box-shadow: 0 12px 28px rgba(3, 105, 255, 0.6);
}

/* Subtle Pulse Glow Animation */
.fab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
  animation: fabPulse 2.5s infinite;
}

.fab-whatsapp::before {
  background: rgba(37, 211, 102, 0.35);
}

.fab-call::before {
  background: rgba(3, 105, 255, 0.35);
}

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

@media (max-width: 575.98px) {
  .floating-btns {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .fab {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------- Legal Card & Content */
.legal-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.legal-content h3, 
.legal-content h4 {
  color: var(--dark);
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}
.legal-content p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal-content ul, 
.legal-content ol {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  padding-left: 1.25rem;
}
.legal-content ul li, 
.legal-content ol li {
  margin-bottom: 0.5rem;
}
