:root {
  --bs-teal: #00aba9;
  --color-primary: #00aba9;
  --color-secondary: #0085A1;
  --color-text: #45505b;
  --color-text-light: #728394;
  --color-bg: #f2f3f5;
  --color-footer: #f7f8f9;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a { color: var(--bs-teal); text-decoration: none; }
a:hover { color: #0085A1; }

h1, h2, h3, h4, h5, h6 { font-family: "Raleway", sans-serif; }

/* ─── Button system (unified) ─── */
.btn {
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 26px;
  border: 2px solid transparent;
  line-height: 1.4;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
}
.btn i { font-size: 18px; line-height: 1; }
.btn-lg { font-size: 15px; padding: 13px 32px; }
.btn-sm { font-size: 13px; padding: 7px 18px; }

.btn-primary, .btn-primary:visited {
  background: var(--bs-teal); border-color: var(--bs-teal); color: #fff;
}
.btn-primary:hover {
  background: #0085A1; border-color: #0085A1; color: #fff;
  box-shadow: 0 4px 14px rgba(0,133,161,0.25);
}
.btn-primary:focus, .btn-check:focus+.btn-primary {
  background: #0085A1; border-color: #0085A1; color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(0,133,161,0.4);
}

.btn-outline-primary, .btn-outline-primary:visited {
  background: transparent; color: var(--bs-teal); border-color: var(--bs-teal);
}
.btn-outline-primary:hover {
  background: var(--bs-teal); border-color: var(--bs-teal); color: #fff;
}
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0,133,161,0.25);
}

.btn-outline-secondary, .btn-outline-secondary:visited {
  background: transparent; color: var(--color-text); border-color: #ccc;
}
.btn-outline-secondary:hover {
  background: var(--bs-teal); border-color: var(--bs-teal); color: #fff;
}

.btn-light, .btn-light:visited {
  background: #fff; color: var(--color-primary); border-color: #fff;
}
.btn-light:hover, .btn-light:focus {
  background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9);
  color: var(--color-primary);
}

.btn-link {
  border-radius: 0; font-weight: 400; font-size: inherit;
  padding: 0; border: 0; background: transparent;
}

