:root {
  /* Main theme: mostly white + subtle blue accents */
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.78);

  --brandA: #0ea5e9; /* sky-500 */
  --brandB: #2563eb; /* blue-600 */
  --brandC: #60a5fa; /* blue-400 */
  --brandD: #93c5fd; /* blue-300 */

  --radius-xl: 22px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 600px at 15% -10%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(900px 600px at 80% 0%, rgba(37, 99, 235, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  color: var(--text);
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: -80px;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(14, 165, 233, 0.22), transparent 55%),
    radial-gradient(700px 420px at 80% 15%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(650px 360px at 55% 90%, rgba(96, 165, 250, 0.14), transparent 55%);
  filter: blur(10px);
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.navbar {
  padding: 14px 0;
}

.site-header .nav-link {
  color: rgba(0, 0, 0, 0.68);
  font-weight: 600;
}
.site-header .nav-link.active {
  color: rgba(37, 99, 235, 0.95);
}

/* Ensure navbar text is always visible (light theme) */
.navbar-light .navbar-brand {
  color: var(--text) !important;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.68) !important;
  font-weight: 650;
}
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(37, 99, 235, 0.95) !important;
}

.navbar-light .navbar-nav .nav-link.uppercase-link {
  color: #8c8c8c !important;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}
.navbar-light .navbar-nav .nav-link.uppercase-link.active-cyan,
.navbar-light .navbar-nav .nav-link.uppercase-link:hover {
  color: #00d2ff !important;
}

.btn-cyan {
  background-color: #00d2ff;
  border: 1px solid #00d2ff;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.2s ease-in-out;
}
.btn-cyan:hover {
  background-color: #00baeb;
  border-color: #00baeb;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 210, 255, 0.35);
}

.nav-premium-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: rgba(0, 0, 0, 0.78);
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logo:hover {
  transform: scale(1.05);
}

.brand-wordmark {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-name {
  color: var(--muted);
  font-weight: 500;
}

.btn-glow {
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.18);
  background: linear-gradient(135deg, rgba(14, 165, 233, 1), rgba(37, 99, 235, 1));
  border: none;
}

.btn-glow:hover {
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
  transition: 160ms ease;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 54px 0 22px;
}

.hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--brandA));
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.hero-title {
  margin-top: 18px;
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(90deg, var(--brandA), var(--brandB), var(--brandC));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 14px;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.09);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.22) inset;
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid rgba(37, 99, 235, 0.95);
  border-bottom: 2px solid rgba(37, 99, 235, 0.95);
  transform: rotate(-45deg);
}

.hero-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(37, 99, 235, 0.10);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: rgba(37, 99, 235, 0.95);
  font-weight: 600;
  font-size: 0.92rem;
}

.mini-metric {
  text-align: right;
}

.mini-value {
  font-weight: 800;
  font-size: 1.1rem;
}
.mini-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(37, 99, 235, 0.15), 0 0 40px rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

.about-image-wrapper, .bots-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.about-img, .bots-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img,
.bots-image-wrapper:hover .bots-img {
  transform: scale(1.02);
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 1;
}

.line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.55), transparent);
  opacity: 0.9;
}
.line-1 {
  top: 44%;
}
.line-2 {
  top: 60%;
  background: linear-gradient(90deg, transparent, var(--brandC), transparent);
}

.glow-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brandA);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.14), 0 0 40px rgba(14, 165, 233, 0.24);
}
.dot-1 {
  left: 28%;
  top: 40%;
}
.dot-2 {
  right: 30%;
  top: 58%;
  background: var(--brandC);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.14), 0 0 40px rgba(96, 165, 250, 0.26);
}

.hero-card-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.stat {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.stat-value {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.ticker {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.08);
}
.ticker-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.ticker-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}
.ticker-hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.ticker .text-muted {
  color: var(--muted) !important;
}

.section {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}

.section-head {
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-kicker {
  color: rgba(37, 99, 235, 0.92);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 10px;
  font-size: clamp(24px, 2.7vw, 36px);
}
.section-subtitle {
  margin-top: 12px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08);
}

.about-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.about-text {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.about-highlights {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.10);
}
.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), rgba(14, 165, 233, 0.18));
  border: 1px solid rgba(37, 99, 235, 0.26);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04) inset;
  position: relative;
}
.highlight-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(37, 99, 235, 0.95));
  opacity: 0.35;
}

.highlight-icon.two {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), rgba(37, 99, 235, 0.18));
  border-color: rgba(37, 99, 235, 0.26);
}
.highlight-icon.two::after {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(96, 165, 250, 0.95));
}

.highlight-icon.three {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), rgba(96, 165, 250, 0.16));
  border-color: rgba(96, 165, 250, 0.26);
}
.highlight-icon.three::after {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(37, 99, 235, 0.95));
}

.highlight-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.highlight-desc {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.card.feature-card,
.card.feature-card-alt {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.08);
}

