/* ============================================================
   ScanBrio — Landing Page Stylesheet
   Brand: ScanBrio | Primary: #2563EB | Dark: #111827
   Fonts: Poppins (headings) + Inter (body)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --brand-blue: #2563EB;
  --brand-blue-hover: #1D4ED8;
  --brand-blue-soft: #DBEAFE;
  --brand-blue-light: #EFF6FF;
  --brand-dark: #111827;
  --brand-secondary: #1F2937;
  --brand-body: #4B5563;
  --brand-muted: #9CA3AF;
  --brand-white: #FFFFFF;
  --brand-bg: #F9FAFB;
  --brand-section: #F3F4F6;
  --brand-border: #E5E7EB;
  --brand-success: #16A34A;
  --brand-success-bg: #DCFCE7;
  --brand-warning: #F59E0B;
  --brand-danger: #DC2626;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.10);
  --shadow-lg: 0 8px 32px rgba(37, 99, 235, 0.14);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--brand-body);
  background: var(--brand-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--brand-dark);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
}

/* ---------- Utilities ---------- */
.text-brand {
  color: var(--brand-blue) !important;
}

.text-dark {
  color: var(--brand-dark) !important;
}

.text-muted {
  color: var(--brand-muted) !important;
}

.text-success {
  color: var(--brand-success) !important;
}

.bg-brand {
  background: var(--brand-blue) !important;
}

.bg-soft {
  background: var(--brand-bg) !important;
}

.bg-section {
  background: var(--brand-section) !important;
}

.section-py {
  padding: 96px 0;
}

.section-py-sm {
  padding: 64px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--brand-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Navbar ---------- */
#mainNav {
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--brand-border), 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

#mainNav .navbar-brand img {
  height: 36px;
  width: auto;
}

#mainNav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-secondary) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

#mainNav .nav-link:hover {
  color: var(--brand-blue) !important;
  background: var(--brand-blue-light);
}

.btn-nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--brand-blue);
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background: var(--brand-blue-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------- Hero Section ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--brand-white);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563EB, #7C3AED);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #06B6D4, #2563EB);
  bottom: -80px;
  left: -80px;
}

@keyframes blobPulse {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.08) translate(20px, -20px);
  }

  100% {
    transform: scale(0.95) translate(-10px, 10px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  border: 1px solid #BFDBFE;
  padding: 6px 14px 6px 10px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--brand-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--brand-body);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-hero-primary:hover {
  background: var(--brand-blue-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--brand-border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

/* Hero Phone Mockup */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
  width: 280px;
  background: var(--brand-dark);
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 32px 80px rgba(17, 24, 39, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {

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

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

.hero-phone-inner {
  background: var(--brand-white);
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  white-space: nowrap;
  z-index: 2;
  animation: badgePop 0.6s ease forwards;
}

.hero-badge-verified {
  top: 80px;
  left: -30px;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-badge-qr {
  bottom: 120px;
  right: -30px;
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ---------- Stats Bar ---------- */
#stats {
  background: var(--brand-section);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--brand-body);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: var(--brand-border);
  align-self: stretch;
  margin: 16px 0;
}

/* ---------- Problem / Solution ---------- */
.problem-card {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  border-radius: var(--radius-xl);
  padding: 36px;
}

.solution-card {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius-xl);
  padding: 36px;
}

.ps-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.problem-icon {
  background: #FEE2E2;
}

.solution-icon {
  background: var(--brand-blue-soft);
}

/* ---------- Feature Cards ---------- */
.feature-card {
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), #7C3AED);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.feature-card:hover {
  border-color: #BFDBFE;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--brand-blue);
  transform: scale(1.08);
}

.feature-card:hover .feature-icon svg {
  fill: #fff;
  color: #fff;
}

.feature-card:hover .feature-icon i {
  color: #fff !important;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--brand-body);
  line-height: 1.65;
}

/* ---------- How It Works ---------- */
#how-it-works {
  background: var(--brand-bg);
}

.steps-wrapper {
  position: relative;
}

/* The connector line sits BEHIND all step rings.
   left/right: 12.5% = center of the first/last col-lg-3 (25% wide).
   The ring's solid white background + z-index:2 covers the overlap cleanly. */
.steps-line {
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--brand-border);
  z-index: 0;
  pointer-events: none;
}

.steps-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-blue), #7C3AED);
  width: 0%;
  transition: width 1.2s ease;
}

