/* css/main.css */

/* Top Bar (Zedplus Style) */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact-links {
  display: flex;
  gap: 1.5rem;
}

.top-contact-links a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.top-contact-links a:hover {
  color: var(--accent-yellow);
}

.top-social-links {
  display: flex;
  gap: 1rem;
}

.top-social-links a {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.top-social-links a:hover {
  color: var(--accent-yellow);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.brand-logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-blue);
}

.header-cta .btn {
  border-radius: var(--radius-full);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Hero Section */
.hero-section {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 58, 112, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section h1 {
  color: var(--text-white);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-section p.sub-headline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-yellow);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Grid & Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ======================================
   Mid Section — Redesigned Info Card
   ====================================== */
.mid-info-card {
  background: var(--bg-white);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.mid-info-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 2rem 1.5rem;
}

.mid-info-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mid-info-icon-warning {
  background: #fef3c7;
  color: #d97706;
}

.mid-info-icon-solution {
  background: #d1fae5;
  color: #059669;
}

.mid-info-text {
  flex: 1;
}

.mid-info-label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.mid-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mid-info-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mid-info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
}

.mid-info-list-green li::before {
  background: #059669;
}

.mid-info-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}

.mid-info-divider::before,
.mid-info-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.mid-info-divider span {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ======================================
   3 Steps — Redesigned Cards
   ====================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting lines between steps (desktop) */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 90px;
  left: calc(33.33% - 1rem);
  width: calc(33.33% + 2rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
  z-index: 0;
  opacity: 0.3;
}

.step-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-card-featured {
  border-color: var(--border-light);
  border-width: 1px;
  box-shadow: var(--shadow-sm);
}

.step-card-featured::after {
  display: none;
}

.step-number-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(34, 58, 112, 0.07);
  line-height: 1;
  user-select: none;
}

.step-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 58, 112, 0.08), rgba(34, 58, 112, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
  position: relative;
  z-index: 1;
}

.step-card-featured .step-icon-ring {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.step-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  width: 100%;
  text-align: left;
}

.step-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.step-highlights li:last-child {
  border-bottom: none;
}

.step-highlights li svg {
  color: var(--success);
  flex-shrink: 0;
}

.step-cta {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-blue);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-blue);
  transition: all var(--transition-fast);
  cursor: pointer;
  background: transparent;
  margin-top: auto;
}

.step-cta:hover {
  background: var(--primary-blue);
  color: white;
}

.step-cta-passive {
  border-color: var(--success);
  color: var(--success);
  cursor: default;
}

.step-cta-passive:hover {
  background: transparent;
  color: var(--success);
}

/* ======================================
   FAQ — Star Toggle Button
   ====================================== */

/* Timeline Steps (legacy — kept for other pages) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    justify-content: space-between;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: auto;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    z-index: 0;
  }
  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
}

@media (max-width: 767px) {
  .timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
    z-index: 0;
  }
}

.timeline-step {
  display: flex;
  gap: 2rem;
  position: relative;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  z-index: 1;
}

.timeline-content {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  flex: 1;
}

/* Services Tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}
.services-tabs::-webkit-scrollbar {
  height: 6px;
}
.services-tabs::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}
.services-tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.services-tab-btn.active, .services-tab-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}
.services-tab-content {
  display: none;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  animation: fadeIn 0.3s ease;
}
.services-tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accordion/FAQ */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: white;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(34, 58, 112, 0.25);
  box-shadow: 0 2px 8px rgba(34, 58, 112, 0.06);
}

.faq-question {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
  font-weight: 600;
  font-family: var(--font-headings);
  user-select: none;
  gap: 1rem;
}

.faq-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  padding: 0;
}

.faq-toggle-btn:hover {
  border-color: var(--primary-blue);
  background: rgba(34, 58, 112, 0.05);
  transform: scale(1.1);
}

.faq-plus-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}

.faq-plus-icon::before,
.faq-plus-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-plus-icon::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}

.faq-plus-icon::after {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}

.faq-item.active .faq-toggle-btn {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
}

.faq-item.active .faq-plus-icon::before,
.faq-item.active .faq-plus-icon::after {
  background: white;
}

.faq-item.active .faq-plus-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}


.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 500px;
}

/* Legacy faq-icon (kept for other pages) */
.faq-icon {
  transition: transform var(--transition-normal);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-icon::after {
  content: '+';
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-item.active .faq-icon::after {
  content: '-';
}

/* ======================================
   Footer
   ====================================== */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--accent-yellow);
}