.feature-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(14, 165, 233, 0.16));
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.12);
}
.feature-title {
  font-weight: 900;
}
.feature-sub {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.feature-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.10);
}
.badge-num {
  width: 56px;
  text-align: center;
  padding: 8px 0;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-weight: 900;
}
.feature-item span:last-child {
  color: rgba(15, 23, 42, 0.86);
}

.feature-cta {
  margin-top: 14px;
}

.feature-card-alt {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.05), rgba(37, 99, 235, 0.03));
}

.alt-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.alt-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.alt-value {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.alt-label {
  color: var(--muted);
  font-size: 0.94rem;
}
.alt-badge {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: rgba(15, 23, 42, 0.88);
  font-weight: 800;
}
.alt-text {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card {
  height: 100%;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 14px 45px rgba(37, 99, 235, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.14);
}
.service-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.service-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.service-desc {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}
.service-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(37, 99, 235, 0.95);
  text-decoration: none;
  font-weight: 700;
}
.service-link:hover {
  text-decoration: underline;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), rgba(14, 165, 233, 0.16));
}
.service-icon.one {
  border-color: rgba(37, 99, 235, 0.26);
}
.service-icon.two {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.76), rgba(37, 99, 235, 0.18));
  border-color: rgba(37, 99, 235, 0.26);
}
.service-icon.three {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.76), rgba(96, 165, 250, 0.16));
  border-color: rgba(96, 165, 250, 0.26);
}
.service-icon.four {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.76), rgba(37, 99, 235, 0.16));
  border-color: rgba(37, 99, 235, 0.24);
}
.service-icon.five {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.76), rgba(14, 165, 233, 0.14));
  border-color: rgba(14, 165, 233, 0.26);
}
.service-icon.six {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.76), rgba(14, 165, 233, 0.16));
  border-color: rgba(14, 165, 233, 0.24);
}

.review-card {
  height: 100%;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.review-quote {
  color: var(--text);
  font-weight: 650;
  line-height: 1.55;
}
.review-name {
  margin-top: 12px;
  color: var(--text);
  font-weight: 800;
}
.review-role {
  display: block;
  margin-top: 2px;
  font-weight: 600;
  color: var(--muted);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 40px 0 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.footer-brand {
  font-weight: 900;
}
.footer-copy {
  margin-top: 8px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
}
.footer-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-link {
  color: rgba(37, 99, 235, 0.95);
  font-weight: 750;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Premium footer */
.footer-premium-divider {
  height: 3px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.9), rgba(37, 99, 235, 0.9), rgba(96, 165, 250, 0.9));
}

.footer-brand-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-top: 18px;
}

.footer-brand-left {
  flex: 1;
}

.footer-logo {
  height: 72px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.footer-brand-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.footer-brand-tag {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 210px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: rgba(37, 99, 235, 0.95);
  text-decoration: none;
}
.footer-social-link:hover {
  background: rgba(37, 99, 235, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.footer-col-title {
  font-weight: 950;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-link-muted {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  padding: 6px 0;
}
.footer-link-muted:hover {
  color: var(--brandB);
  text-decoration: underline;
}

.footer-news-text {
  color: var(--muted);
  line-height: 1.6;
}

.footer-newsletter input.form-control {
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.footer-bottom-bar {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-bottom-right {
  display: flex;
  gap: 18px;
}

/* Shared "light card" style for extra homepage sections */
.light-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 14px 45px rgba(37, 99, 235, 0.06);
}

.light-card:hover {
  box-shadow: 0 20px 70px rgba(37, 99, 235, 0.12);
}

.light-icon {
  width: 52px;
  height: 52px;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.86), rgba(14, 165, 233, 0.16));
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.10);
}

.card-title-strong {
  margin-top: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.card-desc-muted {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.table-loyalty {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table-loyalty thead th {
  background: rgba(37, 99, 235, 0.08);
  color: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(37, 99, 235, 0.14) !important;
}

.table-loyalty td {
  color: rgba(0, 0, 0, 0.78);
  border-color: rgba(37, 99, 235, 0.10) !important;
}

/* FAQ accordion tweaks */
.faq .accordion-button {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px !important;
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.06);
}
.faq .accordion-item {
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: transparent;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq .accordion-body {
  color: var(--muted);
  line-height: 1.65;
}

.section-cta {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.10), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 18px 60px rgba(37, 99, 235, 0.08);
}

@media (max-width: 991.98px) {
  .hero-card-bottom {
    grid-template-columns: 1fr;
  }
  .ticker {
    margin-top: 14px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-social {
    margin-top: 16px;
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Font Awesome inside homepage service icons */
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-icon > i {
  font-size: 1.15rem;
  color: rgba(37, 99, 235, 0.92);
}

/* Legacy inner pages: page banner readable on theme background */
.site-main .sub-page-banner .sub-banner-title,
.site-main .sub-page-banner p {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Language switcher in footer */
.footer-lang select.lang-change {
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.95);
  max-width: 100%;
}
