
    :root {
  --bg: #f5f7fb;
  --bg-strong: #e3edff;
  --card: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --muted: #1b2029;
  --text: #0b3858;
  --accent: #2998ff;
  --accent-soft: rgba(41, 152, 255, 0.12);
  --accent-dark: #0054c7;
  --danger: #ef4444;
  --radius-pill: 999px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-sm: 0 14px 35px rgba(15, 23, 42, 0.12);
  --container: 1400px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


.sb-section-container {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 60px 20px 80px;
  background-color: #ffffff;
  text-align: center;
}

.main-page-title {
  color: #222a3d;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
}

.main-page-subtitle {
  color: #475569;
  font-size: 18px;
  margin: 0 0 25px 0;
  font-weight: 400;
}

.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sb-hero-wrapper {
  
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 24px;
  text-align: left;
}

.sb-image-box {
  flex: 0 0 320px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.sb-image-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.sb-card {
height: 300px;
  flex: 1;
  background-color: var(--accent-dark);
  color: #fff;
  border-radius: 32px;
  padding: 45px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 84, 199, 0.15);
}

.sb-content {
  max-width: 55%;
}

.sb-eyebrow {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
  opacity: 0.9;
}

.sb-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 15px 0;
}

.sb-desc {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0 0 15px 0;
}

.sb-desc strong {
  font-weight: 700;
  color: #fff;
}

.sb-footnote {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 8px;
}

.sb-price-box {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 200px;
}

.sb-price {
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 5px;
}

.sb-price-sub {
  font-size: 17px;
  margin-bottom: 25px;
  font-weight: 400;
  opacity: 0.9;
}

.sb-btn {
  background-color: #fff;
  color: var(--accent-dark);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.sb-btn:hover {
  transform: translateY(-2px);
}


.hubs {
  background: #fff;
  padding: 40px 0 60px;
  box-shadow: 0 -1px 0 rgba(15, 23, 42, 0.06);
}

.hub-main-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 24px;
}

.hub-tabs-card {
  background: #f9fafb;
  border-radius: 30px;
  padding: 14px 18px 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 26px;
}

.hub-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hub-tab {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}

.hub-tab.active {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}

.billing-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.billing-label {
  font-size: 14px;
  font-weight: 600;
}

.save-pill {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
}

.switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: #d1d5db;
  cursor: pointer;
  transition: var(--transition);
}

.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  left: 3px;
  top: 3px;
  transition: var(--transition);
}

.switch input:checked + .slider {
  background: var(--accent);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.hub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  padding: 6px 12px;
  background: #eef2ff;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--muted);
}

.chip.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hub-panel {
  display: none;
}

.hub-panel.active {
  display: block;
}

.plans-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  background: var(--bg);
  border-radius: 30px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.plan-card-highlight {
  background: var(--bg-strong);
  border: 2px solid var(--accent-soft);
}

.plan-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  font-size: 24px;
}

.why-btn {
  border: none;
  background: transparent;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  color: var(--muted);
}

.plan-card h3 {
  margin: 16px 0 2px;
  font-size: 22px;
}

.plan-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.currency {
  font-size: 20px;
}

.amount {
  font-size: 32px;
  font-weight: 800;
}

.per {
  font-size: 16px;
  color: var(--muted);
}

.plan-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.btn-outline {
  width: 100%;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--accent-dark);
  background: #fff;
  color: var(--accent-dark);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-primary1{
  width: 100%;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--accent-dark);
    background: var(--accent);
    color: var(--bg);
    cursor: pointer;
    transition: var(--transition);
}


.hub-feature-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-col {
  font-size: 14px;
  background: var(--bg);
  border-radius: 24px;
  padding: 18px 18px 12px;
  box-shadow: var(--shadow-soft);
}

.feature-col h4 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 14px;
}

.feature-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-col li {
  margin-bottom: 6px;
}

.compare-all {
  background: var(--bg);
  padding: 60px 0 60px;
}

.compare-all h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.accordion-card {
  background: var(--card);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: 10px 6px 6px;
}

.accordion-item {
  border-radius: 24px;
  overflow: hidden;
  margin: 6px;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.accordion-item:first-child .accordion-header {
  border-radius: 20px 20px 0 0;
}

.accordion-item:last-child .accordion-header {
  border-radius: 0 0 20px 20px;
}

.accordion-item.open .accordion-header {
  background: var(--bg-strong);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.25s ease;
}

.accordion-item.open .accordion-body {
  padding: 0 20px 18px;
}

.chevron {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.accordion-item.open .chevron {
  transform: rotate(0);
}

.compare-table {
  width: 100%;
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  font-size: 13px;
}

.compare-head {
  background: var(--bg-strong);
  font-weight: 600;
}

.compare-row:nth-child(even):not(.compare-head) {
  background: #f9fafb;
}

.cell {
  padding: 10px 12px;
  text-align: center;
}

.cell.feature {
  text-align: left;
}

.simple-list {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 14px;
}

.faq {
  background: #fff;
  padding: 50px 0 70px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.faq-list .accordion-item {
  background: var(--card);
  border-radius: 22px;
  margin: 10px 0;
  box-shadow: var(--shadow-soft);
}

.faq-header {
  padding: 14px 20px;
  font-size: 15px;
}

.faq-body {
  font-size: 14px;
}

.footer {
  background: #020617;
  color: #e5e7eb;
  padding: 16px 0;
  font-size: 13px;
  text-align: center;
}



@media (max-width: 1024px) {
  .plans-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hub-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compare-row {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  
  .sb-section-container {
    padding: 30px 15px 40px;
    height: auto !important; 
    overflow: visible !important;
  }

  .main-page-title {
    font-size: 28px !important;
    line-height: 1.2;
    margin-bottom: 10px;
    padding: 0 10px;
  }
  
  .main-page-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .sb-hero-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0;
    height: auto !important; 
    min-height: auto !important;
    margin-bottom: 30px; 
  }

  .sb-image-box {
    width: 100% !important;
    height: 220px !important;
    border-radius: 24px 24px 0 0 !important;
    flex: none !important;
  }

  .sb-card {
    width: 100% !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 30px 20px !important;
    border-radius: 0 0 24px 24px !important;
    height: auto !important;
    align-items: center !important;
  }

  .sb-content {
    max-width: 100% !important;
    margin-bottom: 25px !important;
  }

  .sb-title {
    font-size: 28px !important;
    margin-bottom: 12px !important;
  }
  
  .sb-desc {
    font-size: 15px !important;
    line-height: 1.4;
  }

  .sb-price-box {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
    margin-top: 10px;
  }

  .sb-price {
    font-size: 80px !important;
    line-height: 1;
  }
  
  .trust-bar {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
}

@media (max-width: 720px) {
  .plans-row {
    grid-template-columns: 1fr;
  }

  .hub-feature-grid {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .compare-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compare-head .cell:nth-child(n + 4),
  .compare-row .cell:nth-child(n + 4) {
    display: none;
  }
}