:root {
  --hero-bg: #1A737B;
  --primary-red: #C91F3A;
  --text-light: #FFFFFF;
  --text-muted: #D1FAE5;
  --tab-text: #475569;
  --body-text: #4B5563;
  --title-text: #1C1C1C;
  --grey-bg: #F9FAFB;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.5;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  color: var(--title-text);
}

/* ================= TOP BAR ================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.topbar-logo {
  height: 28px;
}
.nav-logo {
    display: flex;
    gap: 8px;
    text-decoration: none;
    align-items: center;
}
.nav-logo img{
    width: 32px;
    cursor: pointer;
}
.nav-logo .logo-text {
    color: var(--title-text);
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 600;
}

/* Center title */
.topbar-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0F172A;
  font-size: 14px;
}

.topbar-icon img{
  max-width: 100%;
}

/* CTA */
.btn-topbar-cta {
  background: #C91F3A;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.25s ease;
}

.btn-topbar-cta:hover {
  background: var(--hero-bg); /* green on hover */
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .topbar-center {
    display: none; /* same as many SaaS headers */
  }
}

/* ================= HERO ================= */
.hero {
  background: var(--hero-bg);
  padding: 90px 0;
  color: var(--text-light);
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}
.hero h1 span{
  color: #063A52;
}

.hero-desc {
  font-size: 16px;
  max-width: 520px;
  color: var(--text-muted);
}

.hero-buttons {
  margin: 30px 0;
  display: flex;
  gap: 16px;
}

