/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffef3;
  color: #242929;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

/* ----- CONTAINER ----- */
.bdc-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
    padding-block: clamp(2.5rem, 8vh, 6rem);
}
.sub-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  padding-block: clamp(1.5rem, 3vh, 3rem);
}

/* ----- TYPOGRAPHY ----- */
h1, h2 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  background: linear-gradient(to right, #FFA163, #F1EDD2 53%, #036B67);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.3em;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

p {
  color: #4a4a4a;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.6;
}

/* Section Header H2 (Consistency with colocation.css) */
.section-header h2 {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #716f60;
  letter-spacing: 2.6px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-header p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #716f60;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* ----- HERO SECTION ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  background-color: #0b1a1f;
  padding-block: clamp(3rem, 8vh, 5rem);
  padding-top: 60px;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,161,99,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,161,99,0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.gradient-move {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,161,99,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(3,107,103,0.25) 0%, transparent 50%);
  filter: blur(60px);
}

.circuit-svg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  background: linear-gradient(to right, #FFA163, #F1EDD2 53%, #036B67);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.3em;
  font-weight: 800;
  line-height: 1.2;
}

.hero-sub {
  margin: 1.2rem 0 2.5rem;
  color: #cbd5e1;
  font-size: clamp(1rem, 3.2vw, 1.4rem);
  line-height: 1.6;
}

.btn-group {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  font-weight: 600;
  border: 1px solid;
  cursor: pointer;
  transition: 0.25s ease;
  background: transparent;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #FFA163;
  color: #0b1a1f;
  border-color: #fcd5a5;
  box-shadow: 0 8px 20px -8px #036B67;
}

.btn-secondary {
  border-color: #FFA163;
  color: #FFA163;
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 25px -10px black;
}

.hero-right {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.glass-card {
  background: rgba(10, 30, 35, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 1.8rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 40px -12px #00000080;
  transition: transform 0.1s ease;
}

.server-illu {
  width: 100%;
  aspect-ratio: 1.2/1;
  background: linear-gradient(145deg, #ffac6b, #d4cdb0, #036B67);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: #0a1e2a;
  border: 2px solid rgba(255,255,240,0.5);
}

/* ----- STICKY SUBNAVBAR ----- */
.sub-navbar {
  background: rgba(255, 255, 243, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(215, 214, 204, 0.5);
  padding-block: 0.75rem;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 60px;
}

.sub-navbar.sticky {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding-block: 0.5rem;
}

.sub-nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  list-style: none;
  align-items: center;
}

.sub-nav-links a {
  text-decoration: none;
  color: #716f60;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sub-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #036B67, #FFA163);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.sub-nav-links a:hover {
  color: #036B67;
}

.sub-nav-links a:hover::after,
.sub-nav-links a.active::after {
  width: 100%;
}

.sub-nav-links a.active {
  color: #036B67;
  font-weight: 700;
}

@media (max-width: 768px) {
  .sub-navbar {
    padding-block: 0.5rem;
  }
  
  .sub-nav-links {
    gap: 1.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .sub-nav-links::-webkit-scrollbar {
    display: none;
  }
  
  .sub-nav-links li {
    white-space: nowrap;
  }
  
  .sub-nav-links a {
    font-size: 0.8rem;
  }
}

/* ----- BILLING SECTION (WHMCS) ----- */
.billing-section {
  background-color: #fffef3;
}

.billing-card {
  background: #fff;
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid #f2f1e3;
}

.promo-badge {
  display: inline-block;
  background: #FCFAEB; /* Soft pink background */
  color: #02413f;      /* Purple text */
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;

}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #716f60;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.billing-desc {
  color: #716f60;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 3rem;
  text-align: center;
}

.billing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-box {
  border-radius: 1.5rem;
  padding: 2.5rem;
  height: 100%;
}

.means-box {
  background-color: #f0f9ff; /* Soft blue */
}

.included-box {
  background-color: #f5f3ff; /* Soft purple */
}

.box-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.check-list, .feature-list-billing {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.2rem;
  color: #4a5568;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38a169;
  font-weight: 900;
  font-size: 1.2rem;
}

.feature-list-billing li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #4a5568;
  font-weight: 500;
  align-items: center;
}

.f-icon {
  color: #805ad5;
  font-size: 1.2rem;
}

/* Bottom Callout */
.billing-callout {
  background: linear-gradient(90deg, #ffa163, #d7863e);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #fff;
  text-align: center;
}

.billing-callout p {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.callout-sub {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ----- FEATURE SECTIONS (Side-by-Side) ----- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: 4rem;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse .feature-content,
.feature-row.reverse .feature-visual {
  direction: ltr;
}

.feature-content {
  padding-right: 1rem;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0f9ff;
  color: #036B67;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #716f60;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.feature-desc {
  color: #716f60;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2d3748;
}

.feature-list li .icon-circle {
  width: 24px;
  height: 24px;
  background: #036B67;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Dashboard Card Visual */
.feature-visual {
  position: relative;
}

.dashboard-card-mockup,
.billing-visual-mockup,
.profit-calculator-mockup,
.build-price-mockup,
.support-status-mockup,
.available-services-mockup {
  background: #fff;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
  width: 100%;
  max-width: 100%; /* Unified max-width based on the 100% White Label card */
  margin-inline: auto;
}

.dashboard-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-title {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.status-badge {
  background: #e6fffa;
  color: #38b2ac;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.brand-item {
  background: #f7fafc;
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: #036B67;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.brand-info span {
  display: block;
}

.brand-name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.brand-status {
  font-size: 0.8rem;
  color: #718096;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
}

.stat-label {
  font-size: 0.8rem;
  color: #718096;
  font-weight: 600;
}

.feature-badge.billing {
  background: #f5f3ff;
  color: #805ad5;
}

.feature-badge.branding {
  background: #f0f9ff;
  color: #036B67;
}

.feature-list li .icon-circle.billing {
  background: #805ad5;
}

.feature-list li .icon-circle.branding {
  background: #036B67;
}

/* Billing Visual Mockup */
.billing-visual-mockup {
  background: #fff;
}

.billing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.billing-item.whmcs {
  background: #fdf2f9;
}

.billing-item.custom {
  background: #f0f9ff;
}

.billing-item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.billing-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.whmcs .billing-icon-box {
  background: #805ad5;
  color: #fff;
}

.custom .billing-icon-box {
  background: #3182ce;
  color: #fff;
}

.billing-item-name {
  font-weight: 700;
  color: #1a1a1a;
}

.billing-status-dot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #718096;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48bb78;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left h1 {
    margin-inline: auto;
  }
  .btn-group {
    justify-content: center;
  }
  .billing-grid {
    grid-template-columns: 1fr;
  }
  .feature-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2.5rem, 5vh, 4rem);
    margin-bottom: clamp(4rem, 8vh, 6rem);
  }
  .feature-row.reverse {
    display: flex;
    flex-direction: column;
  }
  .feature-visual {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .feature-content {
    order: 1;
    padding-right: 0;
    max-width: 100%;
  }
  .feature-list li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .feature-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    margin-bottom: 1rem;
  }
  .feature-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .feature-badge {
    margin-bottom: 1rem;
  }
  .bdc-container {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 768px) {
  .sub-nav-links {
    gap: 1rem;
    overflow-x: auto;
    justify-content: space-around;
    padding-inline: 1rem;
  }
  .sub-nav-links li {
    white-space: nowrap;
  }
  .info-box {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   FEATURE MOCKUP STYLING (Pricing & Flexibility)
   ========================================================================== */

/* Example Breakdown Box */
.example-breakdown-box {
  background: #e6fffa;
  border: 1px solid #b2f5ea;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 2.5rem;
}

.breakdown-title {
  color: #036B67;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.breakdown-list {
  list-style: none;
}

.breakdown-list li {
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #2d3748;
  display: flex;
  justify-content: space-between;
}

.breakdown-list li .highlight {
  color: #036B67;
}

.breakdown-list li.charge-you {
  color: #3182ce;
  border-top: 1px dashed #b2f5ea;
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}

.profit-calculator-mockup {
  background: #fff;
}

.calculator-header {
  margin-bottom: 2rem;
}

.calculator-title {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
}

.calculator-item {
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.calculator-item.regular {
  background: #f7fafc;
}

.calculator-item.reseller {
  background: #fff;
  border: 2px solid #38b2ac;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.calc-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
}

.calculator-item.reseller .calc-value {
  color: #38b2ac;
}

.build-price-mockup {
  background: #fff;
}

.build-header {
  margin-bottom: 2rem;
}

.build-title {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
}

.build-step {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.25rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-num {
  width: 24px;
  height: 24px;
  background: #3182ce;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.step-name {
  font-weight: 700;
  color: #2d3748;
  flex-grow: 1;
}

.step-price {
  font-weight: 800;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.step-sub {
  display: block;
  font-size: 0.8rem;
  color: #718096;
  margin-left: 2.5rem;
  margin-top: 0.2rem;
}

.step-1 {
  background: #f0f9ff;
  border: 1px solid #bee3f8;
}

.step-2 {
  background: #e6fffa;
  border: 1px solid #b2f5ea;
}

.step-2 .step-num {
  background: #38b2ac;
}

.markup-slider {
  margin-top: 1.25rem;
  margin-left: 2.5rem;
  position: relative;
  height: 6px;
  background: #cbd5e0;
  border-radius: 3px;
}

.slider-track {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: #4a5568;
  border-radius: 3px;
}

.slider-thumb {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #4a5568;
  border-radius: 50%;
  border: 3px solid #fff;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 0.6rem;
}

.connector-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #718096;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  font-size: 1.1rem;
}

.step-3 {
  background: #FFA163;
  color: #fff;
  border: 1px solid #fcd5a5;
}

.step-3 .step-header span {
  color: #fff;
}

.step-3 .step-sub {
  color: rgba(255,255,255,0.85);
}

.step-icon {
  font-size: 1rem;
}

.profit-footer {
  margin-top: 1.5rem;
  background: #e6fffa;
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profit-label {
  font-weight: 600;
  color: #4a5568;
  font-size: 0.9rem;
}

.profit-value {
  font-weight: 800;
  color: #38b2ac;
  font-size: 1.2rem;
}

/* Support & Products Badges */
.feature-badge.support {
  background: #f0f4ff;
  color: #4c51bf;
}

.feature-badge.products {
  background: #e6fffa;
  color: #036B67;
}

.feature-list li .icon-circle.support {
  background: #4c51bf;
}

.feature-list li .icon-circle.products {
  background: #036B67;
}

.support-status-mockup {
  background: #fff;
}

.support-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.support-title {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #38a169;
  font-weight: 700;
  font-size: 0.85rem;
}

.status-indicator .dot {
  width: 8px;
  height: 8px;
  background: #38a169;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(56, 161, 105, 0.5);
}

.support-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 400px) {
  .support-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.support-stat-item {
  background: #f7fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.available-services-mockup {
  background: #fff;
}

.services-header {
  margin-bottom: 1.5rem;
}

.services-title {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
}

.services-top-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 400px) {
  .services-top-stats {
    grid-template-columns: 1fr;
  }
}

.service-stat {
  background: #e6fffa;
  border-radius: 1rem;
  padding: 1.2rem;
  text-align: center;
}

.service-stat .stat-value {
  color: #036B67;
  font-size: 1.4rem;
}

.service-stat .stat-label {
  color: #036B67;
  opacity: 0.8;
}

.services-list-mockup {
  list-style: none;
}

.services-list-mockup li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  border-radius: 0.75rem;
  margin-bottom: 0.6rem;
  background: #f7fafc;
  font-weight: 600;
  color: #2d3748;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.services-list-mockup li:hover {
  transform: translateX(5px);
  background: #f0f9ff;
}

.services-list-mockup li .check-icon {
  color: #38b2ac;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
    .check-icon {
  min-width: 20px; /* 🔥 prevents shifting */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   STEPS SECTION STYLING
   ========================================================================== */

.steps-section {
  background-color: #FCFAEB;
  /* padding-bottom: 6rem; */
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #036B67 0%, #02413f 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 35px rgba(3, 107, 103, 0.2);
  position: relative;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.step-desc {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
  font-weight: 500;
}

/* CTA Button */
.steps-cta {
  text-align: center;
  padding-bottom: 2rem;
}

.btn-gradient {
  background: linear-gradient(90deg, #036B67, #FFA163);
  color: #fff;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(3, 107, 103, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(3, 107, 103, 0.4);
  filter: brightness(1.1);
}


/* Responsive Steps */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* ==========================================================================
   COMPARISON TABLE STYLING
   ========================================================================== */

.comparison-section {
  background-color:#02413f;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid #edf2f7;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px; /* Ensures the table doesn't get too squashed */
}

.comparison-table th, 
.comparison-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #edf2f7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-table thead th {
  background-color: #f8fafc;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1rem;
  border-bottom: 2px solid #edf2f7;
}

.comparison-table thead th small {
  display: block;
  font-weight: 500;
  color: #718096;
  margin-top: 0.25rem;
}

.comparison-table .feature-name {
  font-weight: 700;
  color: #1a1a1a;
  background-color: #f8fafc;
  width: 15%;
}

.comparison-table .highlight-column {
  background-color: #f0f9ff;
  color: #02413f;
  width: 30%;
}

.comparison-table .highlight-cell {
  background-color: #f0f9ff;
  color: #2d3748;
  font-weight: 600;
}

.comparison-table .highlight-cell .check-icon {
  color: #38a169;
  margin-right: 0.5rem;
  font-weight: 800;
}

/* Specific styling for the cells to match the image style */
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:not(.highlight-cell) {
  color: #718096;
  font-size: 0.9rem;
}

/* Mobile responsive scroll indicator */
.comparison-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
  background: #f7fafc;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
  }

/* ==========================================================================
   FAQ SECTION STYLING
   ========================================================================== */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #FCFAEB;
  border: 1px solid #edf2f7;
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #02413f;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.faq-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  transition: margin 0.3s ease;
}

.faq-item h4 span {
  font-size: 1.5rem;
  color: #02413f;
  transition: transform 0.3s ease;
}

.faq-item.active h4 {
  margin-bottom: 1rem;
  color: #02413f;
}

.faq-item.active h4 span {
  transform: rotate(45deg);
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .answer {
  max-height: 200px;
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Fix for Contact Section and Footer Gap */
.cta-section {
  background-color: #0b1a1f;
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 12vh, 8rem);
}

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3rem;
  padding: clamp(2rem, 8vw, 5rem);
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-card .section-title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-card .billing-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.cta-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns .btn {
    width: 100%;
  }
}

.footer {
  margin-top: 0 !important;
}

main {
  padding-bottom: 0 !important;
  display: flex;
  flex-direction: column;
}



/* ===== ULTRA SMALL DEVICES (320px FIX) ===== */
@media (max-width: 360px) {

  /* Container tighter */
  .bdc-container {
    padding-inline: 0.8rem;
  }

  /* Billing card padding reduce */
  .billing-card {
    padding: 1.2rem;
    border-radius: 1.2rem;
  }

  /* Dashboard mockup FIX */
  .dashboard-card-mockup {
    max-width: 100%;
    padding: 1.2rem;
  }

  /* Brand item stack */
  .brand-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Stats -> 1 column */
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 1rem;
  }

  /* Reduce text sizes slightly */
  .dashboard-title {
    font-size: 0.9rem;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  /* FIX floating chat button */
  .chat-button,
  .chat-widget,
  .whatsapp-btn {
    right: 10px;
    bottom: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

}


@media (max-width: 790px) {
  .sub-navbar {
    top: 0px;
  }
}
