/*--------------------------------------------------------------
# SmartCodex White Label — Page Styles
# Built on the Apptimates design system:
#   Headings: Raleway | Body: Open Sans
#   Brand accents: #ff2080 (pink), #0dd3fe (cyan), #393185 (purple)
--------------------------------------------------------------*/

.sc-page {
  overflow-x: hidden;
}

/* ---------- Hero ---------- */
.sc-hero {
  position: relative;
  margin-top: 5rem;
  padding: 90px 0 70px;
  background: #0b0630;
  background: radial-gradient(120% 140% at 15% 20%, #2b1465 0%, #150a3e 45%, #0b0630 100%);
  overflow: hidden;
  color: #fff;
}

.sc-hero::before,
.sc-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  z-index: 0;
}

.sc-hero::before {
  width: 380px;
  height: 380px;
  background: #ff2080;
  top: -120px;
  right: -80px;
}

.sc-hero::after {
  width: 320px;
  height: 320px;
  background: #0dd3fe;
  bottom: -140px;
  left: -60px;
}

.sc-hero .container {
  position: relative;
  z-index: 2;
}

.sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #7fe9ff;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.sc-eyebrow i {
  font-size: 15px;
  color: #ff2080;
}

.sc-hero h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.25;
  margin-bottom: 20px;
  text-align: left;
}

.sc-hero h1 span {
  background: linear-gradient(90deg, #ff2080, #ff8fc0 45%, #0dd3fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sc-hero p.sc-lead {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .78);
  text-align: left;
  max-width: 560px;
  margin-bottom: 32px;
}

.sc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.sc-btn-primary {
  background: linear-gradient(90deg, #ff2080, #b3197c);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(255, 32, 128, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 32, 128, .45);
  color: #fff;
}

.sc-btn-ghost {
  color: #fff;
  font-weight: 600;
  padding: 14px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.sc-btn-ghost:hover {
  color: #0dd3fe;
  border-color: #0dd3fe;
}

.sc-hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.sc-hero-stats .stat h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  margin-bottom: 2px;
}

.sc-hero-stats .stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------- Hero illustration ---------- */
.sc-hero-art {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.sc-hero-art svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .35));
}

.sc-node {
  animation: sc-float 4.5s ease-in-out infinite;
}

.sc-node.sc-n2 {
  animation-delay: .6s;
}

.sc-node.sc-n3 {
  animation-delay: 1.2s;
}

.sc-node.sc-n4 {
  animation-delay: 1.8s;
}

.sc-node.sc-n5 {
  animation-delay: 2.4s;
}

@keyframes sc-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.sc-dash {
  stroke-dasharray: 6 8;
  animation: sc-dash-move 3s linear infinite;
}

@keyframes sc-dash-move {
  to {
    stroke-dashoffset: -140;
  }
}

/* ---------- Section shells ---------- */
.sc-section {
  padding: 70px 0;
}

.sc-section-tight {
  padding: 40px 0 10px;
}

.sc-kicker {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ff2080;
  margin-bottom: 10px;
}

.sc-h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #211A60;
  margin-bottom: 18px;
}

.sc-lede {
  font-size: 16.5px;
  line-height: 1.85;
  color: #625C8E;
  text-align: left;
}

/* ---------- API category cards ---------- */
.sc-api-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 30px;
  height: 100%;
  border: 1px solid #eef0fb;
  box-shadow: 0 10px 30px rgba(57, 49, 133, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sc-api-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(57, 49, 133, .14);
}

.sc-api-card .sc-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}

.sc-api-card.sc-fintech .sc-icon-badge {
  background: linear-gradient(135deg, #ff2080, #b3197c);
}

.sc-api-card.sc-travel .sc-icon-badge {
  background: linear-gradient(135deg, #0dd3fe, #0a9bbd);
}

.sc-api-card h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #211A60;
  margin-bottom: 16px;
}

.sc-api-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-api-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed #eee;
  color: #444;
  font-size: 15px;
}

.sc-api-card ul li:last-child {
  border-bottom: none;
}

.sc-api-card ul li i {
  color: #ff2080;
  font-size: 16px;
  flex-shrink: 0;
}

/* ---------- Checklist grid (branded experience / benefits) ---------- */
.sc-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8f7ff;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid #eeecfb;
}

