/* =============================================
   Website Digitals - Web Development Landing
   Bootstrap 5 + Custom Styles
   ============================================= */

:root {
  --brand: #3c7cff;
  --brand-dark: #1d4ed8;
  --brand-light: #e6efff;
  --navy: #0b1a3b;
  --soft: #f5f8ff;
  --ink: #0f172a;
  --muted-ink: #475569;
  --line: #e5ebf5;
  --shadow-soft: 0 10px 30px -10px rgba(60, 124, 255, 0.18);
  --shadow-card: 0 8px 24px -12px rgba(15, 23, 42, 0.12);
  --shadow-lift: 0 24px 60px -20px rgba(15, 23, 42, 0.25);
  --font-sans: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 800;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* Container */
.container-x {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Section spacing */
.section-y {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 767.98px) {
  .section-y {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Gradients */
.grad-hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(60, 124, 255, 0.35), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(34, 211, 238, 0.18), transparent 60%),
    linear-gradient(135deg, #061230 0%, #0b1a3b 55%, #102a63 100%);
}

.grad-cta {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(60, 124, 255, 0.45), transparent 60%),
    linear-gradient(135deg, #0b1a3b 0%, #1e3a8a 100%);
}

.grad-soft {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.grad-conversion {
  background: linear-gradient(135deg, #eaf1ff 0%, #f6faff 100%);
}

/* Buttons */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: #fff !important;
  font-weight: 600;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 24px -10px rgba(60, 124, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary-custom:hover {
  background: var(--brand-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(60, 124, 255, 0.7);
}

.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-weight: 600;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.btn-ghost-custom:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card hover */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(60, 124, 255, 0.3) !important;
}

.text-muted-ink {
  color: var(--muted-ink);
}

.text-navy {
  color: var(--navy);
}

.text-brand {
  color: var(--brand);
}

.bg-soft {
  background: var(--soft);
}

.border-line {
  border-color: var(--line) !important;
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.shadow-lift {
  box-shadow: var(--shadow-lift);
}

/* Icon boxes */
.icon-box {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
}

.icon-box-white {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.icon-box-brand {
  background: var(--brand);
  color: #fff;
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.25rem;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 3.5rem 0 3.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2.25rem 0 2.5rem;
  }
}

.hero-row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 1.75rem;
}

.hero-content > * + * {
  margin-top: 0;
}

.hero-breadcrumb {
  margin-bottom: 0.75rem;
}

.hero-eyebrow {
  display: inline-flex;
  font-size: 0.72rem;
  padding: 0.4rem 0.75rem;
}

.hero-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: #fff;
  margin-top: 0.75rem;
  margin-bottom: 0;
  max-width: 34rem;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 0.85rem;
  margin-bottom: 0;
  max-width: 32rem;
}

.hero-pills {
  --bs-gutter-x: 0.65rem;
  --bs-gutter-y: 0.65rem;
  margin-top: 1.1rem;
}

.hero-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.55rem 0.65rem;
  backdrop-filter: blur(8px);
  height: 100%;
}

.hero-pill-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
}

.hero-pill-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.hero-actions {
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.btn-sm-custom {
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
}

.hero-dashboard-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hero-dashboard-wrap img {
    height: 380px;
  }
}

@media (max-width: 767.98px) {
  .hero-dashboard-wrap img {
    height: 260px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
  }

  .hero-desc {
    font-size: 0.9rem;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -8rem;
  left: -6rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(60, 124, 255, 0.4);
  filter: blur(80px);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.2);
  filter: blur(80px);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-title .gradient-text {
  background: linear-gradient(to right, #6ea8ff, #7df9ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-dashboard-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.hero-dashboard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(11, 26, 59, 0.4), transparent);
}

.floating-card {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  color: var(--navy);
  border-radius: 0.85rem;
  box-shadow: var(--shadow-lift);
  padding: 0.6rem 0.75rem;
  min-width: 170px;
  position: absolute;
  z-index: 2;
}

@media (min-width: 768px) {
  .floating-card {
    display: flex;
  }
}

.floating-card .icon-box {
  width: 2.25rem;
  height: 2.25rem;
}

.floating-card .fc-title {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.25;
}

.floating-card .fc-sub {
  font-size: 0.68rem;
  color: var(--muted-ink);
}

/* ================= STATS ================= */
.stat-card {
  position: relative;
  border-radius: 1rem;
  border: 2px solid var(--line);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  overflow: visible;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand);
}

.stat-card .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-card .stat-bar {
  height: 4px;
  width: 3rem;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 1rem;
  transition: width 0.3s ease;
}

.stat-card:hover .stat-bar {
  width: 6rem;
}

.stat-popup {
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  top: 100%;
  margin-top: 0.75rem;
  width: 18rem;
  max-width: 90vw;
  border-radius: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 20;
}

.stat-popup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--navy);
}

.stat-card:hover .stat-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.stats-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .stats-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ================= WHY MATTERS ================= */
.why-image-wrap {
  position: relative;
}

.why-image-wrap img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lift);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-lift);
  padding: 1rem;
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .why-image-badge {
    display: flex;
  }
}

