/* =====================
   GLOBAL
======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}


a{
  text-decoration: none !important;
}


/* =====================TOP BAR======================== */
.ss-top-bar {
  padding: 8px 0;
  font-size: 0.9rem;
}

.ss-top-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ss-top-bar .list-unstyled {
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
}

.ss-top-bar .list-unstyled li {
  margin: 0;
}

.ss-top-bar .list-unstyled a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.ss-top-bar .list-unstyled a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .ss-top-bar {
    text-align: center;
  }
  .ss-top-bar p {
    justify-content: center;
  }
  .ss-top-bar .list-unstyled {
    justify-content: center;
  }
}

/* =====================NAVBAR======================== */

.ss-navbar {
  background-color: #000365 !important;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* =====================HERO SECTION======================== */

.hero-section {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2b6e 60%, #1a3a8f 100%);
  padding: 50px 70px;
  display: flex;
  align-items: center;
}

/* Left */
.hero-left {
  padding-right: 40px;
}

.hero-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 0.97rem;
  color: #b0c4de;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-download {
  background-color: #f5a623;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-download:hover {
  background-color: #d48b0e;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-demo {
  background-color: #28a745;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-demo:hover {
  background-color: #1e7e34;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right: Form Card */
.hero-right {
  display: flex;
  justify-content: center;
}

.hero-form-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 32px 36px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.form-note {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 18px;
}

.required-star {
  color: #e00;
  font-weight: 700;
}

.hero-form-card label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.hero-form-card .form-control {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background-color: #f7f7f7;
  font-size: 0.9rem;
  padding: 10px 12px;
  transition: border-color 0.25s ease;
}

.hero-form-card .form-control:focus {
  border-color: #1a73e8;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.hero-form-card .form-check-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
}

.btn-submit {
  background-color: #0a1f44;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 12px 36px;
  border-radius: 6px;
  border: none;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1a73e8;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 50px;
    min-height: auto;
  }

  .hero-left {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-subtext {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* =====================
   BRAND STRIP
======================== */
.brand-strip {
  background: #ffffff;
  padding: 40px 0 30px;
  border-bottom: 1px solid #eef0f5;
}

.brand-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.brand-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-icon-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #555;
}

.brand-icon {
  font-size: 2rem;
  padding: 14px;
  border-radius: 12px;
  background: #f4f6ff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tally-icon {
  color: #0a1f44;
}

.pdf-icon {
  color: #e53935;
}

.bank-icon {
  color: #1a73e8;
}

.laptop-icon {
  color: #43a047;
}

.fb-icon {
  color: #1877f2;
}

.ig-icon {
  color: #c2185b;
}

.report-icon {
  color: #f57c00;
}

.desk-icon {
  color: #6a1b9a;
}

.brand-arrow {
  font-size: 1.2rem;
  color: #1a73e8;
  margin: 0 4px;
  margin-bottom: 20px;
}

.brand-tagline {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a1f44;
}

/* =====================
   AUTOMATION DATA ENTRY
======================== */
.section-automation-entry {
  padding: 90px 0;
  background: #f0f4ff;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #1a73e8;
  border-radius: 2px;
}

.ae-label {
  display: inline-block;
  background: #dbeafe;
  color: #1a73e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.ae-intro {
  font-size: 0.92rem;
  color: #667;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Feature List */
.ae-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ae-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(10, 31, 68, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ae-feature-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(26, 115, 232, 0.14);
}

.ae-icon-wrap {
  background: #e8f0fe;
  color: #1a73e8;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ae-feature-list li strong {
  font-size: 0.9rem;
  color: #0a1f44;
  display: block;
  margin-bottom: 2px;
}

.ae-feature-list li span {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
}

.ae-link {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #1a73e8;
}

.ae-link:hover {
  color: #0a1f44;
  border-color: #0a1f44;
}

/* Right: Data Flow */
.ae-flow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 10px;
}

/* Source Cards */
.ae-sources {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.ae-source-card {
  background: #fff;
  border: 2px solid #dbeafe;
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ae-source-card:hover {
  border-color: #1a73e8;
  transform: translateY(-4px);
}

.ae-source-card i {
  font-size: 1.8rem;
  color: #1a73e8;
  display: block;
  margin-bottom: 8px;
}

.ae-source-card span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #0a1f44;
  display: block;
}

/* Arrow Flow */
.ae-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 6px 0;
}

.ae-arrow-line {
  width: 2px;
  height: 22px;
  background: linear-gradient(to bottom, #1a73e8, #0a1f44);
  border-radius: 2px;
}

.ae-arrow-label {
  background: #0a1f44;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0;
}

/* Output Card */
.ae-output-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 31, 68, 0.14);
  width: 100%;
  max-width: 360px;
  border: 1px solid #dbeafe;
}

.ae-output-header {
  background: #1a73e8;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ae-output-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ae-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f8faff;
  border-radius: 8px;
}

.ae-dr-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
}

.ae-dr-val {
  font-size: 0.82rem;
  font-weight: 700;
}

.ae-val-green {
  color: #2e7d32;
}

.ae-output-footer {
  background: #f0f4ff;
  border-top: 1px solid #dbeafe;
  padding: 10px 20px;
  font-size: 0.76rem;
  color: #555;
  text-align: center;
}

.ae-output-footer i {
  color: #1a73e8;
}

/* =====================
   AUTOMATION ACCOUNTING
======================== */
.section-auto-accounting {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b6e 0%, #0a1f44 100%);
}

.section-title-white {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.section-title-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f5a623;
  border-radius: 2px;
}

.aa-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.aa-feature-list li {
  color: #b0c4de;
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.aa-feature-list li i {
  color: #1a73e8;
  font-size: 1.1rem;
  width: 20px;
}

.btn-know-more {
  background: #f5a623;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 25px;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-know-more:hover {
  background: #d48b0e;
  color: #fff;
  transform: translateY(-2px);
}

.aa-right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.aa-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aa-badge i {
  color: #4caf50;
}

.aa-laptop-mockup {
  position: relative;
  margin-top: 10px;
}

.aa-check-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* =====================
   WELCOME TO SHINE STACKS
======================== */
.section-welcome {
  padding: 80px 0;
  background: #ffffff;
}

.welcome-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.welcome-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #1a73e8;
  border-radius: 2px;
}