.step-item {
  position: relative;
  /* Isolate stacking context so z-index works inside Bootstrap cols */
  isolation: isolate;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  /* Solid white so it fully paints over the line behind it */
  background: var(--brand-white);
  border: 2.5px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* Ensure the ring sits ABOVE the connector line */
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-item.active .step-number-ring,
.step-item:hover .step-number-ring {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  box-shadow: 0 0 0 8px var(--brand-blue-soft);
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-blue);
  transition: var(--transition);
  position: relative;
  z-index: 3;
}

.step-item.active .step-number,
.step-item:hover .step-number {
  color: #fff;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--brand-body);
  line-height: 1.6;
}

/* ---------- Category Marquee ---------- */
#categories {
  background: var(--brand-white);
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  gap: 12px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-wrapper:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: 99px;
  padding: 12px 22px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  transition: var(--transition);
  cursor: default;
}

.category-pill:hover {
  border-color: var(--brand-blue);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  transform: scale(1.04);
}

.category-pill .cat-emoji {
  font-size: 18px;
}

/* ---------- Mobile App Section ---------- */
#mobile-app {
  background: var(--brand-section);
}

.app-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--brand-body);
  border-bottom: 1px solid var(--brand-border);
}

.app-feature-list li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--brand-success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 12px;
  height: 12px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  min-width: 165px;
}

.download-btn:hover {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.download-btn .store-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.download-btn .store-sub {
  font-size: 11px;
  opacity: 0.7;
  line-height: 1;
}

/* App mockup in mobile section */
.app-mockup-mini {
  width: 240px;
  background: var(--brand-dark);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.22);
  margin: 0 auto;
  animation: phoneFloat 6s ease-in-out infinite;
}

.app-mockup-mini-inner {
  background: var(--brand-bg);
  border-radius: 30px;
  overflow: hidden;
  min-height: 450px;
}

/* ---------- Pricing Section ---------- */
#pricing {
  background: var(--brand-white);
}

.pricing-card {
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.pricing-card.pro {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-soft), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-blue), #7C3AED);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 18px;
  border-radius: 99px;
  white-space: nowrap;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.price-amount sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 8px;
}

.price-amount .period {
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--brand-body);
  border-bottom: 1px solid var(--brand-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .fi {
  color: var(--brand-success);
  font-size: 16px;
}

.btn-pricing-free {
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--brand-dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pricing-free:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

.btn-pricing-pro {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-blue), #7C3AED);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-pricing-pro:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

/* ---------- Testimonials ---------- */
#testimonials {
  background: var(--brand-bg);
}

.testimonial-card {
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: #BFDBFE;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card .quote-mark {
  font-size: 56px;
  line-height: 0.5;
  color: var(--brand-blue-soft);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 15px;
  color: var(--brand-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 2px;
}

.author-biz {
  font-size: 12px;
  color: var(--brand-muted);
}

.stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ---------- FAQ ---------- */
#faq {
  background: var(--brand-white);
}

.accordion-item {
  border: 1.5px solid var(--brand-border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--brand-dark) !important;
  background: var(--brand-white) !important;
  padding: 18px 24px !important;
  border-radius: var(--radius-md) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-blue) !important;
  background: var(--brand-blue-light) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232563EB' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

.accordion-body {
  font-size: 14px;
  color: var(--brand-body);
  line-height: 1.7;
  padding: 16px 24px 20px !important;
  background: var(--brand-white);
}

/* ---------- CTA Section ---------- */
#cta-final {
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 40%, #2563EB 70%, #4F46E5 100%);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: ringExpand 6s ease-in-out infinite;
}