.btn-primary-cta {
  background: var(--primary-red);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-cta i{
  font-size: 24px;
}
.btn-primary-cta:hover{
  background-color: var(--hero-bg);
  color: #ffffff;
}

.btn-secondary-cta {
  background: #ffffff;
  color: #000;
  text-align: center;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-secondary-cta:hover{
  background: var(--primary-red);
  color: #ffffff;
}

.hero-stats {
  display: flex;
  margin-top: 30px;
}

.hero-stats h4 {
  margin: 0;
  font-weight: 700;
  color: #5AC2C1;
  font-size: 18px;
}

.hero-stats span {
  font-size: 14px;
  color: #FDF6EC;
}
.hero-stats div{
  padding: 0 20px;
  border-right: solid 1px #00545B;
}
.hero-stats div:first-child{
  padding-left: 0;
}
.hero-stats div:last-child{
  border: 0;
}

.hero-image-placeholder {
  height: 340px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder img{
  max-width: 100%;
}

@media (max-with: 1024px){
  .hero-stats div{
    padding: 0 10px;
  }
  .hero-stats {
    gap: 0px;
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero{
    padding: 40px 0;
  }
  
}

/* ================= PRODUCT PREVIEW ================= */

.product-preview {
  padding: 90px 0;
  background: #ffffff;
}

/* Image card */
.preview-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 16px;
}

.preview-card img {
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

/* Content */
.preview-content {
  max-width: 520px;
  margin-left: auto;
}

.preview-text {
  color: #334155;
  margin-bottom: 18px;
}

/* CTAs */
.preview-ctas {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* Secondary CTA (dark outline) */
.btn-outline-dark-cta {
  background: #ffffff;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-outline-dark-cta:hover {
  background: var(--hero-bg);
  color: #ffffff;
  border-color: var(--hero-bg);
}

/* Responsive */
@media (max-width: 991px) {
  .preview-content {
    margin-left: 0;
    margin-top: 40px;
  }
}

/* ================= TABS ================= */
.complete-platform {
  padding: 90px 0;
}

.section-head h2 {
  font-weight: 700;
  margin-bottom: 6px;
}

.section-head p {
  color: #64748B;
  font-size: 20px;
}

/* LEFT TABS */
/* STICKY LEFT TABS */
.platform-tabs-sticky {
  position: sticky;
  top: 120px; /* adjust based on header height */
}
.platform-tabs {
  gap: 12px;
}

.tab-link {
  background: transparent;
  border: none;
  text-align: left;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-link.active {
  background: linear-gradient(to right, #C92846, #A71E36);
  color: #ffffff;
}

/* RIGHT CONTENT */
.platform-content {
  background: var(--grey-bg);
  padding: 32px;
  border-radius: 16px;
}

.platform-content h3 {
  font-weight: 600;
  margin-bottom: 24px;
}

/* FEATURE CARD */
.feature-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}

.feature-card h5{
  font-size: 18px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  background: var(--grey-bg);
  color: #C91F3A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}

/* Mobile accordion hidden on desktop */
.platform-accordion {
  display: none;
}
.accordion-item{
  border: none;
  border-bottom: solid 1px #E5E7EB;
}
.accordion-button{
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
}
.accordion-button:not(.collapsed){
  background: linear-gradient(to right, #C92846, #A71E36);
  color: #ffffff;
  border-radius: 0 !important;
}
.accordion-button:not(.collapsed)::after{
  -webkit-filter: grayscale(1) invert(1);
filter: grayscale(1) invert(1);
}

.accordion-button:focus{
  border: 0;
  box-shadow: none;
}


/* Mobile */
@media (max-width: 991px) {
  .platform-wrapper {
    display: none;
  }
  .platform-accordion {
    display: block;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .platform-tabs {
    flex-direction: row;
    overflow-x: auto;
  }
  .platform-tabs-sticky {
    position: relative;
    top: 0;
  }
}



/* ================= HOW TO START ================= */

.grey-bg {
  background: #F8FAFC;
  
}
.how-steps{
  padding: 90px 0;
}
/* STEP LIST */
.steps-list {
  /* max-width: 900px;
  margin: 60px auto 0; */
  position: relative;
}

/* Vertical line */
.steps-list::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #D1D5DB;
}

/* STEP ROW */
.step-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 28px;
  position: relative;
}

/* INDICATOR */
.step-indicator {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  background: #D1D5DB;
  color: #374151;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle.success {
  background: #22C55E;
  color: #ffffff;
  font-size: 18px;
}

/* CARD */
.step-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 28px;
}


/* BOTTOM BAR */
.steps-highlight-bar {
  margin: 60px auto 0;
  background: #1A737B;
  color: #ffffff;
  display: flex;
  justify-content: space-around   ;
  gap: 40px;
  padding: 24px;
  border-radius: 14px;
  font-weight: 400;
  font-size: 26px;
}
.steps-highlight-bar i{
  color: #22C55E;
  font-size: 24px;
}
.step-mobile-badge {
  display: none; /* hidden on desktop */
}

/* MOBILE */
@media (max-width: 768px) {
  .steps-list::before {
    display: none;
  }

  .step-row {
    grid-template-columns: 1fr;
  }

  .step-indicator {
    display: none;
  }

  .steps-highlight-bar {
    flex-direction: column;
    gap: 12px;
  }
  .step-mobile-badge {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: #D1D5DB;
    color: #374151;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .step-mobile-badge.success {
    background: #22C55E;
    color: #ffffff;
  }
}

/* ================= PREDICTABLE ROI ================= */

.predictable-roi {
  padding: 90px 0;
}

.roi-header h2 {
  font-weight: 700;
  margin-bottom: 6px;
}

.roi-header p {
  color: #64748B;
}

/* Scroll container */
.roi-scroll-container {
  position: relative;
}

/* Horizontal scroll */
.roi-cards-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px; /* space for arrows */
}

.roi-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* Cards row */
.roi-cards {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* Card */
.roi-card {
  width: 260px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  flex-shrink: 0;
}

/* Icon */
.roi-icon {
  width: 80px;
  height: 80px;
  font-size: 32px;
  background: #E5E7EB;
  color: #C91F3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.roi-card h5{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.roi-card p{
  font-size: 16px;
}

/* Arrows */
/* Arrows row */
.roi-arrows-row {
  display: flex;
  justify-content: flex-end; /* right aligned like modern UI */
  gap: 12px;
  margin-bottom: 16px;
}

/* Arrow buttons */
.roi-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  font-size: 22px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roi-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Mobile tweaks */
@media (max-width: 768px) {
   .roi-arrows-row {
    display: none;
  }

  .roi-cards-wrapper {
    padding: 10px 0;
  }
}

/* ================= MADE FOR INDIA ================= */

.made-for-india {
  padding: 90px 0;
}

/* Left content */
.india-content {
  max-width: 520px;
}

/* Badge */
.india-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* background: #ECFDF5; */
  background: linear-gradient(114.42deg, #FFF0DE 20.24%, #FFFFFF 52.03%, #E2FFEB 83.81%);
  color: var(--primary-red);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge-icon {
  font-size: 14px;
}

/* Heading & description */
.india-content h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.india-desc {
  color: #64748B;
  margin-bottom: 32px;
}

/* Bullet list */
.india-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.india-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

/* Check icon */
.check-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--hero-bg);
}

/* Text */
.india-list strong {
  display: block;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 2px;
}

.india-list p {
  margin: 0;
  color: #64748B;
  font-size: 14.5px;
}

/* Map */
.india-map img {
  max-width: 420px;
}

/* Responsive */
@media (max-width: 991px) {
  .india-content {
    margin-bottom: 40px;
  }

  .india-map img {
    max-width: 300px;
  }
}

/* ================= FINAL CTA ================= */

.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #B1122D 0%, #8F0E24 100%);
  color: #ffffff;
}

/* Headline */
.final-cta h2 {
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Subtext */
.cta-subtext {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  opacity: 0.9;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-buttons .btn-primary-cta {
  background: #ffffff;
  color: #B1122D;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.cta-buttons .btn-primary-cta:hover {
  background: var(--hero-bg);
  color: #ffffff;
}

.cta-buttons .btn-outline-cta {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 14px 26px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.cta-buttons .btn-outline-cta:hover {
  background: var(--hero-bg);
  border-color: var(--hero-bg);
  color: #ffffff;
}

/* Metrics */
.cta-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .cta-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}

/* ================= ADVERTISING FORMATS ================= */

.ad-formats {
  padding-top: 8px;
}

.formats-title {
  font-weight: 600;
  margin-bottom: 24px;
}

/* Card */
.format-card {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  background: #ffffff;
  margin-bottom: 18px;
}

/* Icon */
.format-icon {
  width: 48px;
  height: 48px;
  background: #F1F5F9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C91F3A;
  font-size: 20px;
  flex-shrink: 0;
}

/* Content */
.format-content h5 {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 18px;
}

/* Header with badge */
.format-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-popular {
  background: #DCFCE7;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Description */
.format-desc {
  margin-bottom: 16px;
}

/* Points */
.format-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.format-points li {
  font-size: 14px;
  position: relative;
  padding-left: 18px;
}

.format-points li::before {
  content: "\f633";
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 600;
  font-family: bootstrap-icons !important;
}

/* Responsive */
@media (max-width: 768px) {
  .format-card {
    flex-direction: column;
    gap: 14px;
  }
}

/* ================= BUILT FOR TEAMS ================= */

.built-for-teams {
  padding-top: 8px;
}

.teams-title {
  font-weight: 600;
  margin-bottom: 28px;
}

/* Grid */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

/* Card */
.team-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 26px 24px;
}

/* Icon */
.team-icon {
  width: 48px;
  height: 48px;
  background: #F1F5F9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C91F3A;
  font-size: 20px;
  margin-bottom: 14px;
}

/* Text */
.team-card h5 {
  font-size: 18px;
}

.team-card p {
  margin-bottom: 14px;
}

/* Points */
.team-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
}

.team-points li::before {
  content: "\f633";
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 600;
  font-family: bootstrap-icons !important;
}

/* Bottom bar */
.teams-benefits {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 16px;
}

.teams-benefits i {
  color: #22C55E;
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .teams-grid {
    grid-template-columns: 1fr;
  }

  .teams-benefits {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .product-preview, 
  .complete-platform,
  .platform-accordion, 
  .how-steps, 
  .predictable-roi,
  .made-for-india,
  .final-cta {
    padding: 60px 0;
  }
}