.welcome-highlight-box {
  background: #e8f0fe;
  border-left: 4px solid #1a73e8;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  color: #0a1f44;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}

.welcome-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.welcome-list li {
  font-size: 0.9rem;
  color: #555;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome-list li i {
  color: #1a73e8;
}

.btn-contact-us {
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 25px;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-contact-us:hover {
  background: #0a1f44;
  color: #fff;
  transform: translateY(-2px);
}

/* Hex Grid */
.hex-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}

.hex-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.hex-row-middle {
  margin: -8px 0;
}

.hex-item {
  width: 110px;
  height: 110px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  gap: 6px;
  cursor: default;
  transition: transform 0.3s ease;
}

.hex-item:hover {
  transform: scale(1.08);
}

.hex-item i {
  font-size: 1.4rem;
}

.hex-item span {
  padding: 0 10px;
  line-height: 1.3;
}

.hex-blue {
  background: #1a73e8;
}

.hex-orange {
  background: #f57c00;
}

.hex-red {
  background: #e53935;
}

.hex-center {
  background: #0a1f44;
  width: 130px;
  height: 130px;
  font-size: 0.75rem;
}

.hex-center i {
  font-size: 1.8rem;
}

.hex-green {
  background: #43a047;
}

.hex-purple {
  background: #8e24aa;
}

.hex-teal {
  background: #00897b;
}

/* =====================
   GOOGLE REVIEWS SLIDER
======================== */
.section-reviews {
  padding: 60px 0 70px;
  background: #f5f5f5;
}

.reviews-section-badge {
  display: inline-block;
  background: #3d4ec8;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.reviews-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.reviews-track-container {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Review Card */
.review-card {
  flex: 0 0 calc((100% - 5 * 18px) / 6);
  min-width: 170px;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 16px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

/* Avatar */
.review-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.review-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
}

.review-av-purple { background: #7b1fa2; }
.review-av-blue   { background: #1565c0; }
.review-av-orange { background: #e65100; }
.review-av-green  { background: #2e7d32; }
.review-av-red    { background: #c62828; }
.review-av-teal   { background: #00695c; }

.review-google-badge {
  position: absolute;
  bottom: -2px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.review-google-badge .fa-google {
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 2px;
  line-height: 1.3;
}

.review-ago {
  font-size: 0.76rem;
  color: #888;
  margin: 0 0 6px;
}

.review-stars {
  color: #f5a623;
  font-size: 0.8rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.review-verified {
  color: #1a73e8;
  font-size: 0.85rem;
  margin-left: 2px;
}

.review-text {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Arrows */
.reviews-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.reviews-arrow:hover {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}

.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 991px) {
  .review-card {
    flex: 0 0 calc((100% - 3 * 18px) / 3);
  }
}

@media (max-width: 575px) {
  .review-card {
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: 140px;
  }
}

/* =====================
   TALLY SUPPORT
======================== */
.section-tally-support {
  padding: 80px 0;
  background: #0a1f44;
}

.ts-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ts-logo-badge {
  background: #1a73e8;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

.ts-tally-label {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}

.ts-heading {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ts-text {
  color: #b0c4de;
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 560px;
}

.btn-ts-contact {
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 25px;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-ts-contact:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-2px);
}

.ts-headset-icon {
  font-size: 8rem;
  color: rgba(26, 115, 232, 0.5);
}

/* =====================
   FOOTER
======================== */
.site-footer {
  background: linear-gradient(135deg, #2b35a0 0%, #0e1b7e 100%);
  padding: 60px 0 0;
}

.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #1a73e8;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9ab0cc;
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a i {
  color: #1a73e8;
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: #9ab0cc;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact li i {
  color: #1a73e8;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #9ab0cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin: 0;
}

/* =====================
   WHATSAPP FLOAT
======================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.1);
}

/* =====================
   RESPONSIVE (ALL SECTIONS)
======================== */
@media (max-width: 991px) {

  .section-title,
  .section-title-white,
  .welcome-title,
  .ts-heading {
    font-size: 1.5rem;
  }

  .ae-left,
  .aa-left,
  .welcome-left,
  .ts-left {
    margin-bottom: 40px;
  }

  .hex-item {
    width: 90px;
    height: 90px;
    font-size: 0.6rem;
  }

  .hex-center {
    width: 110px;
    height: 110px;
  }

  .hex-item i {
    font-size: 1.1rem;
  }

  .ts-headset-icon {
    font-size: 5rem;
  }
}

@media (max-width: 576px) {
  .brand-icons {
    gap: 6px;
  }

  .brand-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    padding: 10px;
  }

  .hex-item {
    width: 78px;
    height: 78px;
    font-size: 0.55rem;
  }

  .hex-center {
    width: 95px;
    height: 95px;
  }
}

/* =====================
   STATS COUNTER
======================== */
.section-stats {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a8f 100%);
  padding: 60px 0;
}

.stat-item {
  position: relative;
  padding: 20px 10px;
}

.stat-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}

.stat-number {
  display: inline;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-plus {
  display: inline;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
}

.stat-label {
  font-size: 0.9rem;
  color: #b0c4de;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* =====================
   HOW IT WORKS
======================== */
.section-how-works {
  padding: 80px 0;
  background: #ffffff;
}

.hiw-label {
  display: inline-block;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.hiw-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.hiw-subtitle {
  color: #667;
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto;
}

.hiw-card {
  background: #f8faff;
  border: 1px solid #e3ebff;
  border-radius: 14px;
  padding: 30px 22px 24px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.hiw-card:hover {
  box-shadow: 0 10px 30px rgba(26, 115, 232, 0.12);
  transform: translateY(-5px);
}

.hiw-step {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a73e8;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
}

.hiw-icon {
  font-size: 2.2rem;
  color: #1a73e8;
  margin: 10px 0 14px;
}

.hiw-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 8px;
}

.hiw-card-text {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0c4de;
  font-size: 1.2rem;
  padding-bottom: 20px;
  flex: 0 0 auto;
}

/* =====================
   FEATURES GRID
======================== */
.section-features {
  padding: 80px 0;
  background: #f0f4ff;
}

.feat-label {
  display: inline-block;
  background: #dbeafe;
  color: #1a73e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.feat-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 6px;
}

.feat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-card:hover {
  box-shadow: 0 8px 28px rgba(10, 31, 68, 0.12);
  transform: translateY(-4px);
}

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.feat-blue   { background: #1a73e8; }
.feat-orange { background: #f57c00; }
.feat-green  { background: #2e7d32; }
.feat-purple { background: #7b1fa2; }
.feat-red    { background: #c62828; }
.feat-teal   { background: #00695c; }

.feat-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1f44;
  margin: 0;
}

.feat-card-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =====================
   PRICING PLANS
======================== */
.section-pricing {
  padding: 80px 0;
  background: #ffffff;
}

.pricing-label {
  display: inline-block;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.pricing-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: #667;
  font-size: 0.92rem;
}

.pricing-card {
  border: 2px solid #e8edf5;
  border-radius: 16px;
  padding: 36px 28px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  background: #fff;
}

.pricing-card:hover {
  box-shadow: 0 12px 36px rgba(10, 31, 68, 0.12);
  transform: translateY(-6px);
  border-color: #1a73e8;
}

.pricing-card-featured {
  border-color: #1a73e8;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-icon {
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 10px;
}

.pricing-plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: #1a73e8;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.87rem;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i.fa-check {
  color: #2e7d32;
  font-size: 0.8rem;
}

.pricing-features li i.fa-times {
  color: #ccc;
  font-size: 0.8rem;
}

.pricing-disabled {
  color: #bbb !important;
}

.btn-pricing-outline {
  border: 2px solid #1a73e8;
  color: #1a73e8;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 25px;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
  display: block;
  text-align: center;
}

.btn-pricing-outline:hover {
  background: #1a73e8;
  color: #fff;
  text-decoration: none;
}

.btn-pricing-solid {
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 25px;
  border: 2px solid #1a73e8;
  transition: background 0.3s ease;
  display: block;
  text-align: center;
}

.btn-pricing-solid:hover {
  background: #0a1f44;
  border-color: #0a1f44;
  color: #fff;
  text-decoration: none;
}

/* =====================
   SINGLE / MULTI PRICING
======================== */
.pricing-toggle {
  margin-top: 20px;
}

.pricing-toggle-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pricing-toggle-tab {
  border: 1px solid #d7e3fb;
  background: #ffffff;
  color: #0a1f44;
  padding: 10px 28px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pricing-toggle-tab.active {
  background: #0b67d1;
  border-color: #0b67d1;
  color: #ffffff;
}

.pricing-toggle-desc {
  text-align: center;
  color: #667;
  font-size: 0.92rem;
  margin: 0 0 22px;
}

.pricing-toggle-sets {
  width: 100%;
}

.pricing-grid {
  margin: 0 -8px;
}

.pricing-set {
  width: 100%;
}

.pricing-plan-card {
  border: 1px solid #e7edf7;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10, 31, 68, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-plan-top {
  padding: 16px 18px 10px;
  /* text-align: center; */
  position: relative;
}

.pricing-plan-period {
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.pricing-plan-price-main {
  font-size: 1.95rem;
  font-weight: 900;
  color: #0a1f44;
  line-height: 1.1;
}

.pricing-plan-gst-text {
  color: #667;
  font-weight: 600;
  margin-top: 6px;
  font-size: 0.88rem;
}

.pricing-plan-old {
  text-decoration: line-through;
  color: #9aa3b2;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.pricing-plan-discount-pill {
  position: absolute;
  top: 6px;
  right: 16px;
  background: #0b67d1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 8px;
  line-height: 1.2;
  z-index: 2;
}

.pricing-plan-discount-pill::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 10px solid #0b67d1;
}

.pricing-plan-effective {
  color: #2b59b7;
  font-weight: 700;
  margin-top: 6px;
  font-size: 0.75rem;
}

.pricing-plan-buy {
  margin: 12px 18px 0;
  background: #f5a623;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  display: block;
  transition: background 0.2s ease;
}

.pricing-plan-buy:hover {
  background: #e48e11;
  color: #ffffff;
  text-decoration: none;
}

.pricing-plan-highlights {
  background: #fbf5e1;
  padding: 12px 18px;
  margin-top: 14px;
}

.pricing-plan-highlight {
  font-size: 0.86rem;
  color: #4b5563;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-plan-highlight-icon {
  color: #2e7d32;
  font-size: 0.62rem;
}

.pricing-plan-what {
  padding: 14px 18px 18px;
  border-top: 1px solid #f0f0f0;
}

.pricing-plan-what-title {
  margin: 0 0 10px;
  font-weight: 800;
  color: #0a1f44;
  font-size: 0.92rem;
}

.pricing-plan-what-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-plan-what-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.84rem;
  color: #1f2937;
}

.pricing-plan-what-list li i {
  color: #2e7d32;
  font-size: 0.9rem;
}

/* =====================
   FAQ
======================== */
.section-faq {
  padding: 80px 0;
  background: #f8faff;
}

.faq-label {
  display: inline-block;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 0;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(10, 31, 68, 0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a1f44;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f4f8ff;
}

.faq-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #1a73e8;
  transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #eef2ff;
}

/* =====================
   CTA BANNER
======================== */
.section-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a73e8 0%, #0a1f44 100%);
}

.cta-inner {
  position: relative;
}

.cta-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}

.btn-cta-primary {
  background: #f5a623;
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 25px;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-cta-primary:hover {
  background: #d48b0e;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 11px 30px;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background 0.3s ease, border-color 0.3s ease;
  display: inline-block;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .cta-right {
    margin-top: 24px;
  }
  .hiw-connector {
    display: none;
  }
}

/* =====================================================
   BUSINESS MODULES PAGE
===================================================== */

/* ── Hero ─────────────────────────────────────────── */
.bm-hero-section {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2b6e 60%, #1a3a8f 100%);
  padding: 70px 0 60px;
  text-align: center;
}

.bm-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.bm-hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.bm-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bm-hero-sub {
  font-size: 1rem;
  color: #b0c4de;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bm-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}

.bm-breadcrumb li {
  color: rgba(255,255,255,0.65);
}

.bm-breadcrumb li a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.bm-breadcrumb li a:hover {
  color: #fff;
}

.bm-breadcrumb li.active {
  color: #f5a623;
  font-weight: 600;
}

.bm-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255,255,255,0.4);
}

/* ── Tab Section ──────────────────────────────────── */
.bm-tabs-section {
  padding: 60px 0 70px;
  background: #f4f6ff;
}

.bm-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.bm-tab-btn {
  background: #ffffff;
  border: 2px solid #dde3f5;
  color: #444;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bm-tab-btn:hover {
  border-color: #1a73e8;
  color: #1a73e8;
  box-shadow: 0 4px 14px rgba(26,115,232,0.14);
}

.bm-tab-btn.active {
  background: #0a1f44;
  border-color: #0a1f44;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(10,31,68,0.22);
}

.bm-tab-count {
  background: #1a73e8;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  line-height: 1.4;
}

.bm-tab-btn.active .bm-tab-count {
  background: #f5a623;
}

/* ── Tab Panels ───────────────────────────────────── */
.bm-tab-panel {
  display: none;
}

.bm-tab-panel.active {
  display: block;
  animation: bmFadeIn 0.3s ease;
}

@keyframes bmFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Items Grid ───────────────────────────────────── */
.bm-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.bm-item-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(10,31,68,0.08);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid #1a73e8;
}

.bm-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(26,115,232,0.16);
}

.bm-item-icon-wrap {
  width: 56px;
  height: 56px;
  background: #e8f0fe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a73e8;
  flex-shrink: 0;
}

.bm-item-body {
  flex: 1;
}

.bm-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 8px;
}

.bm-item-desc {
  font-size: 0.88rem;
  color: #667;
  line-height: 1.65;
  margin: 0;
}

.bm-item-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.bm-btn-learn {
  background: #0a1f44;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.bm-btn-learn:hover {
  background: #1a73e8;
  color: #fff;
  transform: translateX(2px);
}

.bm-btn-demo {
  background: transparent;
  color: #1a73e8;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid #1a73e8;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.bm-btn-demo:hover {
  background: #1a73e8;
  color: #fff;
}

/* ── Empty State ──────────────────────────────────── */
.bm-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #667;
}

.bm-empty-state i {
  font-size: 3rem;
  color: #b0bec5;
  margin-bottom: 18px;
  display: block;
}

.bm-empty-state h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.bm-empty-state p {
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto 24px;
}

/* ── Overview / Why Section ───────────────────────── */
.bm-overview-section {
  padding: 70px 0;
  background: #ffffff;
}

.bm-overview-header {
  margin-bottom: 44px;
}

.bm-overview-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 10px;
}

.bm-overview-header p {
  color: #667;
  font-size: 0.97rem;
  max-width: 480px;
  margin: 0 auto;
}

.bm-why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 14px;
  background: #f4f6ff;
  border: 1px solid #e3e8f7;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bm-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(10,31,68,0.10);
}

.bm-why-icon {
  width: 60px;
  height: 60px;
  background: #0a1f44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #fff;
}

.bm-why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 8px;
}

.bm-why-card p {
  font-size: 0.87rem;
  color: #667;
  margin: 0;
  line-height: 1.6;
}

/* ── CTA ──────────────────────────────────────────── */
.bm-cta-section {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a8f 100%);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.bm-cta-icon {
  font-size: 2.8rem;
  color: #f5a623;
  margin-bottom: 20px;
  display: block;
}

.bm-cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.bm-cta-section p {
  color: #b0c4de;
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 32px;
}

.bm-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bm-btn-primary {
  background: #f5a623;
  color: #0a1f44;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.bm-btn-primary:hover {
  background: #d48b0e;
  color: #fff;
  transform: translateY(-2px);
}

.bm-btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.bm-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 767px) {
  .bm-hero-title { font-size: 1.8rem; }
  .bm-tab-btn   { font-size: 0.83rem; padding: 8px 16px; }
  .bm-items-grid { grid-template-columns: 1fr; }
  .bm-cta-section h2 { font-size: 1.5rem; }
}

/* =====================================================
   INDIVIDUAL ADDON PAGE
===================================================== */

/* ── Hero ─────────────────────────────────────────── */
.ap-hero-section {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2b6e 55%, #1a3a8f 100%);
  padding: 56px 0 50px;
  text-align: center;
  position: relative;
}

.ap-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ap-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.85rem;
}

.ap-breadcrumb li { color: rgba(255,255,255,0.55); }
.ap-breadcrumb li a { color: rgba(255,255,255,0.8); transition: color .2s; }
.ap-breadcrumb li a:hover { color: #fff; }
.ap-breadcrumb li.active { color: #f5a623; font-weight: 600; }
.ap-breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: rgba(255,255,255,0.3); }

.ap-hero-icon {
  width: 76px;
  height: 76px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #f5a623;
  margin: 0 auto 18px;
}

.ap-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.ap-hero-sub {
  font-size: 0.95rem;
  color: #b0c4de;
  margin: 0;
}

/* ── Main Section ─────────────────────────────────── */
.ap-main-section {
  padding: 60px 0 70px;
  background: #f4f6ff;
}

.ap-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e3e8f7;
}

/* ── Description ──────────────────────────────────── */
.ap-description-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(10,31,68,0.07);
  margin-bottom: 28px;
}

.ap-description-text {
  font-size: 0.96rem;
  color: #444;
  line-height: 1.8;
}

/* CKEditor rich-text output on frontend */
.ap-ck-content h1,.ap-ck-content h2,.ap-ck-content h3,
.ap-ck-content h4,.ap-ck-content h5 {
  color: #0a1f44;
  font-weight: 700;
  margin: 18px 0 10px;
}
.ap-ck-content h2 { font-size: 1.35rem; }
.ap-ck-content h3 { font-size: 1.15rem; }
.ap-ck-content p  { margin-bottom: 12px; }
.ap-ck-content ul,.ap-ck-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.ap-ck-content ul li { list-style: disc; margin-bottom: 5px; }
.ap-ck-content ol li { list-style: decimal; margin-bottom: 5px; }
.ap-ck-content a { color: #1a73e8; text-decoration: underline; }
.ap-ck-content blockquote {
  border-left: 4px solid #1a73e8;
  background: #f0f4ff;
  padding: 12px 18px;
  margin: 16px 0;
  border-radius: 0 6px 6px 0;
  color: #555;
  font-style: italic;
}
.ap-ck-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.ap-ck-content table th,
.ap-ck-content table td {
  border: 1px solid #dde3f5;
  padding: 8px 12px;
  text-align: left;
}
.ap-ck-content table th {
  background: #0a1f44;
  color: #fff;
  font-weight: 600;
}
.ap-ck-content table tr:nth-child(even) td { background: #f4f6ff; }
.ap-ck-content hr {
  border: none;
  border-top: 2px solid #e3e8f7;
  margin: 22px 0;
}
.ap-ck-content strong { color: #0a1f44; }
.ap-ck-content img { max-width: 100%; border-radius: 6px; margin: 8px 0; }

/* ── Video ────────────────────────────────────────── */
.ap-video-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(10,31,68,0.07);
  margin-bottom: 28px;
}

.ap-video-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ── Gallery ──────────────────────────────────────── */
.ap-gallery-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(10,31,68,0.07);
  margin-bottom: 28px;
}

.ap-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.ap-gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #eee;
}

.ap-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ap-gallery-item:hover img {
  transform: scale(1.08);
}

.ap-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,31,68,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: #fff;
  font-size: 1.4rem;
}

.ap-gallery-item:hover .ap-gallery-overlay { opacity: 1; }

/* ── Benefits Strip ───────────────────────────────── */
.ap-benefits-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px 28px;
  box-shadow: 0 2px 16px rgba(10,31,68,0.07);
}

.ap-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 80px;
}

.ap-benefit i {
  width: 44px;
  height: 44px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #1a73e8;
}

.ap-benefit span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0a1f44;
  text-align: center;
}