/* Inline arrow link — for "Learn more →", "View case studies →", etc. */
.btn-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--bs-teal); font-weight: 600; font-size: 14px;
  background: transparent; border: 0; padding: 0;
  transition: gap 0.18s ease, color 0.18s ease;
  text-decoration: none;
}
.btn-arrow i { font-size: 18px; line-height: 1; transition: transform 0.18s ease; }
.btn-arrow:hover, .btn-arrow:focus { color: #0085A1; gap: 8px; }
.btn-arrow:hover i { transform: translateX(2px); }

/* Dark mode */
body.dark-mode .btn-outline-secondary { color: #ccc; border-color: #555; }
body.dark-mode .btn-outline-secondary:hover { color: #fff; }
body.dark-mode .btn-arrow { color: var(--bs-teal); }

/* ─── Roadmap (4-phase page) ─── */
.roadmap-section { background: #fff; }
.roadmap-phase {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  padding: 40px 0; border-bottom: 1px solid #eef0f2;
  align-items: start;
}
.roadmap-phase:last-child { border-bottom: 0; }
.roadmap-phase-num {
  font-size: 4rem; font-weight: 800; color: var(--bs-teal);
  line-height: 1; letter-spacing: -2px; opacity: 0.6;
}
.roadmap-phase-meta {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.roadmap-phase-meta h3 { font-size: 26px; font-weight: 700; color: #45505b; margin: 0; }
.roadmap-phase-time {
  background: rgba(0,171,169,0.1); color: var(--bs-teal);
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
}
.roadmap-phase-body p { color: #728394; line-height: 1.6; margin-bottom: 14px; }
.roadmap-list { list-style: none; padding: 0; margin: 0 0 18px; }
.roadmap-list li {
  padding: 6px 0 6px 24px; position: relative;
  color: #45505b; line-height: 1.5; font-size: 14.5px;
}
.roadmap-list li::before {
  content: '→'; position: absolute; left: 0; top: 6px;
  color: var(--bs-teal); font-weight: 700;
}
.roadmap-deliverable {
  background: rgba(0,171,169,0.05); border-left: 3px solid var(--bs-teal);
  padding: 12px 16px; border-radius: 0 8px 8px 0;
  font-size: 14px; color: #45505b; margin-top: 14px;
}
.roadmap-deliverable strong { color: var(--bs-teal); }
@media (max-width: 767px) {
  .roadmap-phase { grid-template-columns: 1fr; gap: 14px; }
  .roadmap-phase-num { font-size: 3rem; }
}
body.dark-mode .roadmap-section { background: #1a1d23; }
body.dark-mode .roadmap-phase { border-bottom-color: #333; }
body.dark-mode .roadmap-phase-meta h3 { color: #e0e0e0; }
body.dark-mode .roadmap-phase-body p { color: #a0a0a0; }
body.dark-mode .roadmap-list li { color: #ccc; }
body.dark-mode .roadmap-deliverable { background: rgba(0,171,169,0.1); color: #ccc; }

/* ─── 404 page ─── */
.error-404 { text-align: center; padding: 40px 0; }
.error-404-code {
  font-size: clamp(96px, 18vw, 180px); font-weight: 800;
  line-height: 1; letter-spacing: -6px; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--bs-teal) 0%, #0085A1 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-404 h1 { font-size: 28px; font-weight: 700; color: #45505b; margin-bottom: 12px; }
.error-404 > p { color: #728394; margin-bottom: 28px; }
.error-404-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
.error-404-links ul { padding: 0; }
.error-404-links a { color: var(--bs-teal); }
body.dark-mode .error-404 h1 { color: #e0e0e0; }
body.dark-mode .error-404 > p { color: #a0a0a0; }

/* ─── Chat header actions (book button + minimize button row) ─── */
.chat-header-actions {
  position: absolute; top: 50%; right: 20px; transform: translateY(-50%);
  display: flex; align-items: center; gap: 10px;
}
.chat-book-btn {
  background: none; border: none; padding: 4px 6px; cursor: pointer;
  color: rgba(255,255,255,0.85); font-size: 1.2rem; line-height: 1;
  border-radius: 6px; transition: color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.chat-book-btn:hover { color: #fff; background: rgba(255,255,255,0.15); }
.chat-header .chat-minimize-btn { position: static; transform: none; }

.back-to-top {
  position: fixed; visibility: hidden; opacity: 0;
  bottom: 15px; left: 125px; z-index: 996;
  width: 50px; height: 50px; border: none;
  background: none; border-radius: 50%; transition: all 0.4s;
  cursor: pointer;
}
.back-to-top i { font-size: 32px; color: var(--color-text-light); line-height: 0; transition: 0.3s; }
.back-to-top:hover i { color: var(--bs-teal); }
.back-to-top.active { visibility: visible; opacity: 1; }
@media (max-width: 991px) { .back-to-top { left: 15px; } }

#preloader {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999; overflow: hidden; background: #fff;
}
body.dark-mode #preloader { background: #1a1d23; }
#preloader:before {
  content: ""; position: fixed;
  top: calc(50% - 30px); left: calc(50% - 30px);
  border: 6px solid var(--bs-teal); border-top-color: #fff; border-bottom-color: #fff;
  border-radius: 50%; width: 60px; height: 60px;
  animation: animate-preloader 1s linear infinite;
}
body.dark-mode #preloader:before {
  border-top-color: #1a1d23; border-bottom-color: #1a1d23;
}
@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

#header {
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 9997; transition: all 0.5s;
  padding: 15px; overflow-y: auto; overflow-x: clip; background: #fff;
}
@media (max-width: 992px) {
  #header {
    width: 300px; background: #fff; border-right: 1px solid #e6e9ec;
    left: -300px; top: 50px;
    /* Override `.justify-content-center` from the markup — when nav content overflows
       the viewport, centering clips both ends; flex-start lets the user scroll to the
       very first item without it being half-hidden under the topbar edge. */
    justify-content: flex-start !important;
    padding-bottom: 24px;
  }
  .nav-menu a, .nav-menu a:focus {
    height: 46px; padding: 6px 14px; margin-bottom: 5px; font-size: 14px;
  }
  .nav-menu a i, .nav-menu a:focus i { font-size: 18px; }
  .sidebar-toolbar {
    display: flex; flex-direction: column; gap: 6px;
    padding: 16px 18px; margin-top: 12px;
    border-top: 1px solid #eef0f2;
  }
  .sidebar-toolbar-item {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 10px 14px; border: none; background: #f2f3f5;
    font-size: 14px; color: #45505b; cursor: pointer; border-radius: 50px;
    transition: 0.2s;
  }
  .sidebar-toolbar-item:hover { background: var(--bs-teal); color: #fff; }
  .sidebar-toolbar-item i { font-size: 18px; line-height: 1; }
  .sidebar-toolbar-divider { height: 1px; background: #eef0f2; margin: 4px 0; }
  .sidebar-toolbar-label {
    display: block; font-size: 11px; font-weight: 600; text-transform: uppercase;
    color: #728394; letter-spacing: 0.5px; padding: 0 14px; margin-bottom: 2px;
  }
  .sidebar-toolbar-langs { display: flex; gap: 4px; padding: 0 14px; }
  .sidebar-toolbar-lang {
    padding: 4px 12px; border-radius: 50px; font-size: 13px; font-weight: 600;
    text-decoration: none; color: #45505b; transition: 0.2s;
  }
  .sidebar-toolbar-lang:hover { background: #f2f3f5; color: #45505b; }
  .sidebar-toolbar-lang.active { background: var(--bs-teal); color: #fff; }
  .sidebar-toolbar-lang.active:hover { color: #fff; }
  body.dark-mode #header { background: #22252b; border-right-color: #333; }
  body.dark-mode .sidebar-toolbar { border-top-color: #444; }
  body.dark-mode .sidebar-toolbar-item { background: #2a2d33; color: #e0e0e0; }
  body.dark-mode .sidebar-toolbar-item:hover { background: var(--bs-teal); color: #fff; }
  body.dark-mode .sidebar-toolbar-divider { background: #444; }
  body.dark-mode .sidebar-toolbar-label { color: #a0a0a0; }
  body.dark-mode .sidebar-toolbar-lang { color: #e0e0e0; }
  body.dark-mode .sidebar-toolbar-lang:hover { background: #3a3d43; color: #e0e0e0; }
}

/* Tighten sidebar nav on short-height screens so all items fit without scrolling */
@media (max-height: 800px) {
  .nav-menu a, .nav-menu a:focus {
    height: 42px; padding: 6px 14px; margin-bottom: 4px; font-size: 14px;
  }
  .nav-menu a i, .nav-menu a:focus i { font-size: 18px; }
  .sidebar-toolbar { padding: 10px 14px; margin-top: 6px; gap: 4px; }
  .sidebar-toolbar-item { padding: 6px 12px; font-size: 13px; }
  .sidebar-toolbar-item i { font-size: 16px; }
}
@media (min-width: 992px) {
  /* Collapsed sidebar: 15px padding + 56px icon + 15px padding = 86px */
  #main { margin-left: 86px; transition: margin-left 0.5s; }
}

.nav-menu { padding: 0; display: block; }
.nav-menu * { margin: 0; padding: 0; list-style: none; }
.nav-menu>ul>li { position: relative; white-space: nowrap; }
.nav-menu a, .nav-menu a:focus {
  display: flex; align-items: center; color: #45505b;
  padding: 10px 18px; margin-bottom: 8px; transition: 0.3s;
  font-size: 15px; border-radius: 50px; background: #f2f3f5;
  height: 56px; width: 100%; overflow: hidden;
}
.nav-menu a i, .nav-menu a:focus i { font-size: 20px; }
.nav-menu a span, .nav-menu a:focus span { padding: 0 5px 0 7px; color: #45505b; }
@media (min-width: 992px) {
  .nav-menu a, .nav-menu a:focus { width: 56px; }
  .nav-menu a span, .nav-menu a:focus span { display: none; }
  /* Keep collapsed width on hover — tooltip handles the label */
  .nav-menu a:hover, .nav-menu li:hover>a { width: 56px; }
  .nav-menu a:hover span, .nav-menu li:hover>a span { display: none; }
  /* Tooltip popover */
  .nav-menu li { position: relative; }
  .nav-menu a:hover::after {
    content: attr(data-tooltip);
    position: absolute; left: 64px; top: 50%; transform: translateY(-50%);
    background: #45505b; color: #fff; padding: 8px 16px; border-radius: 8px;
    font-size: 14px; white-space: nowrap; z-index: 10001;
    font-weight: 500; font-family: "Open Sans", sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    pointer-events: none;
  }
}
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover>a {
  color: #fff; background: var(--bs-teal);
}
.nav-menu a:hover span, .nav-menu .active span, .nav-menu .active:focus span, .nav-menu li:hover>a span { color: #fff; }
@media (max-width: 991px) {
  .nav-menu a:hover, .nav-menu li:hover>a { width: 100%; color: #fff; }
  .nav-menu a:hover span, .nav-menu li:hover>a span { display: block; }
}

.mobile-nav-toggle {
  position: fixed; left: 15px; top: 15px; z-index: 9998;
  border: 0; background: none; font-size: 28px; transition: all 0.4s;
  cursor: pointer;
  border-radius: 50px; padding: 5px; color: #fff;
  background-color: var(--bs-teal); box-shadow: 0 0 5px 0 #00000063;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
}

/* ─── Top bar ─── */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  position: fixed; top: 0; left: 0; right: 0; z-index: 9998;
  height: 50px; padding: 0 12px;
  background: transparent; border-bottom: none;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.topbar .mobile-nav-toggle {
  position: static; box-shadow: none; background-color: transparent;
  width: auto; height: auto;
  padding: 6px; font-size: 24px; color: #45505b;
}
.topbar .toolbar-dropdown { position: static; }
.topbar .toolbar-dropdown .btn-link {
  background: none; color: #45505b;
  box-shadow: none; font-size: 22px; padding: 4px;
}
.topbar .toolbar-dropdown .btn-link:hover { background: none; color: #0085A1; }
body.dark-mode .topbar .mobile-nav-toggle { color: #e0e0e0; background-color: transparent; }
body.dark-mode .topbar .toolbar-dropdown .btn-link { color: #e0e0e0; }
@media (max-width: 991px) {
  .topbar { background: #fff; border-bottom: 1px solid #eef0f2; }
  .topbar .mobile-nav-toggle { background-color: transparent; color: #45505b; }
  .topbar .toolbar-menu { top: 44px; right: 6px; }
  .topbar .toolbar-dropdown .btn-link { color: #45505b; }
  .mobile-nav-active #header { z-index: 9999; }
  .mobile-nav-active .mobile-nav-toggle { background-color: transparent; color: #45505b; box-shadow: none; }
  body.dark-mode .topbar { background: #22252b; border-bottom: none; }
  body.dark-mode .topbar .mobile-nav-toggle { color: #e0e0e0; }
  body.dark-mode .topbar .toolbar-dropdown .btn-link { color: #e0e0e0; }
}
.mobile-nav-active { overflow: hidden; }
.mobile-nav-active #header { left: 0; }
.mobile-nav-active .mobile-nav-toggle { color: #fff; background-color: var(--bs-teal); }

#hero {
  width: 100%; height: 100vh;
  background: url("assets/img/hero-bg.jpg") center center no-repeat;
  background-size: cover; position: relative;
}
@media (min-width: 992px) { #hero { padding-left: 60px; } }
#hero:before {
  content: ""; background: rgba(255, 255, 255, 0.85);
  position: absolute; bottom: 0; top: 0; left: 0; right: 0;
}
#hero .container { position: relative; z-index: 1; }
#hero h1 { margin: 0; font-size: 64px; font-weight: 700; line-height: 72px; color: #45505b; }
#hero .hero-subtitle { color: #45505b; margin: 15px 0 0 0; font-size: 26px; font-family: "Poppins", sans-serif; }
#hero .hero-subtitle span { color: var(--color-secondary); letter-spacing: 1px; background-color: #f2f3f5; padding: 0 5px; }
#hero .hero-desc { color: #728394; margin-top: 20px; font-size: 18px; max-width: 600px; }
#hero .hero-actions { margin-top: 30px; }
#hero .hero-actions .btn { margin-right: 10px; margin-bottom: 10px; }
#hero .social-links { margin-top: 30px; }
#hero .social-links a {
  font-size: 24px; display: inline-block; color: #45505b;
  line-height: 1; margin-right: 20px; transition: 0.3s;
}
#hero .social-links a svg { fill: #45505b }
#hero .social-links a:hover { color: var(--bs-teal); }
#hero .social-links a:hover svg { fill: var(--bs-teal); }
@media (max-width: 992px) {
  #hero { text-align: center; }
  #hero h1 { font-size: 32px; line-height: 36px; }
  #hero .hero-subtitle { margin-top: 10px; font-size: 20px; line-height: 24px; }
  #hero .hero-desc { margin: 15px auto 0; }
  #hero .hero-actions .btn { margin-right: 0; }
}

section { padding: 60px 0; overflow: hidden; }

.page-hero { padding: 100px 0 40px; text-align: center; }
@media (min-width: 992px) { .page-hero { padding: 140px 0 60px 160px; } }
.page-hero h1 { font-size: 32px; font-weight: 700; color: #45505b; }
.page-hero p { color: #728394; font-size: 18px; }

/* ─── Booking page ─── */
.booking-section { padding: 50px 0 80px; }
.booking-info-title { font-size: 20px; font-weight: 700; color: #45505b; margin-bottom: 20px; }
.booking-what-list { list-style: none; padding: 0; margin: 0; }
.booking-what-list li {
  padding: 12px 0 12px 32px; position: relative;
  border-bottom: 1px solid #eef0f2; color: #45505b; line-height: 1.5; font-size: 15px;
}
.booking-what-list li::before {
  content: '✓'; position: absolute; left: 0; top: 12px;
  color: var(--bs-teal); font-weight: 700;
}
.booking-direct a { display: block; color: var(--bs-teal); font-size: 14px; margin-bottom: 4px; }
.booking-form .form-label { font-weight: 600; font-size: 13px; color: #45505b; margin-bottom: 5px; }
.booking-form .form-control {
  border-radius: 8px; border-color: #e0e3e7; font-size: 14px; background: #fff; box-shadow: none;
}
.booking-form .form-control:focus { border-color: var(--bs-teal); box-shadow: 0 0 0 3px rgba(0,171,169,0.12); }
.booking-form textarea.form-control { padding: 10px 14px; resize: vertical; }
body.dark-mode .booking-info-title { color: #e0e0e0; }
body.dark-mode .booking-what-list li { color: #ccc; border-bottom-color: #333; }
body.dark-mode .booking-form .form-label { color: #ccc; }
body.dark-mode .booking-form .form-control { background: #2a2d33; border-color: #444; color: #e0e0e0; }
body.dark-mode .booking-form .form-control option { background: #2a2d33; }

.section-title { text-align: center; padding-bottom: 30px; }
.section-title h2 {
  font-size: 32px; font-weight: bold; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 20px; position: relative; color: #45505b;
}
.section-title h2::before {
  content: ""; position: absolute; display: block; width: 120px; height: 1px;
  background: #ddd; bottom: 1px; left: calc(50% - 60px);
}
.section-title h2::after {
  content: ""; position: absolute; display: block; width: 40px; height: 3px;
  background: var(--bs-teal); bottom: 0; left: calc(50% - 20px);
}
.section-title p { margin-bottom: 0; color: #728394; }
.section-bg { background: #f2f3f5; }

.about .content h3 { font-weight: 700; font-size: 26px; color: #728394; }
.about .content ul { list-style: none; padding: 0; }
.about .content ul li { margin-bottom: 20px; display: flex; align-items: center; }
.about .content ul strong { margin-right: 10px; }
.about .content ul i { font-size: 16px; margin-right: 5px; color: var(--bs-teal); line-height: 0; }
.about .content .btn { border-radius: 50px; padding: 12px 30px; font-weight: 600; }

.services .icon-box {
  text-align: center; padding: 50px 20px 60px 20px;
  transition: all ease-in-out 0.3s; background: #fff;
  border-radius: 10px; height: 100%;
}
.services .icon-box .icon {
  margin: 0 auto; width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  transition: ease-in-out 0.3s; position: relative;
}
.services .icon-box .icon i { font-size: 36px; transition: 0.5s; position: relative; }
.services .icon-box .icon svg { position: absolute; top: 0; left: 0; }
.services .icon-box .icon svg path { transition: 0.5s; fill: #f5f5f5; }
.services .icon-box h4 { font-weight: 600; margin: 10px 0 15px 0; font-size: 22px; }
.services .icon-box h4 a { color: #45505b; transition: ease-in-out 0.3s; }
.services .icon-box p { line-height: 24px; font-size: 14px; margin-bottom: 12px; }
.services .icon-box:hover { box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08); }
.services .icon-box .service-learn-more {
  display: inline-block; color: var(--bs-teal); font-weight: 600; font-size: 13px;
  margin-top: auto; letter-spacing: 0.3px; transition: color 0.2s, transform 0.2s;
}
.services .icon-box .service-learn-more:hover { color: #0085A1; transform: translateX(2px); }
body.dark-mode .services .icon-box .service-learn-more { color: var(--bs-teal); }

/* ─── Auxiliary services row ─── */
.aux-services { margin-top: 50px; padding-top: 30px; border-top: 1px solid #eef0f2; }
.aux-services-label {
  text-align: center; margin: 0 0 22px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #728394;
}
.aux-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.aux-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; border-radius: 10px;
  background: #f8f9fa; border: 1px solid #eef0f2;
  transition: border-color 0.2s, transform 0.2s;
}
.aux-item:hover { border-color: var(--bs-teal); transform: translateY(-2px); }
.aux-item i { font-size: 22px; color: var(--bs-teal); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.aux-item strong { display: block; font-size: 13px; color: #45505b; line-height: 1.3; }
.aux-item small { display: block; font-size: 11px; color: #728394; margin-top: 3px; }
@media (max-width: 991px) { .aux-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .aux-services-grid { grid-template-columns: 1fr; } }
body.dark-mode .aux-services { border-top-color: #333; }
body.dark-mode .aux-services-label { color: #a0a0a0; }
body.dark-mode .aux-item { background: #2a2d33; border-color: #333; }
body.dark-mode .aux-item strong { color: #e0e0e0; }
body.dark-mode .aux-item small { color: #a0a0a0; }

/* ─── Case study filterable grid ─── */
.case-filters { margin: 25px 0 30px; }
.case-filter-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin-bottom: 10px; justify-content: center;
}
.case-filter-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: #728394; margin-right: 6px;
}
.case-filter-btn {
  background: #fff; color: #45505b; border: 1px solid #e0e3e7;
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.case-filter-btn:hover { border-color: var(--bs-teal); color: var(--bs-teal); }
.case-filter-btn.active {
  background: var(--bs-teal); border-color: var(--bs-teal); color: #fff;
}

.case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.case-card {
  display: flex; gap: 16px; padding: 22px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #eef0f2;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.case-card:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: rgba(0,171,169,0.35);
}
.case-card-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,171,169,0.1); border-radius: 12px;
}
.case-card-icon i { font-size: 32px; color: var(--bs-teal); }
.case-card-body { flex: 1; min-width: 0; }
.case-card-body h4 { font-size: 17px; font-weight: 700; color: #45505b; margin: 0 0 8px; }
.case-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.case-card-tags .tag {
  display: inline-block; padding: 3px 9px; border-radius: 4px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
}
.case-card-tags .tag-industry { background: rgba(0,171,169,0.12); color: var(--bs-teal); }
.case-card-tags .tag-type     { background: #f2f3f5; color: #45505b; }
.case-card-body p { font-size: 13px; line-height: 1.55; color: #728394; margin: 0; }
.case-empty { text-align: center; padding: 40px 0; color: #728394; }
@media (max-width: 767px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-card { flex-direction: column; }
}
body.dark-mode .case-filter-btn { background: #2a2d33; color: #ccc; border-color: #444; }
body.dark-mode .case-filter-btn:hover { border-color: var(--bs-teal); color: var(--bs-teal); }
body.dark-mode .case-filter-btn.active { background: var(--bs-teal); color: #fff; }
body.dark-mode .case-filter-label { color: #a0a0a0; }
body.dark-mode .case-card { background: #2a2d33; border-color: #333; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
body.dark-mode .case-card-body h4 { color: #e0e0e0; }
body.dark-mode .case-card-body p { color: #a0a0a0; }
body.dark-mode .case-card-tags .tag-type { background: #1a1d23; color: #ccc; }

/* ─── "What I've built" showcase grid ─── */
.built-section { padding: 60px 0; background: #fff; }
.built-section .section-title p { font-size: 15px; }
.built-link { color: var(--bs-teal); font-weight: 600; }
.built-link:hover { text-decoration: underline; }
.built-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.built-card {
  padding: 22px 18px; border-radius: 12px;
  background: #f8f9fa; border: 1px solid #eef0f2;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.built-card:hover {
  transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: var(--bs-teal);
}
.built-card i { font-size: 30px; color: var(--bs-teal); margin-bottom: 10px; }
.built-card h4 { font-size: 15px; font-weight: 700; color: #45505b; margin-bottom: 6px; }
.built-card p { font-size: 13px; color: #728394; line-height: 1.45; margin: 0; }
@media (max-width: 991px) { .built-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .built-grid { grid-template-columns: 1fr; } }
body.dark-mode .built-section { background: #1a1d23; }
body.dark-mode .built-card { background: #2a2d33; border-color: #333; }
body.dark-mode .built-card:hover { border-color: var(--bs-teal); }
body.dark-mode .built-card h4 { color: #e0e0e0; }
body.dark-mode .built-card p { color: #a0a0a0; }

.services .iconbox-blue i { color: #47aeff; }
.services .iconbox-blue:hover .icon i { color: #fff; }
.services .iconbox-blue:hover .icon path { fill: #47aeff; }
.services .iconbox-orange i { color: #ffa76e; }
.services .iconbox-orange:hover .icon i { color: #fff; }
.services .iconbox-orange:hover .icon path { fill: #ffa76e; }
.services .iconbox-pink i { color: #e80368; }
.services .iconbox-pink:hover .icon i { color: #fff; }
.services .iconbox-pink:hover .icon path { fill: #e80368; }
.services .iconbox-yellow i { color: #ffbb2c; }
.services .iconbox-yellow:hover .icon i { color: #fff; }
.services .iconbox-yellow:hover .icon path { fill: #ffbb2c; }
.services .iconbox-red i { color: #ff5828; }
.services .iconbox-red:hover .icon i { color: #fff; }
.services .iconbox-red:hover .icon path { fill: #ff5828; }
.services .iconbox-teal i { color: #11dbcf; }
.services .iconbox-teal:hover .icon i { color: #fff; }
.services .iconbox-teal:hover .icon path { fill: #11dbcf; }

.tool-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 70px; height: 70px; font-size: 40px;
  background-color: var(--bs-teal); border-radius: 15%; color: #fff;
  margin: 6px; transition: 0.3s;
}
.tool-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,171,169,0.3); }
.tool-icon i, .tool-icon ion-icon { color: #fff; }
.tool-icon svg { fill: #fff; width: 34px; height: 34px; }
.tool-icon i {
  width: 55px; height: 50px; padding-top: 7px;
}
.tool-icon ion-icon {
  height: 40px; width: 55px; padding-top: 5px;
}
/* ─── Tool icon tooltips ─── */
.tool-icon[data-tooltip] { position: relative; overflow: visible; }
.tool-icon[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(20,22,30,0.93);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.tool-icon[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(20,22,30,0.93);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 200;
}
.tool-icon[data-tooltip]:hover::before,
.tool-icon[data-tooltip].tooltip-active::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.tool-icon[data-tooltip]:hover::after,
.tool-icon[data-tooltip].tooltip-active::after { opacity: 1; }

/* Active (tapped) popover sits above neighbouring icons */
.tool-icon[data-tooltip].tooltip-active { z-index: 1000; }
.tool-icon[data-tooltip].tooltip-active::before,
.tool-icon[data-tooltip].tooltip-active::after { z-index: 1001; }

/* First icon in row: show tooltip to the right */
.tool-icon[data-tooltip]:first-child::before {
  bottom: auto; top: 50%; left: calc(100% + 10px);
  transform: translateY(-50%) translateX(4px);
}
.tool-icon[data-tooltip]:first-child::after {
  bottom: auto; top: 50%; left: 100%;
  transform: translateY(-50%);
  border-color: transparent rgba(20,22,30,0.93) transparent transparent;
}
.tool-icon[data-tooltip]:first-child:hover::before,
.tool-icon[data-tooltip]:first-child.tooltip-active::before {
  transform: translateY(-50%) translateX(0);
}

/* Last icon in row: show tooltip to the left */
.tool-icon[data-tooltip]:last-child::before {
  bottom: auto; top: 50%; left: auto; right: calc(100% + 10px);
  transform: translateY(-50%) translateX(-4px);
}
.tool-icon[data-tooltip]:last-child::after {
  bottom: auto; top: 50%; left: auto; right: 100%;
  transform: translateY(-50%);
  border-color: transparent transparent transparent rgba(20,22,30,0.93);
}
.tool-icon[data-tooltip]:last-child:hover::before,
.tool-icon[data-tooltip]:last-child.tooltip-active::before {
  transform: translateY(-50%) translateX(0);
}

/* Anchor offset so jump-links don't get hidden by the mobile topbar */
[id] { scroll-margin-top: 60px; }
.anchor-offset { display: block; height: 0; visibility: hidden; }

/* Article / Note page top padding so back-to-blog clears the mobile topbar */
.article-page-top { padding-top: 70px; }
@media (min-width: 992px) {
  .article-page-top { padding-top: 1rem; }
}

.process .count-box {
  padding: 30px 20px 25px; margin-top: 30px;
  width: 100%; position: relative; text-align: center; background: #fff;
  border-radius: 8px; box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.process .count-box i {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-size: 24px; background: var(--bs-teal); color: #fff;
  border-radius: 50px; display: inline-flex; align-items: center;
  justify-content: center; width: 66px; height: 66px;
}
.process .count-box span { font-size: 36px; display: block; font-weight: 600; color: #011426; }
.process .count-box p { padding: 0; margin: 0; font-family: "Raleway", sans-serif; font-size: 17px; }

.journey .journey-title {
  font-size: 26px; font-weight: 700;
  margin-top: 20px; margin-bottom: 20px; color: #45505b;
}
.journey .journey-item {
  padding: 0 0 20px 20px; margin-top: -2px;
  border-left: 2px solid var(--bs-teal); position: relative;
}
.journey .journey-item h4 {
  line-height: 18px; font-size: 18px; font-weight: 600; text-transform: uppercase;
  font-family: "Poppins", sans-serif; color: var(--bs-teal); margin-bottom: 10px;
}
.journey .journey-item h5 {
  font-size: 16px; background: #f7f8f9; padding: 5px 15px;
  display: inline-block; font-weight: 600; margin-bottom: 10px;
}
.journey .journey-item p { margin-bottom: 8px; }
.journey .journey-item:last-child { padding-bottom: 0; }
.journey .journey-item::before {
  content: ""; position: absolute; width: 16px; height: 16px;
  border-radius: 50px; left: -9px; top: 0;
  background: #fff; border: 2px solid var(--bs-teal);
}
body.dark-mode .journey .journey-item::before { background: #1a1d23; }

.portfolio .portfolio-item { margin-bottom: 30px; }
.portfolio #portfolio-flters {
  padding: 0; margin: 0 auto 25px auto; list-style: none; text-align: center;
  background: #fff; border-radius: 50px; padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer; display: inline-block; padding: 10px 15px;
  font-size: 14px; font-weight: 600; line-height: 1; text-transform: uppercase;
  color: #272829; margin-bottom: 5px; transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active { color: var(--bs-teal); }
.portfolio .portfolio-wrap {
  transition: 0.3s; position: relative; overflow: hidden;
  z-index: 1; background: rgba(69, 80, 91, 0.8);
  border-radius: 8px; min-height: 250px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.portfolio .portfolio-wrap .portfolio-placeholder {
  color: #fff; font-size: 18px; font-weight: 600; text-align: center; padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-placeholder i { font-size: 48px; display: block; margin-bottom: 10px; }
.portfolio .portfolio-wrap::before {
  content: ""; background: rgba(255, 255, 255, 0.7);
  position: absolute; left: 30px; right: 30px; top: 30px; bottom: 30px;
  transition: all ease-in-out 0.3s; z-index: 2; opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  text-align: center; z-index: 3; transition: all ease-in-out 0.3s;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block; content: ""; width: 48px; height: 48px;
  position: absolute; top: 35px; left: 35px;
  border-top: 3px solid #d7dce1; border-left: 3px solid #d7dce1;
  transition: all 0.5s ease 0s; z-index: 2;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block; content: ""; width: 48px; height: 48px;
  position: absolute; bottom: 35px; right: 35px;
  border-bottom: 3px solid #d7dce1; border-right: 3px solid #d7dce1;
  transition: all 0.5s ease 0s; z-index: 2;
}
.portfolio .portfolio-wrap .portfolio-info h4 { font-size: 20px; color: #45505b; font-weight: 600; }
.portfolio .portfolio-wrap .portfolio-info p { color: #45505b; font-size: 14px; text-transform: uppercase; padding: 0; margin: 0; }
.portfolio .portfolio-wrap .portfolio-info .tags { margin-top: 8px; }
.portfolio .portfolio-wrap .portfolio-info .tags span {
  display: inline-block; font-size: 11px; background: var(--bs-teal);
  color: #fff; padding: 2px 8px; border-radius: 10px; margin: 2px;
}
.portfolio .portfolio-wrap:hover::before { top: 0; left: 0; right: 0; bottom: 0; opacity: 1; }
.portfolio .portfolio-wrap:hover .portfolio-info { opacity: 1; }
.portfolio .portfolio-wrap:hover .portfolio-info::before { top: 15px; left: 15px; }
.portfolio .portfolio-wrap:hover .portfolio-info::after { bottom: 15px; right: 15px; }

.contact .info { width: 100%; }
.contact .info i {
  font-size: 20px; color: var(--bs-teal);
  float: left; width: 44px; height: 44px;
  background: #eef7ff; display: flex; justify-content: center;
  align-items: center; border-radius: 50px; transition: all 0.3s ease-in-out;
}
.contact .info h4 { padding: 0 0 0 60px; font-size: 22px; font-weight: 600; margin-bottom: 5px; color: #45505b; }
.contact .info p { padding: 0 0 0 60px; margin-bottom: 0; font-size: 14px; color: #728394; }
.contact .info .email, .contact .info .phone { margin-top: 40px; }
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i { background: var(--bs-teal); color: #fff; }
.form-control:focus { border-color: var(--bs-teal); }
.contact .email-contact-form { width: 100%; }
.contact .email-contact-form .form-group { padding-bottom: 8px; }
.contact .email-contact-form .form-control { border-radius: 4px; box-shadow: none; font-size: 14px; background: var(--color-bg); }
.contact .email-contact-form input { height: 44px; }
.contact .email-contact-form textarea { padding: 10px 12px; }
.contact .email-contact-form button[type=submit] {
  background: var(--bs-teal); border: 0; padding: 12px 35px; color: #fff;
  transition: 0.4s; border-radius: 50px; width: 100%; font-weight: 600; cursor: pointer;
}
.contact .email-contact-form button[type=submit]:hover { background: #0085A1; }

/* ─── Contact section (merged Book + Message) ─── */
.contact-intro-card {
  background: var(--color-primary);
  background-image: linear-gradient(135deg, var(--color-primary) 0%, #0085A1 100%);
  border-radius: 14px; padding: 36px 32px; color: #fff;
  box-shadow: 0 4px 24px rgba(0,171,169,0.18);
}
.contact-intro-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,255,255,0.15); display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.contact-intro-icon i { font-size: 28px; color: #fff; }
.contact-intro-card h3 { color: #fff; font-size: 1.5rem; font-weight: 700; margin: 0 0 10px; }
.contact-intro-card p  { color: rgba(255,255,255,0.92); margin-bottom: 22px; line-height: 1.55; }
.contact-expect-list {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.contact-expect-list li {
  padding: 8px 0 8px 26px; position: relative;
  color: rgba(255,255,255,0.95); font-size: 0.9rem; line-height: 1.45;
}
.contact-expect-list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: #fff; font-weight: 700;
}
.contact-info-list {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.contact-info-list i { margin-right: 6px; }
@media (max-width: 991px) {
  .contact-intro-card { padding: 28px 24px; }
}

#footer {
  background: #f7f8f9; color: #45505b; font-size: 14px;
  text-align: center; padding: 30px 0;
}
#footer h3 { font-size: 36px; font-weight: 700; font-family: "Poppins", sans-serif; margin: 0 0 15px; }
#footer p { font-size: 15px; font-style: italic; padding: 0; margin: 0 0 40px; }
#footer .social-links { margin: 0 0 40px; }
#footer .social-links a {
  font-size: 18px; display: inline-block; color: #0085A1;
  line-height: 1; padding: 8px 0; margin: 0 4px; border-radius: 50%;
  text-align: center; width: 36px; height: 36px; transition: 0.3s;
}

#footer .social-links a svg {
  fill: #0085A1;
}

#footer .social-links a:hover > svg {
  fill: #fff;
}

#footer .social-links a i {
  position: relative;
  bottom: 1px;
}
#footer .social-links a:hover { background: #0085A1; color: #fff; }
#footer .copyright { margin: 0; }

.about-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start;
}
.about-grid .about-image { width: 100%; border-radius: 10px; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-card { background: #fff; border-radius: 10px; padding: 30px; height: 100%; text-align: center; box-shadow: 0 2px 15px rgba(0,0,0,0.06); }
.about-card .card-icon { font-size: 36px; color: var(--bs-teal); margin-bottom: 15px; }

.case-study-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06); height: 100%; transition: 0.3s; }
.case-study-card:hover { box-shadow: 0 5px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.case-study-body { padding: 25px; }
.case-study-tag { font-size: 12px; font-weight: 600; text-transform: uppercase; color: #fff; background: var(--bs-teal); display: inline-block; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.case-study-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.case-study-tags { margin-top: 12px; }
.case-study-tags span { display: inline-block; font-size: 11px; background: #f2f3f5; color: #45505b; padding: 2px 8px; border-radius: 10px; margin: 2px; }

.addons-table { width: 100%; border-collapse: collapse; }
.addons-table td, .addons-table th { padding: 10px 15px; border-bottom: 1px solid #eef0f2; }
.addons-table th { font-weight: 600; background: #f2f3f5; }
.cta-section { text-align: center; padding: 60px 0; background: #f2f3f5; }
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 15px; }
.cta-section p { color: #728394; margin-bottom: 25px; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

section.content-page { padding-top: 30px; }
@media (min-width: 992px) {
  section.content-page { padding: 100px 60px 60px; }
}

.blog-listing .card {
  border: none; border-radius: 10px; box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: 0.3s; height: 100%;
}
.blog-listing .card:hover { box-shadow: 0 5px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.blog-listing .card .badge { font-size: 11px; padding: 4px 10px; border-radius: 20px; }
.blog-listing .card .card-link { color: var(--bs-teal); font-weight: 600; }

/* Home page blog card polish */
#blog .card .badge {
  border-radius: 20px; padding: 5px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}
#blog .card .badge-article { background: #00aba9; color: #fff; }
#blog .card .badge-note { background: #f0a830; color: #fff; }
#blog .card .card-link {
  color: var(--bs-teal); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.18s ease, color 0.18s ease;
}
#blog .card .card-link i { font-size: 18px; line-height: 1; transition: transform 0.18s ease; }
#blog .card .card-link:hover { color: #0085A1; gap: 8px; }
#blog .card .card-link:hover i { transform: translateX(2px); }
body.dark-mode #blog .card .badge-article { background: var(--bs-teal); }
body.dark-mode #blog .card .badge-note { background: #f0a830; }

.nav-tabs .nav-link { color: #728394; border: none; font-weight: 500; }
.nav-tabs .nav-link.active { color: var(--bs-teal); border-bottom: 2px solid var(--bs-teal); background: none; }
.nav-tabs .nav-link:hover { color: var(--bs-teal); border: none; }

.pricing-card {
  background: #fff; border-radius: 10px; padding: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06); height: 100%;
  transition: 0.3s; text-align: center; border: 1px solid #eef0f2;
}
.pricing-card:hover { box-shadow: 0 5px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.pricing-card.featured { border-color: var(--bs-teal); box-shadow: 0 5px 20px rgba(0,171,169,0.15); }
.pricing-card .pricing-badge {
  background: var(--bs-teal); color: #fff; font-size: 12px; font-weight: 600;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  display: inline-block; margin-bottom: 15px;
}
.pricing-card h3 { font-size: 22px; font-weight: 700; color: #45505b; }
.pricing-card .price { font-size: 36px; font-weight: 700; color: var(--bs-teal); margin: 10px 0 5px; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: #728394; }
.pricing-card .maintenance { font-size: 14px; color: #728394; margin-bottom: 15px; }
.pricing-card ul { text-align: left; padding: 0; list-style: none; margin: 20px 0; }
.pricing-card ul li { padding: 6px 0; font-size: 14px; }
.pricing-card ul li::before { content: "\2713  "; color: var(--bs-teal); font-weight: 700; }
.pricing-card .btn { border-radius: 50px; }

.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table th, .comparison-table td { padding: 12px 15px; border-bottom: 1px solid #eef0f2; }
.comparison-table thead th { background: #f2f3f5; font-weight: 600; }
.comparison-table .check { color: var(--bs-teal); font-weight: 700; }
.comparison-table .dash { color: #ccc; }

.faq-item {
  border: 1px solid #eef0f2; border-radius: 8px; margin-bottom: 10px; overflow: hidden;
}
.faq-question {
  padding: 15px 20px; font-weight: 600; cursor: pointer;
  background: #fafafa; transition: 0.3s;
  position: relative;
}
.faq-question::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 20px; transition: 0.3s;
}
.faq-item.open .faq-question::after { content: "\2212"; }
.faq-question:hover { background: #f0f0f0; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.3s; }
.faq-item.open .faq-answer { padding: 15px 20px; max-height: 300px; }

@media (max-width: 992px) {
  .pricing-card { margin-bottom: 20px; }
}

/* ─── Industries strip ─── */
.industries-strip { padding: 36px 0; background: var(--color-primary); }
.industries-label {
  text-align: center; color: rgba(255,255,255,0.92); margin: 0 0 20px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.industries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; align-items: stretch;
}
.industry-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 10px 8px; border-radius: 10px;
  color: #fff; transition: background 0.2s, transform 0.2s;
}
.industry-item i { font-size: 26px; margin-bottom: 6px; opacity: 0.95; }
.industry-item span { font-size: 0.82rem; font-weight: 600; line-height: 1.2; }
.industry-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
@media (max-width: 991px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
body.dark-mode .industries-strip { background: #0085A1; }

/* ─── Sidebar toolbar (mobile only) ─── */
.sidebar-toolbar { display: none; }

/* ─── Desktop nav expand ─── */
@media (min-width: 992px) {
  #header.expanded { width: auto; }
  #header.expanded .nav-menu a { width: 100%; }
  #header.expanded .nav-menu a span { display: inline; color: #45505b; }
  #header.expanded .nav-menu .active span,
  #header.expanded .nav-menu .active:focus span { color: #fff; }
  #header.expanded .nav-menu a:hover,
  #header.expanded .nav-menu li:hover>a { width: 100%; }
  #header.expanded .nav-menu a:hover span,
  #header.expanded .nav-menu li:hover>a span { display: inline; color: #fff; }
  #header.expanded .nav-menu a:hover::after { display: none; }
  #header.expanded ~ #main { margin-left: 198px; }
  #header.expanded ~ .back-to-top { left: 163px; }
  .mobile-nav-toggle { display: flex; }
}

/* ─── Top-right toolbar dropdown ─── */
.toolbar-dropdown .btn-link {
  color: var(--bs-teal);
}
.toolbar-menu {
  position: absolute; top: 46px; right: 0; min-width: 180px;
  background: #fff; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 8px; display: none; z-index: 10001;
}
.toolbar-menu.open { display: block; }
.toolbar-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 8px 12px; border: none; background: none;
  font-size: 14px; color: #45505b; cursor: pointer; border-radius: 6px;
  transition: 0.2s;
}
.toolbar-item:hover { background: #f2f3f5; }
.toolbar-item i { font-size: 16px; width: 20px; text-align: center; }
.toolbar-divider { height: 1px; background: #eef0f2; margin: 6px 8px; }
.toolbar-label {
  display: block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  color: #728394; padding: 4px 12px 2px; letter-spacing: 0.5px;
}
.toolbar-langs { display: flex; gap: 4px; padding: 4px 12px 8px; }
.toolbar-lang {
  flex: 1; text-align: center; padding: 4px 8px; border-radius: 6px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  color: #45505b; transition: 0.2s;
}
.toolbar-lang:hover { background: #f2f3f5; color: #45505b; }
.toolbar-lang.active { background: var(--bs-teal); color: #fff; }
.toolbar-lang.active:hover { color: #fff; }

/* ─── Dark Mode ─── */
body.dark-mode {
  --color-bg: #1a1d23;
  --color-footer: #1a1d23;
  --color-text: #e0e0e0;
  --color-text-light: #a0a0a0;
  background: #1a1d23; color: #e0e0e0;
}
body.dark-mode #header { background: var(--color-bg); }
@media (max-width: 992px) {
  body.dark-mode #header { background: #22252b; border-right-color: #333; }
}
body.dark-mode .nav-menu a, body.dark-mode .nav-menu a:focus { background: #2a2d33; color: #ccc; }
body.dark-mode .nav-menu a span, body.dark-mode .nav-menu a:focus span { color: #ccc; }
body.dark-mode .nav-menu a:hover, body.dark-mode .nav-menu .active,
body.dark-mode .nav-menu .active:focus, body.dark-mode .nav-menu li:hover>a { background: var(--bs-teal); color: #fff; }
body.dark-mode .nav-menu a:hover span, body.dark-mode .nav-menu .active span { color: #fff; }
body.dark-mode #header.expanded .nav-menu a span { color: #ccc; }
body.dark-mode .nav-menu a:hover::after { background: #3a3d43; color: #e0e0e0; }

body.dark-mode .section-bg { background: #22252b; }
body.dark-mode .section-title h2 { color: #e0e0e0; }
body.dark-mode .section-title p { color: #a0a0a0; }

body.dark-mode .services .icon-box { background: #2a2d33; }
body.dark-mode .services .icon-box h4 a { color: #e0e0e0; }
body.dark-mode .services .icon-box p { color: #a0a0a0; }

body.dark-mode .process .count-box { background: #2a2d33; }
body.dark-mode .process .count-box span { color: #e0e0e0; }
body.dark-mode .process .count-box p { color: #a0a0a0; }

body.dark-mode .about-card { background: #2a2d33; }
body.dark-mode .about .content h3 { color: #a0a0a0; }
body.dark-mode .about .content p { color: #ccc; }
body.dark-mode .about .content ul li { color: #ccc; }

/* About image — mobile */
@media (max-width: 991px) {
  .about .col-lg-4 { margin-bottom: 24px; }
  .about .col-lg-4 img { border-radius: 12px; max-height: 320px; width: 100%; object-fit: cover; object-position: center 10%; }
}

/* Pricing — full width on tablet and mobile */
@media (max-width: 991px) {
  #pricing .col-lg-4,
  #pricing .col-md-6 { width: 100%; max-width: 520px; margin-left: auto; margin-right: auto; }
}

body.dark-mode .case-study-card { background: #2a2d33; }
body.dark-mode .case-study-body h3 { color: #e0e0e0; }
body.dark-mode .case-study-tags span { background: #3a3d43; color: #ccc; }
body.dark-mode .case-study-body p { color: #a0a0a0; }
body.dark-mode .contact .info p { color: #a0a0a0; }
body.dark-mode .contact .info h4 { color: #e0e0e0; }

body.dark-mode .contact .email-contact-form .form-control {
  background: #2a2d33; color: #e0e0e0; border-color: #444;
}
body.dark-mode .contact .email-contact-form .form-control:focus {
  border-color: var(--bs-teal);
}
body.dark-mode .contact .email-contact-form select.form-control option {
  background: #2a2d33; color: #e0e0e0;
}

body.dark-mode .journey .journey-item h5 { background: #2a2d33; color: #ccc; }
body.dark-mode .journey .journey-title { color: #e0e0e0; }

body.dark-mode .pricing-card { background: #2a2d33; border-color: #333; }
body.dark-mode .pricing-card h3 { color: #e0e0e0; }
body.dark-mode .pricing-card .maintenance { color: #a0a0a0; }
body.dark-mode .pricing-card ul li { color: #ccc; }

body.dark-mode .toolbar-menu { background: #2a2d33; }
body.dark-mode .toolbar-item { color: #e0e0e0; }
body.dark-mode .toolbar-item:hover { background: #3a3d43; }
body.dark-mode .toolbar-divider { background: #444; }
body.dark-mode .toolbar-label { color: #a0a0a0; }
body.dark-mode .toolbar-lang { color: #e0e0e0; }
body.dark-mode .toolbar-lang:hover { background: #3a3d43; color: #e0e0e0; }

body.dark-mode .portfolio #portfolio-flters { background: #2a2d33; }
body.dark-mode .portfolio #portfolio-flters li { color: #ccc; }
body.dark-mode .portfolio .portfolio-wrap::before { background: rgba(26, 29, 35, 0.85); }
body.dark-mode .portfolio .portfolio-wrap .portfolio-info h4 { color: #e0e0e0; }
body.dark-mode .portfolio .portfolio-wrap .portfolio-info p { color: #ccc; }
body.dark-mode .portfolio .portfolio-wrap .portfolio-info::before { border-top-color: #555; border-left-color: #555; }
body.dark-mode .portfolio .portfolio-wrap .portfolio-info::after { border-bottom-color: #555; border-right-color: #555; }

body.dark-mode .faq-question { background: #2a2d33; color: #e0e0e0; }
body.dark-mode .faq-question:hover { background: #333; }
body.dark-mode .faq-item { border-color: #444; }

body.dark-mode .comparison-table thead th { background: #2a2d33; color: #e0e0e0; }
body.dark-mode .comparison-table td { border-color: #444; color: #ccc; }
body.dark-mode .addons-table th { background: #2a2d33; color: #e0e0e0; }
body.dark-mode .addons-table td { border-color: #444; }

body.dark-mode .blog-listing .card { background: #2a2d33; }
body.dark-mode .blog-listing .card .text-muted { color: #a0a0a0 !important; }
body.dark-mode .blog-listing .card .card-title { color: #e0e0e0; }
body.dark-mode .blog-listing .card .card-text { color: #a0a0a0; }
body.dark-mode .blog-listing .card-header { background: #22252b; border-bottom-color: #444; }
body.dark-mode .blog-listing .nav-tabs .nav-link { color: #a0a0a0; }
body.dark-mode .blog-listing .nav-tabs .nav-link.active { color: var(--bs-teal); }
body.dark-mode .blog-listing .nav-tabs .nav-link:hover { color: var(--bs-teal); }
body.dark-mode #blog .card { background: #2a2d33; }
body.dark-mode #blog .card .card-title { color: #e0e0e0; }
body.dark-mode #blog .card .text-muted { color: #a0a0a0 !important; }
body.dark-mode #blog .card-header { background: #22252b; border-bottom-color: #444; }

body.dark-mode .nav-tabs .nav-link { color: #a0a0a0; }
body.dark-mode .nav-tabs .nav-link.active { color: var(--bs-teal); }

body.dark-mode #footer { background: #22252b; color: #ccc; }
body.dark-mode .cta-section { background: #22252b; }
body.dark-mode .page-hero h1 { color: #e0e0e0; }
body.dark-mode .page-hero p { color: #a0a0a0; }
body.dark-mode .alt-bg { background: #22252b; }

body.dark-mode #hero:before { background: rgba(26, 29, 35, 0.9); }
body.dark-mode #hero h1 { color: #e0e0e0; }
body.dark-mode #hero .hero-subtitle { color: #ccc; }
body.dark-mode #hero .hero-desc { color: #a0a0a0; }
body.dark-mode #hero .social-links a { color: #ccc; }
body.dark-mode #hero .social-links a svg { fill: #ccc; }
body.dark-mode #hero .social-links a:hover { color: var(--bs-teal); }
body.dark-mode #hero .social-links a:hover svg { fill: var(--bs-teal); }

body.dark-mode .contact .info i { background: #2a2d33; }
body.dark-mode .contact-book-card { background: #0085A1; }
body.dark-mode .contact-or-divider::before,
body.dark-mode .contact-or-divider::after { background: #444; }
body.dark-mode .contact-or-divider { color: #888; }

body.dark-mode .tool-icon { box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important; }

/* ─── Chat FAB ─── */
.chat-fab {
  position: fixed; bottom: 15px; right: 15px; z-index: 9995;
  display: flex; flex-direction: column; align-items: flex-end;
}
.chat-fab.open { z-index: 10000; }
.chat-fab-btn {
  width: 50px; height: 50px; border-radius: 50%; border: none;
  background: var(--bs-teal); color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  transition: 0.3s; position: relative; z-index: 2;
}
.chat-fab-btn:hover { background: #0085A1; transform: scale(1.05); }
.chat-fab-notif {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #e74c3c; color: #fff; font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid #fff; pointer-events: none;
}
.chat-fab-notif.visible { display: flex; }
.chat-fab-btn .bx-x { display: none; }
.chat-fab.open .chat-fab-btn .bx-message-dots { display: none; }
.chat-fab.open .chat-fab-btn .bx-x { display: inline; }

.chat-popup {
  position: fixed; inset: 0;
  width: 100vw; height: 100dvh;
  max-width: none; max-height: none;
  background: #fff; border-radius: 0;
  box-shadow: none; overflow: hidden;
  display: none; flex-direction: column; z-index: 9998;
}
.chat-fab.open .chat-popup { display: flex; }

.chat-header {
  background: var(--bs-teal); color: #fff; padding: 14px 44px 10px 16px;
  font-size: 14px; font-weight: 600; line-height: 1.3; position: relative;
  flex-shrink: 0;
}
.chat-header small { display: block; font-size: 11px; font-weight: 400; opacity: 0.85; margin-top: 2px; }
.chat-minimize-btn {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  background: none; border: none; padding: 4px 6px; cursor: pointer;
  color: rgba(255,255,255,0.8); font-size: 1.25rem; line-height: 1;
  transition: color 0.2s, background 0.2s; border-radius: 6px;
}
.chat-minimize-btn:hover { color: #fff; background: rgba(255,255,255,0.15); }

.chat-messages {
  flex: 1 1 0; min-height: 0; overflow-y: auto;
  padding: 16px max(14px, calc((100% - 760px) / 2));
  display: flex; flex-direction: column; gap: 10px;
  overscroll-behavior: contain;
}
.chat-msg {
  max-width: min(85%, 560px); padding: 9px 13px; border-radius: 12px;
  font-size: 14px; line-height: 1.45; word-wrap: break-word;
}
.chat-msg.ai {
  align-self: flex-start; background: #f2f3f5; color: #45505b;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  align-self: flex-end; background: var(--bs-teal); color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg.error {
  align-self: flex-start; background: #fff0f0; color: #c00;
  border-bottom-left-radius: 4px; font-size: 12px;
}
.chat-msg.typing {
  align-self: flex-start; background: #f2f3f5; color: #999;
  border-bottom-left-radius: 4px; font-size: 12px;
}

.chat-input-wrap {
  display: flex; align-items: center; gap: 6px;
  padding: 10px max(14px, calc((100% - 760px) / 2));
  border-top: 1px solid #eef0f2;
  flex-shrink: 0;
}
.chat-input-wrap input {
  flex: 1; border: 1px solid #ddd; border-radius: 20px;
  padding: 8px 14px; font-size: 13px; outline: none; transition: 0.2s;
}
/* iOS Safari auto-zooms any focused input under 16px — bump on touch devices only */
@media (pointer: coarse) {
  .chat-input-wrap input { font-size: 16px; }
}
.chat-input-wrap input:focus { border-color: var(--bs-teal); }
.chat-send-btn {
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: var(--bs-teal); color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.2s; flex-shrink: 0;
}
.chat-send-btn:hover { background: #0085A1; }

body.dark-mode .chat-popup { background: #2a2d33; }
body.dark-mode .chat-msg.ai { background: #3a3d43; color: #e0e0e0; }
body.dark-mode .chat-input-wrap { border-top-color: #444; }
body.dark-mode .chat-input-wrap input { background: #3a3d43; border-color: #555; color: #e0e0e0; }
body.dark-mode .chat-input-wrap input::placeholder { color: #999; }
body.dark-mode .chat-msg.error { background: #3a2020; color: #f66; }
body.dark-mode .chat-msg.typing { background: #3a3d43; color: #999; }

/* ─── Chat proactive preview ─── */
.chat-preview {
  position: absolute; bottom: 66px; right: 0;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
  pointer-events: none; width: 290px;
}
.chat-preview-bubble {
  background: #fff; border-radius: 14px 14px 2px 14px;
  padding: 10px 14px; font-size: 13px; line-height: 1.45; color: #45505b;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13); max-width: 290px;
  pointer-events: auto; animation: previewIn 0.3s ease;
}
.chat-preview-typing {
  background: #fff; border-radius: 14px 14px 2px 14px;
  padding: 11px 16px; box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  display: flex; gap: 5px; align-items: center;
  animation: previewIn 0.3s ease;
}
.chat-preview-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #bbb;
  animation: previewDot 1.3s infinite;
}
.chat-preview-typing span:nth-child(2) { animation-delay: 0.22s; }
.chat-preview-typing span:nth-child(3) { animation-delay: 0.44s; }
@keyframes previewDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-5px); opacity: 1; }
}
@keyframes previewIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.dark-mode .chat-preview-bubble,
body.dark-mode .chat-preview-typing { background: #2a2d33; color: #e0e0e0; }
body.dark-mode .chat-preview-typing span { background: #666; }

/* Chatbot action: highlight target element */
.chat-highlight {
  animation: chatHighlightPulse 2s ease-out 2;
  box-shadow: 0 0 0 0 rgba(0,171,169,0.6);
}
@keyframes chatHighlightPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,171,169,0.6); }
  35%  { box-shadow: 0 0 0 14px rgba(0,171,169,0.18); }
  70%  { box-shadow: 0 0 0 22px rgba(0,171,169,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,171,169,0); }
}

/* Chatbot action: toast notification */
.chat-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #2a2d33; color: #fff; padding: 10px 18px; border-radius: 8px;
  font-size: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0; pointer-events: none; z-index: 10000;
  transition: opacity 0.25s, transform 0.25s;
}
.chat-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── Audit page ─── */
.audit-kicker {
  display: inline-block; background: rgba(0,171,169,0.1); color: var(--bs-teal);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.audit-pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.audit-pain-item {
  background: rgba(0,171,169,0.05); border-left: 3px solid var(--bs-teal);
  padding: 12px 16px; border-radius: 0 8px 8px 0;
  font-size: 14px; color: #45505b;
}
.audit-step-block { text-align: center; padding: 24px; }
.audit-step-num {
  font-size: 3.5rem; font-weight: 800; color: rgba(0,171,169,0.15); line-height: 1; margin-bottom: 8px;
}
.audit-step-block h4 { font-size: 18px; font-weight: 700; color: #45505b; }
.audit-step-block p { font-size: 14px; color: #728394; }
.audit-paths-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px;
}
.audit-path-item {
  background: #fff; border-radius: 8px; padding: 14px 16px;
  border: 1px solid #eef0f2; font-size: 14px; font-weight: 600; color: #45505b;
  display: flex; align-items: center; gap: 10px;
}
.audit-path-item::before { content: "→"; color: var(--bs-teal); flex-shrink: 0; }
.audit-report-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.audit-report-card {
  background: rgba(0,171,169,0.05); border-left: 3px solid var(--bs-teal);
  padding: 12px 16px; border-radius: 0 8px 8px 0;
  font-size: 14px; color: #45505b;
}
.audit-report-card h4 { font-size: 16px; font-weight: 700; color: var(--bs-teal); margin-bottom: 8px; }
.audit-report-card p { font-size: 14px; color: #45505b; margin: 0; }
.audit-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audit-fit-card { border-radius: 10px; padding: 28px; }
.audit-fit-card.yes { background: rgba(0,171,169,0.07); border: 1px solid rgba(0,171,169,0.2); }
.audit-fit-card.no { background: rgba(231,76,60,0.05); border: 1px solid rgba(231,76,60,0.15); }
.audit-fit-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.audit-fit-card.yes h4 { color: var(--bs-teal); }
.audit-fit-card.no h4 { color: #e74c3c; }
.audit-fit-card ul { list-style: none; padding: 0; margin: 0; }
.audit-fit-card ul li { padding: 6px 0; font-size: 14px; color: #45505b; }
.audit-fit-card.yes ul li::before { content: "\2713  "; color: var(--bs-teal); font-weight: 700; }
.audit-fit-card.no ul li::before { content: "\2715  "; color: #e74c3c; font-weight: 700; }
.audit-bridge { background: var(--color-primary); color: #fff; padding: 60px 0; text-align: center; }
.audit-bridge h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.audit-bridge p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }
.audit-guarantee { background: #f2f3f5; border-radius: 10px; padding: 24px 28px; margin-top: 40px; }
.audit-guarantee h5 { font-size: 15px; font-weight: 700; color: #45505b; margin-bottom: 8px; }
.audit-guarantee p { font-size: 14px; color: #728394; margin: 0; }
.audit-price-card {
  background: #fff; border-radius: 10px; padding: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06); text-align: center;
  border: 1px solid #eef0f2; transition: 0.3s; height: 100%;
}
.audit-price-card:hover { box-shadow: 0 5px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.audit-price-card.featured { border-color: var(--bs-teal); box-shadow: 0 5px 20px rgba(0,171,169,0.15); }
.audit-popular-badge {
  background: var(--bs-teal); color: #fff; font-size: 12px; font-weight: 600;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  display: inline-block; margin-bottom: 15px;
}
.audit-price-card h3 { font-size: 20px; font-weight: 700; color: #45505b; }
.audit-price { font-size: 42px; font-weight: 800; color: var(--bs-teal); line-height: 1; margin: 12px 0 4px; }
.audit-price-unit { font-size: 14px; color: #728394; margin-bottom: 12px; }
.audit-price-card p { font-size: 14px; color: #728394; margin-bottom: 20px; }
.audit-price-card .btn { border-radius: 50px; }
body.dark-mode .audit-kicker { background: rgba(0,171,169,0.2); }
body.dark-mode .audit-pain-item { background: rgba(0,171,169,0.1); color: #ccc; }
body.dark-mode .audit-path-item { background: #2a2d33; border-color: #333; color: #e0e0e0; }
body.dark-mode .audit-report-card { background: rgba(0,171,169,0.1); }
body.dark-mode .audit-report-card p { color: #ccc; }
body.dark-mode .audit-fit-card ul li { color: #e0e0e0; }
body.dark-mode .audit-fit-card.yes { background: rgba(0,171,169,0.12); }
body.dark-mode .audit-fit-card.no { background: rgba(231,76,60,0.1); }
body.dark-mode .audit-price-card { background: #2a2d33; border-color: #333; }
body.dark-mode .audit-price-card h3 { color: #e0e0e0; }
body.dark-mode .audit-price-card p { color: #a0a0a0; }
body.dark-mode .audit-guarantee { background: #22252b; }
body.dark-mode .audit-guarantee h5 { color: #e0e0e0; }
body.dark-mode .audit-guarantee p { color: #a0a0a0; }
body.dark-mode .audit-step-block h4 { color: #e0e0e0; }
body.dark-mode .audit-step-block p { color: #a0a0a0; }
body.dark-mode .audit-bridge { background: #0085A1; }
@media (max-width: 768px) {
  .audit-fit-grid { grid-template-columns: 1fr; }
  .audit-price-card { margin-bottom: 20px; }
}

