/* ===== GLOBAL ===== */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #212529;
}

/* ===== BOOTSTRAP OVERRIDES ===== */
/* bg-dark → deep navy */
.bg-dark { background-color: #0F172A !important; }

/* text-warning → brand blue (readable on dark bg) */
.text-warning { color: #60A5FA !important; }

/* btn-warning → Teal CTA */
.btn-warning {
  background-color: #1D4ED8 !important;
  border-color: #1D4ED8 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background-color: #1E40AF !important;
  border-color: #1E40AF !important;
  color: #ffffff !important;
}

/* btn-outline-warning → Teal outline */
.btn-outline-warning {
  color: #1D4ED8 !important;
  border-color: #1D4ED8 !important;
  background-color: transparent !important;
}
.btn-outline-warning:hover,
.btn-outline-warning:focus {
  background-color: #1D4ED8 !important;
  border-color: #1D4ED8 !important;
  color: #ffffff !important;
}

/* bg-warning → brand blue (Trust Stats, Silver Pro header) */
.bg-warning { background-color: #2563EB !important; }
.bg-warning .text-dark,
.bg-warning .fw-bold:not(.text-muted) { color: #ffffff !important; }
.bg-warning .opacity-75 { color: rgba(255,255,255,0.8) !important; }

/* border-warning → brand blue */
.border-warning { border-color: #2563EB !important; }

/* bg-warning children — ensure white text & icons */
.bg-warning,
.bg-warning .text-dark,
.bg-warning h1, .bg-warning h2, .bg-warning h3,
.bg-warning h4, .bg-warning h5, .bg-warning h6,
.bg-warning p, .bg-warning i { color: #ffffff !important; }
.bg-warning .text-muted { color: rgba(255,255,255,0.75) !important; }
.bg-warning .btn-dark { background-color: #0F172A !important; border-color: #0F172A !important; color: #ffffff !important; }

/* ===== NAVBAR ===== */
.navbar {
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.brand-icon-wrap {
  width: 32px;
  height: 32px;
  background: #1D4ED8;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.brand-icon-wrap i { color: #ffffff !important; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  border-radius: 6px;
}
.nav-link:hover { color: #60A5FA !important; }
.dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
}
.dropdown-item {
  font-size: 0.875rem;
  transition: background 0.15s;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #020817 0%, #0C1428 45%, #0C2060 100%);
  min-height: 90vh;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-badge {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.35);
  color: #60A5FA;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #60A5FA;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-trust { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }

/* Dashboard Mock */
.hero-dashboard-mock {
  background: #0F172A;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,0.3);
  max-width: 430px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.mock-header { background: #1E293B; border-radius: 14px 14px 0 0; }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mock-body { background: #0F172A; border-radius: 0 0 14px 14px; }
.mock-card {
  background: #1E293B;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mock-chart-bar { background: transparent; }
.bar { border-radius: 3px 3px 0 0; }
.mock-mini-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.mini-fill {
  height: 100%;
  border-radius: 2px;
  opacity: 0.8;
}

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.25);
  color: #1D4ED8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.section-tag-dark {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.35);
  color: #60A5FA;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid #f0f0f0;
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
  border-color: #2563EB;
}
.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #EFF6FF, #BFDBFE);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #1D4ED8;
  transition: transform 0.2s;
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1);
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: #ffffff;
}

/* ===== BOOST EFFICIENCY CARDS ===== */
.boost-card {
  background: #0F172A;
  border: 1px solid rgba(37,99,235,0.2);
  transition: border-color 0.2s, transform 0.2s;
}
.boost-card:hover {
  border-color: rgba(37,99,235,0.55);
  transform: translateY(-3px);
}
.boost-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #60A5FA;
  flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0C1428 0%, #1D4ED8 100%);
}
.cta-bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ===== GST CARDS ===== */
.gst-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f0f0f0;
}
.gst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  border-color: #2563EB;
}
.gst-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #EFF6FF, #BFDBFE);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #1D4ED8;
  transition: transform 0.2s;
}
.gst-card:hover .gst-icon-wrap {
  transform: scale(1.08);
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: #ffffff;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #0F172A;
  border: 1px solid rgba(37,99,235,0.2);
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(37,99,235,0.6);
  transform: translateY(-3px);
}
.quote-mark {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37,99,235,0.15);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== STATS ===== */
.stat-item { padding: 1.5rem 1rem; }
.stat-divider {
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
}

/* ===== WHY CHOOSE US (legacy) ===== */
.why-card { transition: transform 0.2s, box-shadow 0.2s; border: 1px solid #f0f0f0; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important; }
.why-icon-wrap { width: 68px; height: 68px; background: linear-gradient(135deg,#EFF6FF,#BFDBFE); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #1D4ED8; transition: transform 0.2s; }
.why-card:hover .why-icon-wrap { transform: scale(1.08) rotate(-3deg); background: linear-gradient(135deg,#2563EB,#3B82F6); color: #ffffff; }

/* ===== WHY SECTION ENHANCED ===== */
.why-section {
  background: #f4f8ff;
  padding: 88px 0 60px;
  position: relative;
  overflow: hidden;
}
.why-bg-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.why-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
  top: -200px; left: -150px;
}
.why-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.09) 0%, transparent 65%);
  bottom: -150px; right: -100px;
}
.why-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: #1D4ED8; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3);
  padding: 5px 16px; border-radius: 50px;
}
.why-subtitle { color: #64748B; font-size: 0.95rem; margin: 0; }
.why-card {
  border-radius: 20px; padding: 32px 28px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.28s, box-shadow 0.28s;
}
.why-card:hover { transform: translateY(-7px); }
.why-card-teal  { background: #ffffff; border: 1px solid rgba(37,99,235,0.18); box-shadow: 0 4px 20px rgba(37,99,235,0.06); }
.why-card-blue  { background: #ffffff; border: 1px solid rgba(37,99,235,0.18);  box-shadow: 0 4px 20px rgba(37,99,235,0.06); }
.why-card-purple{ background: #ffffff; border: 1px solid rgba(124,58,237,0.18); box-shadow: 0 4px 20px rgba(124,58,237,0.06); }
.why-card-teal:hover  { box-shadow: 0 20px 50px rgba(37,99,235,0.22);  border-color: rgba(37,99,235,0.55); }
.why-card-blue:hover  { box-shadow: 0 20px 50px rgba(37,99,235,0.22);   border-color: rgba(37,99,235,0.55); }
.why-card-purple:hover{ box-shadow: 0 20px 50px rgba(124,58,237,0.22);  border-color: rgba(124,58,237,0.55); }
.why-card-num {
  position: absolute; top: 22px; right: 24px;
  font-size: 2.2rem; font-weight: 900; line-height: 1; opacity: 0.08; color: #1E293B;
  pointer-events: none; user-select: none;
}
.why-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 20px; transition: transform 0.25s;
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(-6deg); }
.why-icon-teal   { background: rgba(37,99,235,0.18); border: 1.5px solid rgba(37,99,235,0.35); color: #1D4ED8; }
.why-icon-blue   { background: rgba(37,99,235,0.18);  border: 1.5px solid rgba(37,99,235,0.35);  color: #60A5FA; }
.why-icon-purple { background: rgba(124,58,237,0.18); border: 1.5px solid rgba(124,58,237,0.35); color: #A78BFA; }
.why-title { font-size: 1.1rem; font-weight: 700; color: #1E293B; margin-bottom: 10px; }
.why-desc  { font-size: 0.86rem; color: #64748B; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.why-divider { height: 1px; background: #E8EFF8; margin-bottom: 16px; }
.why-highlights { display: flex; flex-wrap: wrap; gap: 12px; }
.why-highlights span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: #475569; }
.why-card-teal   .why-highlights i { color: #1D4ED8; }
.why-card-blue   .why-highlights i { color: #60A5FA; }
.why-card-purple .why-highlights i { color: #A78BFA; }
.why-trust-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: #ffffff; border: 1px solid rgba(37,99,235,0.1);
  border-radius: 16px; padding: 18px 32px; margin-top: 52px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.06);
}
.why-trust-item { display: flex; align-items: center; gap: 8px; padding: 6px 28px; color: #475569; font-size: 0.88rem; }
.why-trust-item i { font-size: 1rem; color: #1D4ED8; }
.why-trust-item strong { color: #1E293B; }
.why-trust-divider { width: 1px; height: 30px; background: #E2E8F0; }
@media (max-width: 768px) {
  .why-section { padding: 60px 0 48px; }
  .why-trust-bar { padding: 16px 20px; }
  .why-trust-item { padding: 6px 14px; font-size: 0.82rem; }
  .why-trust-divider { height: 22px; }
}
@media (max-width: 480px) {
  .why-trust-divider { display: none; }
  .why-trust-item { padding: 8px 12px; }
}

/* ===== ABOUT STAT CARDS (legacy) ===== */
.about-stat-card {
  background: #1E293B;
  border: 1px solid rgba(37,99,235,0.2);
  transition: border-color 0.2s;
}
.about-stat-card:hover { border-color: rgba(37,99,235,0.55); }

/* ===== ABOUT SECTION ===== */
.about-section { background: #f4f8ff; padding: 80px 0; position: relative; overflow: hidden; }
.about-bg-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
  top: -150px; right: -150px; pointer-events: none;
}
.about-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37,99,235,0.08) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.about-highlight { color: #1D4ED8; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #1D4ED8; font-size: 0.85rem; font-weight: 700; margin-top: 2px;
}
.about-trust-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.about-trust-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.25);
  color: #1D4ED8; font-size: 0.75rem; font-weight: 600; padding: 5px 13px; border-radius: 50px;
}
.about-trust-pill i { color: #1D4ED8; font-size: 0.8rem; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-new {
  background: #ffffff; border: 1px solid rgba(37,99,235,0.12); border-radius: 18px;
  padding: 26px 20px 22px; text-align: center; position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.about-stat-new::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, transparent 60%); pointer-events: none;
}
.about-stat-new:hover { transform: translateY(-5px); border-color: rgba(37,99,235,0.45); box-shadow: 0 14px 36px rgba(37,99,235,0.14); }
.about-stat-icon-wrap {
  width: 46px; height: 46px; background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #1D4ED8; margin: 0 auto 12px; transition: background 0.2s, transform 0.2s;
}
.about-stat-new:hover .about-stat-icon-wrap { background: rgba(37,99,235,0.25); transform: scale(1.1) rotate(-5deg); }
.about-stat-num { font-size: 2rem; font-weight: 800; color: #2563EB; line-height: 1.1; margin-bottom: 5px; letter-spacing: -0.5px; }
.about-stat-lbl { font-size: 0.78rem; color: #64748B; font-weight: 500; }
.about-stat-featured { background: linear-gradient(145deg, #1E3A8A 0%, #1D4ED8 100%); border-color: transparent; }
.about-stat-featured::before { display: none; }
.about-stat-featured .about-stat-icon-wrap { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: #fff; }
.about-stat-featured .about-stat-num { color: #fff; }
.about-stat-featured .about-stat-lbl { color: rgba(255,255,255,0.78); }
.about-stat-featured:hover { box-shadow: 0 14px 36px rgba(37,99,235,0.4); border-color: transparent; }
.about-stat-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(255,255,255,0.18); color: #fff; font-size: 0.67rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25);
}

/* ===== GST BILLING SECTION ===== */
.gst-section { background: #ffffff; padding: 80px 0; position: relative; overflow: hidden; }
.gst-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #1D4ED8 0%, #2563EB 50%, #1D4ED8 100%);
}
.gst-section::after {
  content: ''; position: absolute; bottom: -120px; right: -120px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%); pointer-events: none;
}
.gst-highlight { color: #1D4ED8; }
.gst-feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.gst-feat-list li { display: flex; gap: 14px; align-items: flex-start; }
.gst-feat-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(37,99,235,0.1); border: 1.5px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #1D4ED8; font-size: 0.95rem; font-weight: 700; margin-top: 1px;
}
.gst-feat-title { font-size: 0.9rem; font-weight: 600; color: #1E293B; line-height: 1.4; }
.gst-feat-sub   { font-size: 0.78rem; color: #64748B; margin-top: 2px; }
.gst-share-row  { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.gst-share-label { font-size: 0.75rem; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.gst-share-badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; border: 1.5px solid; }
.gst-wa { background: rgba(37,211,102,0.07); border-color: rgba(37,211,102,0.35); color: #15803d; }
.gst-em { background: rgba(37,99,235,0.07);  border-color: rgba(37,99,235,0.25);  color: #1D4ED8; }
.gst-sm { background: rgba(37,99,235,0.07); border-color: rgba(37,99,235,0.3);  color: #1D4ED8; }
.gst-invoice-mock {
  background: #fff; border-radius: 20px; border: 1px solid #E2E8F0;
  box-shadow: 0 24px 64px rgba(37,99,235,0.1), 0 4px 16px rgba(0,0,0,0.06);
  padding: 28px; max-width: 460px; margin: 0 auto; position: relative;
}
.gst-invoice-mock::before {
  content: ''; position: absolute; top: 0; left: 28px; right: 28px; height: 4px;
  background: linear-gradient(90deg, #1D4ED8, #2563EB); border-radius: 0 0 6px 6px;
}
.gst-inv-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #F1F5F9; }
.gst-inv-brand  { display: flex; align-items: center; gap: 10px; }
.gst-inv-logo   { width: 40px; height: 40px; background: linear-gradient(135deg, #1D4ED8, #1E3A8A); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.15rem; }
.gst-inv-bname  { font-size: 0.9rem; font-weight: 700; color: #1E293B; }
.gst-inv-gstin  { font-size: 0.64rem; color: #94A3B8; margin-top: 1px; }
.gst-inv-type-badge { background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.28); color: #1D4ED8; font-size: 0.62rem; font-weight: 800; letter-spacing: 1.2px; padding: 4px 10px; border-radius: 6px; }
.gst-inv-meta   { display: flex; justify-content: space-between; background: #F8FAFC; border-radius: 10px; padding: 10px 14px; margin-bottom: 16px; }
.gst-meta-label { display: block; font-size: 0.65rem; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.5px; }
.gst-meta-val   { font-size: 0.8rem; font-weight: 600; color: #334155; }
.gst-inv-table  { margin-bottom: 12px; }
.gst-inv-row    { display: grid; grid-template-columns: 2fr 0.5fr 1fr 1fr; gap: 6px; padding: 8px 0; border-bottom: 1px solid #F1F5F9; font-size: 0.78rem; color: #475569; align-items: center; }
.gst-inv-head   { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #94A3B8; padding-bottom: 8px; }
.gst-inv-row span:not(:first-child) { text-align: right; }
.gst-inv-totals { background: #F8FAFC; border-radius: 10px; padding: 12px 14px; margin-bottom: 18px; }
.gst-tot-row    { display: flex; justify-content: space-between; font-size: 0.78rem; color: #64748B; padding: 3px 0; }
.gst-tot-final  { font-size: 0.95rem; font-weight: 700; color: #1D4ED8; border-top: 1px dashed #CBD5E1; margin-top: 6px; padding-top: 8px; }
.gst-inv-footer { display: flex; justify-content: space-between; align-items: center; }
.gst-paid-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.3); color: #16a34a; font-size: 0.75rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; }
.gst-action-icons { display: flex; gap: 8px; }
.gst-action-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid #E2E8F0; background: #F8FAFC; color: #64748B;
  display: flex; align-items: center; justify-content: center; font-size: 0.82rem; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gst-action-btn:hover { background: #1D4ED8; color: #fff; border-color: #1D4ED8; }

@media (max-width: 768px) {
  .about-section  { padding: 60px 0; }
  .about-stats-grid { gap: 12px; }
  .about-stat-new { padding: 20px 14px 18px; }
  .about-stat-num { font-size: 1.65rem; }
  .gst-section    { padding: 60px 0; }
  .gst-invoice-mock { padding: 20px 16px; }
}
/* ===== FEATURE SECTIONS (alternating) ===== */
.feature-illus-wrap {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #EFF6FF, #BFDBFE);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(37,99,235,0.2);
}
.feature-illus-dark {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(37,99,235,0.05));
  border: 1px solid rgba(37,99,235,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.feature-illus-icon {
  font-size: 5rem;
  color: #1D4ED8;
}
.feature-illus-dark .feature-illus-icon { color: #60A5FA; }

/* ===== FEATURE ROW CARDS (legacy) ===== */
.frow-card { border: 1px solid #ebebeb; transition: transform 0.2s, box-shadow 0.2s; }
.frow-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1) !important; }
.frow-card-featured { background: #0F172A; border: 1px solid rgba(37,99,235,0.35); }
.frow-card-featured h5, .frow-card-featured p { color: #e0e0e0 !important; }
.frow-card-featured .check-list li { color: #cdd5dc; border-color: rgba(255,255,255,0.07); }
.frow-icon-wrap { width: 52px; height: 52px; background: linear-gradient(135deg,#EFF6FF,#BFDBFE); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #1D4ED8; }
.frow-icon-featured { background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3); color: #60A5FA; }
.frow-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #1D4ED8; background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2); padding: 2px 10px; border-radius: 50px; }
.frow-tag-featured { color: #60A5FA; background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.35); }

/* ===== MORE FEATURES SECTION ===== */
.mf-section {
  background: #f4f8ff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mf-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #1D4ED8 0%, #2563EB 50%, #1D4ED8 100%);
}
.mf-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Card shell */
.mf-card {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.mf-card:not(.mf-card-featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.35);
}
.mf-card-accent {
  height: 4px;
  background: linear-gradient(90deg, #1D4ED8, #2563EB);
  flex-shrink: 0;
}
.mf-card-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Featured card */
.mf-card-featured {
  background: linear-gradient(160deg, #0C1E3A 0%, #1D4ED8 45%, #1E40AF 100%);
  border-color: transparent;
  box-shadow: 0 20px 55px rgba(37,99,235,0.3);
}
.mf-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(37,99,235,0.4);
}
.mf-popular-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 10px; border-radius: 50px;
}

/* Icon */
.mf-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #EFF6FF, #BFDBFE);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; color: #1D4ED8;
  margin-bottom: 18px;
  transition: transform 0.25s;
}
.mf-card:not(.mf-card-featured):hover .mf-icon-wrap { transform: scale(1.1) rotate(-6deg); }
.mf-icon-featured {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* Tag */
.mf-tag {
  display: inline-block;
  font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #1D4ED8; background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}
.mf-tag-featured { color: rgba(255,255,255,0.95); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }

/* Text */
.mf-title { font-size: 1.05rem; font-weight: 700; color: #1E293B; margin-bottom: 8px; line-height: 1.4; }
.mf-title-featured { color: #fff; }
.mf-desc { font-size: 0.85rem; color: #64748B; margin-bottom: 20px; line-height: 1.65; }
.mf-desc-featured { color: rgba(255,255,255,0.78); }

/* Feature list */
.mf-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 0; flex: 1;
}
.mf-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: #475569;
  padding: 9px 0; border-bottom: 1px solid #F1F5F9;
}
.mf-list li:last-child { border-bottom: none; }
.mf-list li i { color: #1D4ED8; font-size: 0.85rem; flex-shrink: 0; }
.mf-list-featured li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.1); }
.mf-list-featured li i { color: rgba(255,255,255,0.85); }

/* Buttons */
.mf-btn-outline {
  display: inline-flex; align-items: center;
  font-size: 0.82rem; font-weight: 600; color: #1D4ED8;
  border: 1.5px solid rgba(37,99,235,0.35); background: rgba(37,99,235,0.04);
  padding: 8px 18px; border-radius: 50px; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.mf-btn-outline:hover { background: #1D4ED8; color: #fff; border-color: #1D4ED8; }
.mf-btn-featured {
  display: inline-flex; align-items: center;
  font-size: 0.82rem; font-weight: 700; color: #1D4ED8;
  background: #ffffff; border: none;
  padding: 9px 20px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s, color 0.2s, background 0.2s;
  align-self: flex-start;
}
.mf-btn-featured:hover { background: #f0fdf9; color: #065f5a; box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

@media (max-width: 768px) {
  .mf-section { padding: 60px 0; }
  .mf-card-body { padding: 22px 20px 22px; }
}

/* ===== CHECK LISTS ===== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}
.check-list li:last-child { border-bottom: none; }

.check-list-dark {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list-dark li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #cdd5dc;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ===== TESTIMONIALS 3D COVERFLOW ===== */
.cf-section {
  background: linear-gradient(160deg, #080D1A 0%, #0F172A 60%, #0A1525 100%);
  padding: 80px 0 90px;
  overflow: hidden;
  position: relative;
}
/* Subtle radial glow behind the center card */
.cf-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Heading */
.cf-heading {
  text-align: center;
  margin-bottom: 60px;
}
.cf-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #1D4ED8;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.cf-heading h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #F1F5F9;
  margin: 0 0 10px;
  line-height: 1.25;
}
.cf-heading p {
  font-size: 0.95rem;
  color: #94A3B8;
  margin: 0;
}

/* ── Stage: perspective container ── */
.cf-stage {
  perspective: 1200px;
  perspective-origin: 50% 50%;
  overflow: visible;
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Track: holds all cards, centered ── */
.cf-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Card base ── */
.cf-card {
  position: absolute;
  width: 380px;
  min-height: 390px;
  border-radius: 20px;
  padding: 36px 28px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* 3D transition */
  transition:
    transform  0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity    0.55s ease,
    filter     0.55s ease,
    box-shadow 0.55s ease;
  will-change: transform, opacity, filter;
  transform-origin: center center;
  /* Glassmorphism base */
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ── Active (center) card ── */
.cf-card--active {
  background: linear-gradient(145deg, #0F172A 0%, #1E3A8A 40%, #1D4ED8 100%);
  border: 1px solid rgba(37,99,235,0.5);
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.3),
    0 30px 80px rgba(37,99,235,0.35),
    0 10px 30px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── Side cards ── */
.cf-card--side {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* ── Hidden cards ── */
.cf-card--hidden {
  pointer-events: none;
}

/* Quote mark */
.cf-card-quote {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 3.8rem;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.cf-card--active .cf-card-quote { color: rgba(255,255,255,0.12); }
.cf-card--side   .cf-card-quote { color: rgba(255,255,255,0.05); }

/* Avatar */
.cf-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin: 0 auto;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cf-card--active .cf-avatar {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.08), 0 6px 20px rgba(0,0,0,0.4);
}
.cf-card--active:hover .cf-avatar { transform: scale(1.08); }

/* Stars */
.cf-stars { display: flex; gap: 4px; justify-content: center; }
.cf-stars span { font-size: 1rem; color: #FBBF24; }
.cf-card--side .cf-stars span { color: rgba(251,191,36,0.75); }

/* Text */
.cf-text {
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: center;
  flex: 1;
  margin: 0;
}
.cf-card--active .cf-text { color: rgba(255,255,255,0.92); }
.cf-card--side   .cf-text { color: rgba(255,255,255,0.68); }

/* Divider */
.cf-divider { height: 1px; }
.cf-card--active .cf-divider { background: rgba(255,255,255,0.18); }
.cf-card--side   .cf-divider { background: rgba(255,255,255,0.08); }

/* Author */
.cf-author { text-align: center; }
.cf-name {
  font-size: 0.875rem; font-weight: 700; line-height: 1.3;
}
.cf-card--active .cf-name { color: #fff; }
.cf-card--side   .cf-name { color: rgba(255,255,255,0.82); }
.cf-role { font-size: 0.75rem; margin-top: 3px; }
.cf-card--active .cf-role { color: rgba(255,255,255,0.55); }
.cf-card--side   .cf-role { color: rgba(255,255,255,0.50); }

/* ── Controls row ── */
.cf-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

/* Arrows */
.cf-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,99,235,0.45);
  background: rgba(37,99,235,0.08);
  color: #1D4ED8;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.cf-arrow:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

/* Dots */
.cf-dots { display: flex; gap: 8px; align-items: center; }
.cf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.25s, width 0.3s, border-radius 0.3s;
}
.cf-dot.active {
  background: #1D4ED8;
  width: 28px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cf-stage { height: 440px; }
  .cf-card  { width: 340px; min-height: 370px; padding: 30px 22px 26px; }
  .cf-heading h2 { font-size: 1.75rem; }
}
@media (max-width: 600px) {
  .cf-section { padding: 56px 0 64px; }
  .cf-heading h2 { font-size: 1.4rem; }
  .cf-stage { height: 460px; }
  .cf-card  { width: calc(100vw - 80px); min-height: 380px; padding: 28px 20px 24px; }
  .cf-arrow { width: 40px; height: 40px; }
}

/* ===== PAGE HERO (pricing, contact) ===== */
.page-hero {
  background: linear-gradient(135deg, #080D1A 0%, #0F172A 60%, #0A1525 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: #1D4ED8; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3);
  padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 800; color: #F1F5F9; margin: 0 0 12px; }
.page-hero p { font-size: 1rem; color: #94A3B8; margin: 0; }
.page-breadcrumb { display: flex; align-items: center; gap: 6px; justify-content: center; margin-bottom: 20px; }
.page-breadcrumb a { font-size: 0.78rem; color: #64748B; text-decoration: none; }
.page-breadcrumb a:hover { color: #1D4ED8; }
.page-breadcrumb span { font-size: 0.78rem; color: #475569; }
.page-breadcrumb i { font-size: 0.6rem; color: #475569; }

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: #f4f8ff;
  padding: 80px 0 96px;
  position: relative;
}
.pricing-section-heading { text-align: center; margin-bottom: 56px; }
.pricing-section-heading h2 { font-size: 2rem; font-weight: 800; color: #1E293B; margin: 12px 0 10px; }
.pricing-section-heading p { font-size: 0.95rem; color: #64748B; margin: 0; }

.pc-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.1);
  box-shadow: 0 4px 20px rgba(37,99,235,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
  height: 100%;
}
.pc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(37,99,235,0.12); }
.pc-card-featured {
  border: 2px solid rgba(37,99,235,0.4);
  box-shadow: 0 8px 32px rgba(37,99,235,0.14);
}
.pc-card-featured:hover { box-shadow: 0 20px 56px rgba(37,99,235,0.22); }
.pc-card-dark {
  background: linear-gradient(160deg, #0d1e38 0%, #0F172A 100%);
  border: 1px solid rgba(37,99,235,0.25);
}
.pc-card-dark:hover { box-shadow: 0 20px 56px rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.5); }

.pc-header { padding: 28px 28px 22px; text-align: center; position: relative; }
.pc-header-featured { background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 55%, #1D4ED8 100%); }
.pc-plan-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pc-card:not(.pc-card-dark):not(.pc-card-featured) .pc-plan-name { color: #1E293B; }
.pc-card-featured .pc-plan-name,
.pc-card-dark .pc-plan-name { color: #F1F5F9; }
.pc-price { font-size: 2.5rem; font-weight: 800; line-height: 1.1; }
.pc-card:not(.pc-card-dark):not(.pc-card-featured) .pc-price { color: #1D4ED8; }
.pc-card-featured .pc-price { color: #fff; }
.pc-card-dark .pc-price { color: #60A5FA; }
.pc-price-gst { font-size: 0.78rem; margin-top: 4px; }
.pc-card:not(.pc-card-dark):not(.pc-card-featured) .pc-price-gst { color: #64748B; }
.pc-card-featured .pc-price-gst { color: rgba(255,255,255,0.65); }
.pc-card-dark .pc-price-gst { color: #94A3B8; }
.pc-users-pill {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px; margin-top: 10px;
}
.pc-card:not(.pc-card-dark):not(.pc-card-featured) .pc-users-pill { background: rgba(37,99,235,0.1); color: #1D4ED8; border: 1px solid rgba(37,99,235,0.2); }
.pc-card-featured .pc-users-pill { background: rgba(255,255,255,0.18); color: #fff; }
.pc-card-dark .pc-users-pill { background: rgba(37,99,235,0.18); color: #93C5FD; border: 1px solid rgba(37,99,235,0.25); }
.pc-popular-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  background: #1D4ED8; color: #fff; padding: 4px 10px; border-radius: 50px;
}
.pc-divider { height: 1px; margin: 0 28px; }
.pc-card:not(.pc-card-dark):not(.pc-card-featured) .pc-divider { background: #E8EFF8; }
.pc-card-featured .pc-divider { background: rgba(255,255,255,0.15); }
.pc-card-dark .pc-divider { background: rgba(255,255,255,0.1); }
.pc-features { padding: 20px 28px; flex: 1; list-style: none; margin: 0; }
.pc-card-featured .pc-features { background: #ffffff; }
.pc-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; line-height: 1.55; padding: 5px 0;
}
.pc-card:not(.pc-card-dark) .pc-features li { color: #475569; }
.pc-card-dark .pc-features li { color: #CBD5E1; }
.pc-features li.pc-no { opacity: 0.5; }
.pc-features li i.pc-check { color: #1D4ED8; flex-shrink: 0; margin-top: 2px; }
.pc-card-dark .pc-features li i.pc-check { color: #60A5FA; }
.pc-features li i.pc-cross { color: #F87171; flex-shrink: 0; margin-top: 2px; }
.pc-footer { padding: 20px 28px 28px; }
.pc-card-featured .pc-footer { background: #ffffff; }
.pc-btn {
  display: block; width: 100%; padding: 13px;
  border-radius: 12px; font-size: 0.88rem; font-weight: 700;
  text-align: center; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer;
}
.pc-btn:hover { transform: translateY(-2px); }
.pc-btn-teal { background: linear-gradient(135deg, #1D4ED8, #1E40AF); color: #fff !important; box-shadow: 0 4px 16px rgba(37,99,235,0.28); }
.pc-btn-teal:hover { box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.pc-btn-outline { background: transparent; color: #1D4ED8 !important; border: 1.5px solid rgba(37,99,235,0.4); }
.pc-btn-outline:hover { background: rgba(37,99,235,0.06); }
.pc-btn-blue { background: linear-gradient(135deg, #2563EB, #1d4ed8); color: #fff !important; box-shadow: 0 4px 16px rgba(37,99,235,0.28); }
.pc-btn-blue:hover { box-shadow: 0 8px 24px rgba(37,99,235,0.4); }

/* Pricing FAQ / trust strip */
.pricing-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  margin-top: 52px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,0.08);
  box-shadow: 0 4px 20px rgba(37,99,235,0.05);
}
.pricing-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #475569; }
.pricing-trust-item i { font-size: 1rem; color: #1D4ED8; }
.pricing-trust-item strong { color: #1E293B; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: #f4f8ff; padding: 80px 0; }

.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,0.09);
  box-shadow: 0 2px 12px rgba(37,99,235,0.05);
  margin-bottom: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info-item:hover { box-shadow: 0 6px 20px rgba(37,99,235,0.1); transform: translateX(3px); }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.contact-icon-teal { background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.22); color: #1D4ED8; }
.contact-icon-blue { background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.22); color: #2563EB; }
.contact-icon-purple { background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.22); color: #7C3AED; }
.contact-info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #94A3B8; margin-bottom: 3px; }
.contact-info-value { font-size: 0.92rem; font-weight: 600; color: #1E293B; text-decoration: none; display: block; }
a.contact-info-value:hover { color: #1D4ED8; }
.contact-info-sub { font-size: 0.77rem; color: #64748B; margin-top: 2px; }

.contact-why-box {
  background: linear-gradient(160deg, #0d1e38 0%, #0F172A 100%);
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,0.22);
  padding: 24px 24px 22px;
  margin-top: 4px;
}
.contact-why-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #1D4ED8; margin-bottom: 14px; }
.contact-why-list { list-style: none; margin: 0; padding: 0; }
.contact-why-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.83rem; color: #CBD5E1; padding: 5px 0; }
.contact-why-list li i { color: #1D4ED8; margin-top: 2px; flex-shrink: 0; }

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.09);
  box-shadow: 0 8px 32px rgba(37,99,235,0.07);
  padding: 36px;
}
@media (max-width: 576px) { .contact-form-card { padding: 24px 20px; } }
.contact-form-title { font-size: 1.3rem; font-weight: 800; color: #1E293B; margin-bottom: 4px; }
.contact-form-sub { font-size: 0.84rem; color: #64748B; margin-bottom: 24px; }
.contact-form-card .form-label { font-size: 0.75rem; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid #E2E8F0; border-radius: 10px;
  font-size: 0.88rem; color: #1E293B; padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  outline: none;
}
.contact-submit-btn {
  background: linear-gradient(135deg, #1D4ED8, #1E40AF);
  color: #fff; border: none; border-radius: 12px;
  padding: 14px; font-size: 0.92rem; font-weight: 700;
  width: 100%; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.28);
}
.contact-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }


/* ===== GREEN BUTTON OVERRIDES (theme: buttons remain teal/green) ===== */
.btn-warning {
  background-color: #0d9488 !important;
  border-color: #0d9488 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background-color: #0f766e !important;
  border-color: #0f766e !important;
  color: #ffffff !important;
}
.btn-outline-warning {
  color: #0d9488 !important;
  border-color: #0d9488 !important;
  background-color: transparent !important;
}
.btn-outline-warning:hover,
.btn-outline-warning:focus {
  background-color: #0d9488 !important;
  border-color: #0d9488 !important;
  color: #ffffff !important;
}
.pc-btn-teal {
  background: linear-gradient(135deg, #0d9488, #0f766e) !important;
  box-shadow: 0 4px 16px rgba(13,148,136,0.28) !important;
}
.pc-btn-teal:hover { box-shadow: 0 8px 24px rgba(13,148,136,0.4) !important; }
.pc-btn-outline {
  color: #0d9488 !important;
  border: 1.5px solid rgba(13,148,136,0.4) !important;
  background: transparent !important;
}
.pc-btn-outline:hover { background: rgba(13,148,136,0.06) !important; }
.contact-submit-btn {
  background: linear-gradient(135deg, #0d9488, #0f766e) !important;
  box-shadow: 0 4px 16px rgba(13,148,136,0.28) !important;
}
.contact-submit-btn:hover { box-shadow: 0 8px 24px rgba(13,148,136,0.4) !important; }
.mf-btn-outline {
  color: #0d9488 !important;
  border: 1.5px solid rgba(13,148,136,0.35) !important;
  background: rgba(13,148,136,0.04) !important;
}
.mf-btn-outline:hover {
  background: #0d9488 !important;
  color: #fff !important;
  border-color: #0d9488 !important;
}
.gst-action-btn:hover {
  background: #0d9488 !important;
  color: #fff !important;
  border-color: #0d9488 !important;
}