/* ── Inquiry Card ─────────────────────────────────── */
.ap-inquiry-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 36px rgba(10,31,68,0.13);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.ap-inquiry-header {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a8f 100%);
  padding: 28px 28px 22px;
  text-align: center;
  color: #fff;
}

.ap-inquiry-header-icon {
  font-size: 2rem;
  color: #f5a623;
  margin-bottom: 10px;
  display: block;
}

.ap-inquiry-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.ap-inquiry-header p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.ap-inquiry-form {
  padding: 24px 28px;
}

.ap-inquiry-form .form-group {
  margin-bottom: 16px;
}

.ap-inquiry-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.ap-inquiry-form .form-control {
  border: 1.5px solid #d0d8f0;
  border-radius: 6px;
  background: #f7f9ff;
  font-size: 0.9rem;
  padding: 10px 12px;
  transition: border-color 0.25s;
}

.ap-inquiry-form .form-control:focus {
  border-color: #1a73e8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

.ap-inquiry-submit {
  width: 100%;
  background: linear-gradient(135deg, #0a1f44, #1a73e8);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.ap-inquiry-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ap-inquiry-note {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin: 12px 0 0;
}

/* ── Lightbox ─────────────────────────────────────── */
.ap-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.ap-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.ap-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  object-fit: contain;
}

.ap-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

.ap-lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 767px) {
  .ap-hero-title    { font-size: 1.6rem; }
  .ap-inquiry-card  { position: static; }
  .ap-gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .ap-benefits-strip { gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   SHARED STATIC PAGES  (About, Contact, My Account, Policies)
   prefix: sp-
═══════════════════════════════════════════════════════════════ */

/* ── Hero Section ─────────────────────────────────── */
.sp-hero-section {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a8f 100%);
  padding: 72px 0 56px;
  text-align: center;
  color: #fff;
}

.sp-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.sp-breadcrumb {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.85rem;
}

.sp-breadcrumb li { color: rgba(255,255,255,0.6); }
.sp-breadcrumb li a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.sp-breadcrumb li a:hover { color: #fff; }
.sp-breadcrumb li + li::before { content: '/'; margin-right: 6px; }
.sp-breadcrumb li.active { color: #f5a623; font-weight: 600; }

.sp-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #f5a623;
  margin: 0 auto 20px;
}

.sp-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.sp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ── Section Wrapper ──────────────────────────────── */
.sp-section {
  padding: 72px 0;
}

.sp-section-alt {
  background: #f5f7ff;
}

.sp-section-header { margin-bottom: 12px; }

.sp-label {
  display: inline-block;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.sp-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 0;
  line-height: 1.25;
}

/* ── About: Text Block ────────────────────────────── */
.sp-text-block p {
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.sp-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.sp-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.sp-highlight-item i {
  color: #1a73e8;
  font-size: 1rem;
}

/* ── About: Stat Cards ────────────────────────────── */
.sp-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,31,68,0.1);
  border-top: 3px solid #1a73e8;
  transition: transform 0.25s ease;
}

.sp-stat-card:hover { transform: translateY(-4px); }

.sp-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a1f44;
  line-height: 1;
  margin-bottom: 6px;
}