.footer-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.footer a:hover .footer-icon-wrap {
  background: rgba(245, 158, 11, 0.15);
}

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

.footer-serve-list li {
  margin-bottom: 0.75rem;
  color: var(--text-white);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* ======================================
   Responsive
   ====================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: left var(--transition-normal);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card-featured::after {
    top: -11px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   Pricing Page Overhaul Styles
   ====================================== */
.pricing-notice-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 750px;
  text-align: left;
  margin: 2.5rem auto 0 auto;
  backdrop-filter: blur(8px);
}

.pricing-notice-icon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-yellow);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-notice-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-notice-content .notice-highlight {
  font-weight: 700;
  color: var(--accent-yellow);
  font-size: 1.05rem;
}

.pricing-notice-content p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Pricing Interactive Switch/Calculator */
.pricing-calculator-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  background: rgba(34, 58, 112, 0.04);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-light);
}

.toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.25rem 0.75rem;
  transition: color var(--transition-fast);
}

.toggle-label.active-label {
  color: var(--primary-blue);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--accent-yellow);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

/* Pricing Card Refinements */
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 58, 112, 0.25);
}

.pricing-card.pricing-featured {
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.pricing-card.pricing-featured:hover {
  box-shadow: 0 12px 28px rgba(34, 58, 112, 0.15);
}

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.pricing-price {
  font-size: 2.75rem;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--primary-blue);
  margin-top: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: normal;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.25rem;
  flex-grow: 1;
  padding: 0;
}

.pricing-features li {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-features li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.addon-card {
  background: rgba(34, 58, 112, 0.02);
  border: 1.5px dashed rgba(34, 58, 112, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color var(--transition-fast);
}

.addon-card:hover {
  border-color: var(--primary-blue);
}

/* Horizontal Addon Card */
.addon-horizontal-card {
  background: rgba(34, 58, 112, 0.02);
  border: 1.5px dashed rgba(34, 58, 112, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.addon-horizontal-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.addon-content {
  text-align: left;
  flex: 1;
}

.addon-badge {
  display: inline-block;
  background: rgba(34, 58, 112, 0.08);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.addon-title {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-headings);
}

.addon-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.addon-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-md);
  min-width: 180px;
  box-shadow: var(--shadow-sm);
}

.addon-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-headings);
  line-height: 1;
}

.addon-gst {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Horizontal CTA Section */
.pricing-cta-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-cta-text {
  flex: 1;
}

.pricing-cta-button-wrap {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .pricing-cta-horizontal {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .pricing-cta-text h2,
  .pricing-cta-text p {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .addon-horizontal-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .addon-content {
    text-align: center;
  }
  .addon-pricing {
    width: 100%;
  }
}

/* ======================================
   Checklist Page Overhaul Styles
   ====================================== */
.checklist-hero {
  padding: 100px 0;
  background: radial-gradient(circle at top right, rgba(34, 58, 112, 0.05), transparent), var(--bg-light);
}

.checklist-benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.checklist-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 58, 112, 0.15);
}

.checklist-benefit-icon {
  background: rgba(34, 58, 112, 0.05);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-benefit-content {
  flex: 1;
}

.checklist-benefit-title {
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-headings);
}

.checklist-benefit-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Premium Form Container */
.premium-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 5, 16, 0.08);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.premium-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
}

.form-input-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-input-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.premium-form-control {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.premium-form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(34, 58, 112, 0.1);
}

.premium-form-control:focus + .form-input-icon {
  color: var(--primary-blue);
}

/* ======================================
   About & Contact Page Styling
   ====================================== */
.about-trust-section {
  background: var(--bg-light);
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .about-trust-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 58, 112, 0.15);
}

.contact-info-icon {
  background: rgba(34, 58, 112, 0.05);
  color: var(--primary-blue);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-details {
  flex: 1;
}

.contact-info-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
}

.contact-info-value a {
  color: inherit;
  transition: color var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--primary-blue);
}

/* ======================================
   About Us Redesign Layout
   ====================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.about-feature-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 58, 112, 0.15);
}

.about-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 1rem 0;
}

@media (max-width: 480px) {
  .about-stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about-feature-card {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast) !important;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(34, 58, 112, 0.2) !important;
}