.sc-check-item i {
  color: #fff;
  background: linear-gradient(135deg, #ff2080, #393185);
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sc-check-item span {
  font-size: 15px;
  color: #443f6b;
  line-height: 1.5;
  padding-top: 3px;
}

@media (max-width: 767px) {
  .sc-check-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why choose — gradient banner with cards ---------- */
.sc-why {
  background: rgb(2, 0, 36);
  background: linear-gradient(120deg, rgba(186, 22, 141, 255) 0%, rgba(105, 19, 110, 255) 40%, rgba(24, 12, 66, 255) 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
}

.sc-why .sc-kicker {
  color: #7fe9ff;
}

.sc-why .sc-h2 {
  color: #fff;
}

.sc-why .sc-lede-center {
  color: rgba(255, 255, 255, .75);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.8;
}

.sc-why-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  transition: transform .3s ease, background .3s ease;
}

.sc-why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .12);
}

.sc-why-card i {
  font-size: 30px;
  color: #0dd3fe;
  margin-bottom: 16px;
  display: inline-block;
}

.sc-why-card h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.sc-why-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 0;
}

/* ---------- Who uses — tag pills ---------- */
.sc-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sc-tag {
  background: #fff;
  border: 1px solid #e7e3ff;
  color: #393185;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(57, 49, 133, .06);
  transition: all .25s ease;
}

.sc-tag:hover {
  background: linear-gradient(90deg, #ff2080, #393185);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Process timeline ---------- */
.sc-timeline {
  position: relative;
  margin-top: 20px;
}

.sc-timeline::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(180deg, #ff2080 0 8px, transparent 8px 16px);
}

@media (max-width: 767px) {
  .sc-timeline::before {
    left: 24px;
  }
}

.sc-step {
  position: relative;
  display: flex;
  gap: 26px;
  padding-bottom: 40px;
}

.sc-step:last-child {
  padding-bottom: 0;
}

.sc-step-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2080, #393185);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 22px rgba(57, 49, 133, .25);
}

@media (max-width: 767px) {
  .sc-step-num {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }
}

.sc-step-body h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #211A60;
  margin-bottom: 8px;
  padding-top: 10px;
}

.sc-step-body p {
  color: #625C8E;
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
  margin-bottom: 0;
}

/* ---------- Benefits list (checkmarks, single column feel) ---------- */
.sc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .sc-benefit-grid {
    grid-template-columns: 1fr;
  }
}

.sc-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eef0fb;
  box-shadow: 0 6px 16px rgba(57, 49, 133, .05);
  font-size: 15px;
  color: #443f6b;
  font-weight: 500;
}

.sc-benefit i {
  color: #ff2080;
  font-size: 20px;
  flex-shrink: 0;
}

/* ---------- Final CTA ---------- */
.sc-cta {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding: 64px 40px;
  text-align: center;
  background: #0b0630;
  background: radial-gradient(120% 160% at 50% -20%, #3b1a7a 0%, #150a3e 60%, #0b0630 100%);
  color: #fff;
}

.sc-cta::before,
.sc-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .4;
}

.sc-cta::before {
  width: 260px;
  height: 260px;
  background: #ff2080;
  top: -100px;
  left: -60px;
}

.sc-cta::after {
  width: 260px;
  height: 260px;
  background: #0dd3fe;
  bottom: -100px;
  right: -60px;
}

.sc-cta>* {
  position: relative;
  z-index: 2;
}

.sc-cta h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 14px;
}

.sc-cta p {
  color: rgba(255, 255, 255, .78);
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}

.sc-cta .sc-tagline {
  margin-top: 26px;
  font-style: italic;
  color: #7fe9ff;
  font-size: 14.5px;
}

/* ---------- FAQ tweaks ---------- */
.sc-faq .accordion-button {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #211A60;
}

.sc-faq .accordion-button:not(.collapsed) {
  background: #fdeef6;
  color: #b3197c;
}

.sc-faq .accordion-button:focus {
  box-shadow: none;
  border-color: #f2c9de;
}

/* ---------- Scroll reveal ---------- */
.sc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.sc-reveal.sc-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .sc-hero h1 {
    font-size: 34px;
    text-align: center;
  }

  .sc-hero p.sc-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .sc-hero-actions {
    justify-content: center;
  }

  .sc-hero-stats {
    justify-content: center;
  }

  .sc-hero-art {
    margin-top: 50px;
  }
}