.sp-stat-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

/* ── About: Mission/Vision Cards ─────────────────── */
.sp-mv-card {
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 24px rgba(10,31,68,0.08);
}

.sp-mv-mission {
  background: linear-gradient(135deg, #0a1f44, #1a3a8f);
  color: #fff;
}

.sp-mv-vision {
  background: linear-gradient(135deg, #1a73e8, #0a9ff5);
  color: #fff;
}

.sp-mv-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #f5a623;
  margin: 0 auto 18px;
}

.sp-mv-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sp-mv-card p { opacity: 0.88; line-height: 1.7; margin: 0; }

/* ── About: Value Cards ───────────────────────────── */
.sp-value-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(10,31,68,0.07);
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sp-value-card:hover {
  box-shadow: 0 8px 32px rgba(10,31,68,0.13);
  transform: translateY(-4px);
}

.sp-value-icon {
  width: 56px;
  height: 56px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1a73e8;
  margin: 0 auto 16px;
}

.sp-value-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 8px;
}

.sp-value-card p { font-size: 0.9rem; color: #666; margin: 0; line-height: 1.6; }

/* ── Shared: CTA Section ──────────────────────────── */
.sp-cta-section {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a8f 100%);
  padding: 72px 0;
  color: #fff;
}

.sp-cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.sp-cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}