.cta-ring-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}

.cta-ring-2 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -180px;
  animation-delay: 1.5s;
}

.cta-ring-3 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -60px;
  animation-delay: 3s;
}

@keyframes ringExpand {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.cta-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.download-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  width: 200px;
}

.download-btn-light:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
#footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  height: 32px;
  filter: brightness(10);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Scroll To Top ---------- */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
}

/* ---------- Phone Profile Mock ---------- */
.profile-mock {
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}

.mock-banner {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #1E40AF, #7C3AED);
  position: relative;
}

.mock-logo-wrap {
  position: relative;
  padding: 0 14px;
  margin-top: -22px;
  margin-bottom: 10px;
}

.mock-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mock-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--brand-success-bg);
  color: var(--brand-success);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  float: right;
  margin-top: 8px;
}

.mock-biz-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-dark);
  padding: 0 14px;
  margin-bottom: 2px;
}

.mock-category {
  font-size: 11px;
  color: var(--brand-muted);
  padding: 0 14px;
  margin-bottom: 12px;
}

.mock-cta-row {
  display: flex;
  gap: 6px;
  padding: 0 14px;
  margin-bottom: 14px;
}

.mock-btn {
  flex: 1;
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
}

.mock-btn-call {
  background: var(--brand-blue);
  color: #fff;
}

.mock-btn-wa {
  background: #25D366;
  color: #fff;
}

.mock-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-dark);
  padding: 0 14px;
  margin-bottom: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--brand-border);
}

.mock-service-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 14px;
  font-size: 10px;
  color: var(--brand-body);
}

.mock-service-price {
  color: var(--brand-success);
  font-weight: 700;
}

.mock-qr-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--brand-bg);
  margin: 8px 14px;
  border-radius: 10px;
}

.mock-qr-box {
  width: 36px;
  height: 36px;
  background: var(--brand-dark);
  border-radius: 6px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  padding: 4px;
}

.mock-qr-box span {
  background: #fff;
  border-radius: 1px;
}

.mock-qr-text {
  font-size: 9px;
  color: var(--brand-body);
}

.mock-qr-url {
  font-size: 8px;
  color: var(--brand-blue);
}

/* App dashboard mock */
.app-mock {
  padding: 14px;
  background: var(--brand-bg);
  min-height: 450px;
}

.app-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.app-mock-greeting {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
}

.app-mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.app-status-card {
  background: linear-gradient(135deg, #1D4ED8, #7C3AED);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  margin-bottom: 14px;
}

.app-status-label {
  font-size: 10px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.app-status-value {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.app-section-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--brand-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-section-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
}

.app-section-status {
  font-size: 10px;
  color: var(--brand-success);
  font-weight: 600;
}

.app-section-done {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-success-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {


  .btn-nav-cta {
    margin-left: 12px;
    line-height: 3.6;
  }

  .navbar-collapse {
    background-color: #fff;
    border-radius: 15px;
  }

  .hero-phone-wrap {
    margin-top: 48px;
  }

  .steps-line {
    display: none;
  }

  .step-item {
    margin-bottom: 32px;
  }

  .hero-badge-verified {
    left: 10px;
  }

  .hero-badge-qr {
    right: 10px;
  }
}

@media (max-width: 767.98px) {

  #download {
    justify-content: center;
  }

  .section-py {
    padding: 64px 0;
  }

  .section-py-sm {
    padding: 48px 0;
  }

  .hero-title {
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge {
    display: none;
  }

  .stat-divider {
    display: none;
  }

  .pricing-card {
    margin-bottom: 24px;
  }

  .hero-phone {
    width: 240px;
  }
}

@media (max-width: 575.98px) {

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-btn-group {
    flex-direction: column;
  }




  .cta-download-group {
    flex-direction: column;
    align-items: center;
  }
}