.why-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 2rem;
  background: rgba(60, 124, 255, 0.1);
  filter: blur(32px);
  z-index: -1;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.1rem);
}

.section-title-sm {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

/* ================= SERVICES ================= */
.service-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.75rem;
  overflow: hidden;
  height: 100%;
}

.service-card .service-glow {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--brand-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-glow {
  opacity: 1;
}

.service-card:hover .icon-box-lg {
  background: var(--brand);
  color: #fff;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 1.25rem;
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ================= OWL CAROUSEL ================= */
.owl-carousel .owl-item {
  padding: 0 12px;
}

.owl-nav-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.owl-nav-custom button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.owl-nav-custom button:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.owl-dots-custom {
  display: flex;
  gap: 6px;
  align-items: center;
}

.owl-dots-custom .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.owl-dots-custom .owl-dot.active {
  width: 32px;
  background: var(--brand);
}

.featured-card img {
  height: 208px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.7s ease;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-card .featured-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow-card);
}

/* ================= PLATFORMS ================= */
.platform-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
}

.platform-tab:hover {
  border-color: rgba(60, 124, 255, 0.5);
}

.platform-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.platform-tab.active .platform-tab-name {
  color: #fff;
}

.platform-tab.active .platform-tab-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.platform-tab-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.125rem;
}

.platform-panel {
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.platform-panel-glow {
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(60, 124, 255, 0.1);
  filter: blur(32px);
}

.tech-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy);
}

/* ================= FEATURES GRID ================= */
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand);
  transform: translateY(-4px);
}

.feature-item span {
  font-weight: 600;
  color: #fff;
}

.features-section::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(60, 124, 255, 0.3);
  filter: blur(80px);
  pointer-events: none;
}

/* ================= PROCESS ================= */
.process-line {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(60, 124, 255, 0.4), transparent);
}

@media (min-width: 992px) {
  .process-line {
    display: block;
  }
}

.process-number-wrap {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.25rem;
}

.process-number-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brand-light);
}

.process-number-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
}

.hero-section .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.platform-tab.active .fa-arrow-right {
  color: #fff !important;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--brand) !important;
  background: rgba(230, 239, 255, 0.4);
}

.process-card {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  min-height: auto;
}

@media (min-width: 992px) {
  .process-card {
    min-height: 200px;
  }
}


/* ================= CONVERSION ================= */
.conversion-image-wrap img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lift);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.conversion-badge {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-lift);
  padding: 1rem;
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .conversion-badge {
    display: flex;
  }
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-weight: 500;
}

/* ================= INDUSTRIES ================= */
.industry-card:hover .icon-box-lg {
  background: var(--brand);
  color: #fff;
}

/* ================= PORTFOLIO ================= */
.portfolio-section::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: -6rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(60, 124, 255, 0.25);
  filter: blur(80px);
  pointer-events: none;
}

.portfolio-card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
}

.portfolio-card img {
  height: 224px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.7s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 59, 0.8), rgba(11, 26, 59, 0.2), transparent);
}

.portfolio-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(60, 124, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
}

/* ================= WHY US BANNER ================= */
.why-us-banner {
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
}

/* ================= TESTIMONIALS ================= */
#testimonials-carousel .owl-item {
  display: flex;
}

.testimonial-card {
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem 1.65rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  width: 100%;
}

.testimonial-card .stars {
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.88);
  margin: 0.85rem 0 0;
}

.testimonial-footer {
  margin-top: 1.15rem;
}

.testimonial-avatar-wrap {
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--line);
  background: var(--soft);
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.testimonial-name {
  font-size: 0.88rem;
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.78rem;
  line-height: 1.35;
  display: block;
  margin-top: 0.1rem;
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-card .quote-icon {
  font-size: 1.45rem;
  color: rgba(60, 124, 255, 0.2);
  flex-shrink: 0;
}

/* ================= FAQ ================= */
.faq-sidebar-card {
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.faq-accordion .accordion-item {
  border-radius: 1rem !important;
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
  overflow: hidden;
    font-size: .8rem;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--navy);
  padding: 1.25rem;
  box-shadow: none !important;
  background: #fff;
   font-size: .8rem !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(230, 239, 255, 0.4);
  color: var(--navy);
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-toggle-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

.faq-accordion .accordion-body {
  color: var(--muted-ink);
  line-height: 1.7;
  padding: 0 1.25rem 1.25rem;
  font-size: .8rem;
}

/* ================= FINAL CTA ================= */
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.final-cta::before {
  top: -6rem;
  left: -6rem;
  background: rgba(60, 124, 255, 0.3);
}

.final-cta::after {
  bottom: -6rem;
  right: -6rem;
  background: rgba(34, 211, 238, 0.2);
}

.cta-trust-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

/* ================= ANIMATIONS ================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent horizontal scroll */
.row {
  --bs-gutter-x: 1.5rem;
}

main {
  overflow-x: hidden;
}