.sp-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #f5a623;
  color: #0a1f44 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  transition: opacity 0.25s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.sp-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.sp-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}

.sp-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Contact: Cards ───────────────────────────────── */
.sp-contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(10,31,68,0.08);
  height: 100%;
  border-top: 3px solid #1a73e8;
  transition: transform 0.25s ease;
}

.sp-contact-card:hover { transform: translateY(-4px); }

.sp-contact-icon {
  width: 56px;
  height: 56px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1a73e8;
  margin: 0 auto 16px;
}

.sp-contact-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.sp-contact-card p { font-size: 0.9rem; color: #555; margin: 0; line-height: 1.7; }
.sp-contact-card a { color: #1a73e8; font-weight: 500; }
.sp-contact-card a:hover { color: #0a1f44; }

/* ── Contact: Form Card ───────────────────────────── */
.sp-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 36px;
  box-shadow: 0 4px 28px rgba(10,31,68,0.1);
}

.sp-form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 24px;
}

.sp-input {
  border: 1.5px solid #d0d8f0;
  border-radius: 8px;
  background: #f7f9ff;
  font-size: 0.92rem;
  padding: 11px 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.sp-input:focus {
  border-color: #1a73e8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
  outline: none;
}

.sp-submit-btn {
  background: linear-gradient(135deg, #0a1f44, #1a73e8);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s;
  display: inline-flex;
  align-items: center;
}

.sp-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Contact: Map ─────────────────────────────────── */
.sp-map-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,31,68,0.1);
}

/* ── Contact: Call Visual ───────────────────────────── */
.sp-call-visual-card {
  background: linear-gradient(135deg, #0a1f44 0%, #1a73e8 100%);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 24px rgba(10,31,68,0.12);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-call-visual-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 0;
}



.sp-call-visual-illustration img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;

  border-radius: 20px;
}

.sp-call-visual-content {
  text-align: center;
}

.sp-call-visual-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.sp-call-visual-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  margin: 0 0 16px;
  line-height: 1.5;
}

.sp-call-visual-card .sp-social-icons {
  justify-content: center;
  gap: 12px;
}

.sp-call-visual-card .sp-social-link {
  width: 44px;
  height: 44px;
  font-size: 1.05rem;
}

.sp-call-visual-card .sp-social-link:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

@media (max-width: 991px) {
  .sp-call-visual-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .sp-call-visual-illustration img {
    max-width: 220px;
  }
}

/* ── Contact: Social ──────────────────────────────── */
.sp-social-block {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(10,31,68,0.07);
}

.sp-social-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 14px;
}

.sp-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sp-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sp-social-link:hover { transform: translateY(-3px); opacity: 0.88; }
.sp-social-link.facebook  { background: #1877f2; }
.sp-social-link.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sp-social-link.twitter   { background: #1da1f2; }
.sp-social-link.youtube   { background: #ff0000; }
.sp-social-link.linkedin  { background: #0a66c2; }

/* ── My Account: Account Cards ────────────────────── */
.sp-account-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 28px rgba(10,31,68,0.1);
  height: 100%;
  transition: transform 0.25s ease;
}

.sp-account-card:hover { transform: translateY(-4px); }

.sp-account-login { border-top: 4px solid #1a73e8; }
.sp-account-new   { border-top: 4px solid #f5a623; }

.sp-account-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.sp-account-login .sp-account-card-icon { background: #e8f0fe; color: #1a73e8; }
.sp-account-new   .sp-account-card-icon { background: #fff3e0; color: #f5a623; }

.sp-account-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 12px;
}

.sp-account-card p { color: #666; font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; }

.sp-account-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-account-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}

.sp-account-feature i { color: #22c55e; font-size: 0.85rem; }

/* ── My Account: Support Cards ────────────────────── */
.sp-support-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(10,31,68,0.07);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(10,31,68,0.12);
}

.sp-support-card i {
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 14px;
  display: block;
}

.sp-support-card h5 { font-size: 1rem; font-weight: 700; color: #0a1f44; margin-bottom: 8px; }
.sp-support-card p  { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.6; }

/* ── Policy Pages ─────────────────────────────────── */
.sp-policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #f0f4ff;
  border-radius: 10px;
  padding: 14px 18px;
}

.sp-policy-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a73e8;
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid #d0d8f0;
  transition: background 0.2s, color 0.2s;
}

.sp-policy-nav a:hover { background: #1a73e8; color: #fff !important; border-color: #1a73e8; }

.sp-policy-section { margin-bottom: 10px; }

.sp-policy-section .sp-policy-icon {
  width: 52px;
  height: 52px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1a73e8;
  margin-bottom: 18px;
}

.sp-policy-section h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 16px;
}

.sp-policy-section h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f44;
  margin: 20px 0 8px;
}

.sp-policy-section p, .sp-policy-section ul, .sp-policy-section li {
  color: #555;
  line-height: 1.78;
  font-size: 0.94rem;
}

.sp-policy-section ul { padding-left: 20px; }
.sp-policy-section li { margin-bottom: 6px; }
.sp-policy-section strong { color: #0a1f44; }
.sp-policy-section a { color: #1a73e8; font-weight: 500; }

.sp-policy-divider {
  border: none;
  border-top: 1.5px solid #e4eaf8;
  margin: 40px 0;
}

.sp-policy-highlight {
  background: #fff8e8;
  border-left: 4px solid #f5a623;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #7a5200;
  font-size: 0.92rem;
  margin-top: 16px;
}

.sp-policy-highlight i { margin-top: 2px; color: #f5a623; font-size: 1rem; flex-shrink: 0; }

.sp-policy-note {
  background: #f0f4ff;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sp-policy-note i { color: #1a73e8; margin-top: 2px; flex-shrink: 0; }

/* ── Policy: Item Lists ───────────────────────────── */
.sp-policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-policy-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(10,31,68,0.06);
}

.sp-policy-list-item > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: #fff;
}

.sp-eligible > i   { background: #22c55e; }
.sp-not-eligible > i { background: #ef4444; }

.sp-policy-list-item div strong { font-size: 0.95rem; color: #0a1f44; }
.sp-policy-list-item div p { margin: 4px 0 0; font-size: 0.88rem; color: #666; line-height: 1.6; }

/* ── Policy: Process Steps ────────────────────────── */
.sp-process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sp-process-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0a1f44, #1a73e8);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-process-step div strong { font-size: 0.95rem; color: #0a1f44; }
.sp-process-step div p { margin: 4px 0 0; font-size: 0.88rem; color: #666; line-height: 1.65; }

/* ── Policy: Contact Info ─────────────────────────── */
.sp-policy-contact-info {
  background: #f5f7ff;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 12px;
}

.sp-policy-contact-info p {
  margin-bottom: 10px;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sp-policy-contact-info p:last-child { margin-bottom: 0; }
.sp-policy-contact-info a { color: #1a73e8; font-weight: 500; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 991px) {
  .sp-hero-title   { font-size: 2rem; }
  .sp-section-title { font-size: 1.7rem; }
}

@media (max-width: 767px) {
  .sp-hero-section { padding: 48px 0 40px; }
  .sp-hero-title   { font-size: 1.7rem; }
  .sp-section      { padding: 48px 0; }
  .sp-cta-buttons  { flex-direction: column; align-items: center; }
  .sp-form-card    { padding: 24px 20px; }
  .sp-account-card { padding: 28px 20px; }
  .sp-policy-nav   { gap: 6px; }
}


/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE  (prefix: sv-)
═══════════════════════════════════════════════════════════════ */

/* ── Section Sub-heading ──────────────────────────── */
.sv-section-sub {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.7;
}

/* ── Service Cards ────────────────────────────────── */
.sv-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(10,31,68,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid transparent;
}

.sv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,31,68,0.14);
}

.sv-card-blue   { border-top-color: #1a73e8; }
.sv-card-orange { border-top-color: #f5a623; }
.sv-card-green  { border-top-color: #22c55e; }
.sv-card-purple { border-top-color: #8b5cf6; }
.sv-card-teal   { border-top-color: #0ea5e9; }
.sv-card-red    { border-top-color: #ef4444; }

.sv-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.sv-card-blue   .sv-card-icon { background: #e8f0fe; color: #1a73e8; }
.sv-card-orange .sv-card-icon { background: #fff3e0; color: #f5a623; }
.sv-card-green  .sv-card-icon { background: #dcfce7; color: #16a34a; }
.sv-card-purple .sv-card-icon { background: #ede9fe; color: #7c3aed; }
.sv-card-teal   .sv-card-icon { background: #e0f2fe; color: #0284c7; }
.sv-card-red    .sv-card-icon { background: #fee2e2; color: #dc2626; }

.sv-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 12px;
}

.sv-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sv-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sv-feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: #444;
}

.sv-feature-list li i { color: #22c55e; font-size: 0.8rem; }

.sv-card-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a73e8 !important;
  background: #e8f0fe;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.sv-card-btn:hover {
  background: #1a73e8;
  color: #fff !important;
  transform: translateX(3px);
}

/* ── Why Choose Us ────────────────────────────────── */
.sv-why-section {
  background: #f5f7ff;
  padding: 72px 0;
}

.sv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sv-why-item {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 14px rgba(10,31,68,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sv-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(10,31,68,0.11);
}

.sv-why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0a1f44, #1a73e8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.sv-why-item h5 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0a1f44;
  margin: 0 0 6px;
}

.sv-why-item p {
  font-size: 0.86rem;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

/* ── Process Track ────────────────────────────────── */
.sv-process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.sv-process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.sv-process-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0a1f44, #1a73e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(26,115,232,0.35);
}

.sv-process-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, #1a73e8, #0ea5e9);
  z-index: 1;
}

.sv-process-connector.sv-last { display: none; }

.sv-process-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a73e8;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sv-process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 8px;
}

.sv-process-step p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ── Industries ───────────────────────────────────── */
.sv-industries-section {
  background: #f5f7ff;
  padding: 72px 0;
}

.sv-industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.sv-industry-pill {
  background: #fff;
  border: 1.5px solid #d0d8f0;
  color: #333;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.sv-industry-pill i { color: #1a73e8; }

.sv-industry-pill:hover {
  background: #1a73e8;
  border-color: #1a73e8;
  color: #fff !important;
  transform: translateY(-2px);
}

.sv-industry-pill:hover i { color: #fff; }

/* ── CTA icon ─────────────────────────────────────── */
.sv-cta-icon {
  font-size: 2.8rem;
  color: #f5a623;
  display: block;
  margin-bottom: 20px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1199px) {
  .sv-process-track { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .sv-process-connector { display: none; }
}

@media (max-width: 991px) {
  .sv-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .sv-why-grid      { grid-template-columns: 1fr; }
  .sv-process-track { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sv-card          { padding: 28px 20px; }
  .sv-why-item      { padding: 20px 18px; }
}

@media (max-width: 480px) {
  .sv-process-track { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   CRM SERVICES PAGE  (prefix: crm-)
═══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────── */
.crm-hero-section {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2d6b 60%, #0ea5e9 100%);
  padding: 80px 0 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.crm-hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.crm-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: #fff;
}

.crm-shape-1 { width: 420px; height: 420px; top: -120px; right: -80px; }
.crm-shape-2 { width: 260px; height: 260px; bottom: -80px; left: 10%; }
.crm-shape-3 { width: 160px; height: 160px; top: 40%;  left: 38%; }

.crm-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.5);
  color: #f5a623;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.crm-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.crm-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.crm-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.crm-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #f5a623;
  color: #0a1f44 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  transition: opacity 0.25s, transform 0.2s;
}

.crm-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.crm-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.crm-btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.crm-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.crm-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.crm-trust-item i { color: #f5a623; }

/* ── Hero: Mock Dashboard ─────────────────────────── */
.crm-hero-visual { perspective: 1200px; }

.crm-dashboard-mock {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(0,0,0,0.35);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.4s ease;
}

.crm-dashboard-mock:hover { transform: rotateY(0deg) rotateX(0deg); }

.crm-mock-header {
  background: #0a1f44;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crm-mock-dots { display: flex; gap: 6px; }
.crm-mock-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.crm-mock-title { color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 600; }

.crm-mock-body { padding: 18px; }

.crm-mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.crm-mock-stat {
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.crm-ms-blue   { background: #e8f0fe; }
.crm-ms-orange { background: #fff3e0; }
.crm-ms-green  { background: #dcfce7; }
.crm-ms-purple { background: #ede9fe; }

.crm-ms-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a1f44;
  line-height: 1;
  margin-bottom: 4px;
}

.crm-ms-lbl { font-size: 0.65rem; color: #888; font-weight: 500; }

.crm-mock-pipeline { margin-bottom: 16px; }

.crm-mock-pipe-label { font-size: 0.78rem; font-weight: 700; color: #333; margin-bottom: 6px; }

.crm-mock-pipe-track {
  height: 8px;
  background: #e8f0fe;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.crm-mock-pipe-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a73e8, #0ea5e9);
  border-radius: 4px;
}

.crm-mock-pipe-pct { font-size: 0.72rem; color: #1a73e8; font-weight: 600; }

.crm-mock-leads { display: flex; flex-direction: column; gap: 8px; }

.crm-mock-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8faff;
  border-radius: 8px;
  padding: 8px 12px;
}

.crm-mock-lead > div { flex: 1; }
.crm-mock-lead strong { font-size: 0.82rem; color: #0a1f44; display: block; }
.crm-mock-lead small  { font-size: 0.7rem; color: #888; }

.crm-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.crm-av-blue   { background: #1a73e8; }
.crm-av-orange { background: #f5a623; }
.crm-av-green  { background: #22c55e; }

.crm-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
}

.crm-b-hot   { background: #fee2e2; color: #dc2626; }
.crm-b-warm  { background: #fff3e0; color: #d97706; }
.crm-b-close { background: #dcfce7; color: #16a34a; }

/* ── Features Grid ────────────────────────────────── */
.crm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.crm-feat-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 2px 16px rgba(10,31,68,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 3px solid transparent;
}

.crm-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(10,31,68,0.13);
  border-bottom-color: #1a73e8;
}

.crm-feat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.crm-fi-blue   { background: #e8f0fe; color: #1a73e8; }
.crm-fi-orange { background: #fff3e0; color: #f5a623; }
.crm-fi-green  { background: #dcfce7; color: #16a34a; }
.crm-fi-purple { background: #ede9fe; color: #7c3aed; }
.crm-fi-teal   { background: #e0f2fe; color: #0284c7; }
.crm-fi-red    { background: #fee2e2; color: #dc2626; }

.crm-feat-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 8px;
}

.crm-feat-card p { font-size: 0.87rem; color: #666; line-height: 1.68; margin: 0; }

/* ── Tally Integration ────────────────────────────── */
.crm-tally-section {
  background: #f5f7ff;
  padding: 80px 0;
}

.crm-tally-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}

.crm-tally-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(10,31,68,0.1);
  min-width: 160px;
}

.crm-tally-box i { font-size: 2rem; }
.crm-tally-box span { font-size: 0.88rem; font-weight: 700; color: #0a1f44; }

.crm-tally-crm i { color: #1a73e8; }
.crm-tally-tally i { color: #f5a623; }

.crm-tally-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
}

.crm-tally-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  background: #e8f0fe;
  padding: 6px 14px;
  border-radius: 20px;
}

.crm-tally-arrow i { color: #1a73e8; }

.crm-tally-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.crm-tally-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.crm-tp-icon {
  width: 44px; height: 44px;
  background: #e8f0fe;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #1a73e8;
  flex-shrink: 0;
}

.crm-tally-point strong { font-size: 0.95rem; color: #0a1f44; display: block; margin-bottom: 4px; }
.crm-tally-point p { font-size: 0.87rem; color: #666; line-height: 1.65; margin: 0; }

/* ── Pricing Plans ────────────────────────────────── */
.crm-plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(10,31,68,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crm-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(10,31,68,0.13);
}

.crm-plan-featured {
  background: linear-gradient(160deg, #0a1f44 0%, #1a3a8f 100%);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 16px 52px rgba(10,31,68,0.28);
}

.crm-plan-featured:hover { transform: translateY(-13px); }

.crm-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #0a1f44;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.crm-plan-header { text-align: center; margin-bottom: 24px; }

.crm-plan-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  background: rgba(26,115,232,0.12);
  color: #1a73e8;
}

.crm-plan-featured .crm-plan-icon { background: rgba(255,255,255,0.15); color: #f5a623; }

.crm-plan-header h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 6px;
}

.crm-plan-featured .crm-plan-header h4 { color: #fff; }

.crm-plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a1f44;
  line-height: 1;
  margin-bottom: 6px;
}

.crm-plan-price span { font-size: 0.85rem; font-weight: 500; color: #888; }
.crm-plan-featured .crm-plan-price { color: #f5a623; }
.crm-plan-featured .crm-plan-price span { color: rgba(255,255,255,0.55); }

.crm-plan-header p { font-size: 0.83rem; color: #888; margin: 0; }
.crm-plan-featured .crm-plan-header p { color: rgba(255,255,255,0.6); }

.crm-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crm-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: #444;
}

.crm-plan-featured .crm-plan-features li { color: rgba(255,255,255,0.85); }

.crm-plan-features li i { font-size: 0.8rem; }
.crm-plan-features li i.fa-check { color: #22c55e; }
.crm-plan-features li i.fa-times  { color: #ccc; }
.crm-plan-features .crm-plan-na   { opacity: 0.45; }
.crm-plan-featured .crm-plan-features .crm-plan-na { opacity: 0.35; }

.crm-plan-btn {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 0.93rem;
  padding: 13px;
  border-radius: 10px;
  transition: opacity 0.25s, transform 0.2s;
}

.crm-plan-btn:hover { transform: translateY(-2px); opacity: 0.88; }

.crm-plan-btn-outline {
  background: transparent;
  border: 2px solid #d0d8f0;
  color: #0a1f44 !important;
}

.crm-plan-btn-outline:hover { border-color: #1a73e8; color: #1a73e8 !important; }

.crm-plan-btn-primary {
  background: #f5a623;
  color: #0a1f44 !important;
  border: 2px solid #f5a623;
}

/* ── FAQ ──────────────────────────────────────────── */
.crm-faq-section {
  background: #f5f7ff;
  padding: 72px 0;
}

.crm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crm-faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,31,68,0.06);
}

.crm-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1f44;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}

.crm-faq-question.active { color: #1a73e8; }

.crm-faq-chevron {
  font-size: 0.8rem;
  color: #999;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.crm-faq-question.active .crm-faq-chevron {
  transform: rotate(180deg);
  color: #1a73e8;
}

.crm-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.72;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.crm-faq-answer.open {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* ── CTA icon ─────────────────────────────────────── */
.crm-cta-icon {
  font-size: 2.8rem;
  color: #f5a623;
  display: block;
  margin-bottom: 20px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1199px) {
  .crm-features-grid { grid-template-columns: repeat(2, 1fr); }
  .crm-mock-stats    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .crm-hero-title    { font-size: 2rem; }
  .crm-dashboard-mock { transform: none; }
  .crm-plan-featured { transform: none; }
  .crm-plan-featured:hover { transform: translateY(-5px); }
}

@media (max-width: 767px) {
  .crm-hero-section  { padding: 52px 0 48px; }
  .crm-hero-title    { font-size: 1.7rem; }
  .crm-hero-actions  { flex-direction: column; }
  .crm-features-grid { grid-template-columns: 1fr; }
  .crm-feat-card     { padding: 24px 20px; }
}
