@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #1c1c1c;
  --bg-secondary: #252525;
  --bg-tertiary: #2d2d2d;
  --bg-glass: rgba(28, 28, 28, 0.85);

  --color-text: #ffffff;
  --color-muted: #a6a6a6;
  --color-purple: #93278f;
  --color-blue: #0b49e9;
  --color-cyan: #3ce4fc;
  --color-yellow: #ffff95;
  --color-whatsapp: #25d366;

  --line-border: rgba(255, 255, 255, 0.08);
  --line-border-hover: rgba(60, 228, 252, 0.25);

  --font-title: 'Outfit', sans-serif;
  --font-body: 'Sora', sans-serif;

  --gradient-brand: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
  --gradient-cyan-purple: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
  --gradient-dark-card: linear-gradient(160deg, var(--bg-secondary) 0%, #1e1526 100%);

  --shadow-glow: 0 10px 30px rgba(11, 73, 233, 0.25);
  --shadow-purple-glow: 0 15px 35px rgba(147, 39, 143, 0.2);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-purple);
  color: #fff;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-purple);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography elements */
h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.5px;
}

p {
  font-weight: 300;
}

/* Global Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-cyan);
  flex: none;
}

/* Highlight elements */
.text-gradient {
  background: var(--gradient-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-yellow {
  background-color: var(--color-yellow);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 8px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, filter 0.2s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 73, 233, 0.4);
  filter: brightness(1.1);
}

.btn:active {
  transform: scale(0.98);
}

.btn.btn-cyan {
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 100%);
  color: #1c1c1c;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(60, 228, 252, 0.25);
}

.btn.btn-cyan:hover {
  box-shadow: 0 15px 35px rgba(60, 228, 252, 0.4);
}

.btn.btn-cyan span {
  color: #1c1c1c;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line-border);
  color: var(--color-text);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn.small {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 6px;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-border);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 8px 0;
  background: rgba(28, 28, 28, 0.95);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.nav .logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin: 15px 0 20px;
  font-weight: 900;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--color-cyan);
}

.hero-content .sub {
  font-size: 18px;
  color: var(--color-muted);
  margin-bottom: 35px;
  max-width: 580px;
  font-weight: 300;
}

.hero-content .sub strong {
  color: #fff;
  font-weight: 600;
}

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

.micro-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: 13px;
  color: var(--color-muted);
}

.micro-trust span {
  position: relative;
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
}

.micro-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: 50%;
}

/* Hero Visual & Mockups */
.hero-visual {
  position: relative;
  width: 100%;
}

.browser-mockup {
  background: var(--bg-secondary);
  border: 1px solid var(--line-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  width: 90%;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--line-border);
}

.browser-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  display: block;
}

.browser-bar i:nth-child(1) {
  background: var(--color-purple);
}

.browser-bar i:nth-child(2) {
  background: var(--color-blue);
}

.browser-bar i:nth-child(3) {
  background: var(--color-cyan);
}

.browser-content {
  background: #151515;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

/* Simulation of a landing page inside mockup */
.mockup-page {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
}

.mockup-logo {
  width: 60px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.mockup-title {
  width: 80%;
  height: 24px;
  background: var(--gradient-cyan-purple);
  border-radius: 6px;
}

.mockup-line {
  width: 90%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.mockup-line.short {
  width: 60%;
}

.mockup-cta {
  width: 110px;
  height: 32px;
  background: var(--color-blue);
  border-radius: 6px;
  margin-top: 10px;
}

/* Phone Mockup overlay */
.phone-mockup {
  position: absolute;
  right: -10px;
  bottom: -40px;
  width: 32%;
  aspect-ratio: 9/19;
  border: 6px solid #2d2d2d;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 5;
}

.phone-screen {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: flex-start;
  position: relative;
}

.phone-notch {
  width: 50%;
  height: 12px;
  background: #2d2d2d;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 25%;
}

.phone-logo {
  width: 40px;
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-top: 10px;
}

.phone-title {
  width: 100%;
  height: 18px;
  background: var(--gradient-cyan-purple);
  border-radius: 4px;
  margin-top: 15px;
}

.phone-line {
  width: 90%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.phone-line.short {
  width: 50%;
}

.phone-image {
  width: 100%;
  flex: 1;
  background: linear-gradient(45deg, #1c1c1c, #333);
  border-radius: 6px;
  margin: 10px 0;
}

.phone-cta {
  width: 100%;
  height: 28px;
  background: var(--color-cyan);
  border-radius: 4px;
}

/* Floating offer badge */
.floating-badge {
  position: absolute;
  left: -20px;
  bottom: 40px;
  background: var(--color-yellow);
  color: #000;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: var(--font-title);
  transform: rotate(-4deg);
  box-shadow: 0 15px 35px rgba(255, 255, 149, 0.25);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-badge .b-txt {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 1px;
  line-height: 1.2;
}

.floating-badge .b-price {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

/* Infinite Marquee */
.marquee {
  border-top: 1px solid var(--line-border);
  border-bottom: 1px solid var(--line-border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-secondary);
  position: relative;
  margin-top: 20px;
}

.marquee-track {
  display: inline-block;
  animation: scrollMarquee 25s linear infinite;
}

.marquee span {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 30px;
  display: inline-flex;
  align-items: center;
}

.marquee b {
  color: var(--color-cyan);
  margin-left: 10px;
}

@keyframes scrollMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* General Sections Layout */
section {
  padding: 100px 0;
}

.sec-head {
  max-width: 700px;
  margin-bottom: 60px;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-top: 12px;
  font-weight: 900;
}

.sec-head p {
  color: var(--color-muted);
  font-size: 16px;
  margin-top: 16px;
  font-weight: 300;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-border);
  border: 1px solid var(--line-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-item {
  background: var(--bg-secondary);
  padding: 40px;
  text-align: center;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: var(--bg-tertiary);
}

.stat-item .num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  font-family: var(--font-title);
  background: var(--gradient-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-item .label {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Why Have a Landing Page Section */
.why-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--line-border);
  border-bottom: 1px solid var(--line-border);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.comparison-box {
  background: var(--bg-primary);
  border: 1px solid var(--line-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.comparison-header {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.comparison-item:last-child {
  margin-bottom: 0;
}

.comp-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}

.comp-icon.yes {
  background: rgba(60, 228, 252, 0.15);
  color: var(--color-cyan);
}

.comp-icon.no {
  background: rgba(147, 39, 143, 0.15);
  color: var(--color-purple);
}

.comp-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.comp-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.comp-text p {
  font-size: 13px;
  color: var(--color-muted);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--gradient-dark-card);
  border: 1px solid var(--line-border);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cyan-purple);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-border-hover);
  box-shadow: var(--shadow-purple-glow);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(60, 228, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1);
  background: var(--color-cyan);
  color: #1c1c1c;
}

.benefit-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 300;
}

/* Mobile Focus Highlight Section */
.mobile-focus {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--line-border);
}

.mobile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.list-bullets {
  list-style: none;
  margin-top: 30px;
}

.list-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--color-text);
}

.list-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--color-cyan);
  transform: rotate(45deg);
}

.mobile-showcase-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mobile-glow-back {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(147, 39, 143, 0.4) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

.mobile-mockup-main {
  width: 260px;
  aspect-ratio: 9/19;
  border: 10px solid #2d2d2d;
  border-radius: 40px;
  background: var(--bg-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(60, 228, 252, 0.15);
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.mobile-mockup-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 18px;
  background: #2d2d2d;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.mobile-inner-page {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #111;
  position: relative;
  overflow-y: scroll;
}

/* Hide scrollbar for mockup */
.mobile-inner-page::-webkit-scrollbar {
  display: none;
}

.mobile-inner-page .hero-m {
  padding: 40px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-inner-page .brand-logo-m {
  height: 18px;
  width: auto;
  opacity: 0.9;
}

.mobile-inner-page h4 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.mobile-inner-page p {
  font-size: 11px;
  color: #888;
}

.mobile-inner-page .badge-m {
  background: var(--color-yellow);
  color: #000;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}

.mobile-inner-page .btn-m {
  width: 100%;
  background: var(--color-whatsapp);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.mobile-inner-page .image-m {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  margin: 10px 0;
  border-radius: 4px;
}

.mobile-inner-page .features-m {
  padding: 20px;
  background: #181818;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-inner-page .feat-item-m {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.mobile-inner-page .feat-dot {
  width: 6px;
  height: 6px;
  background: var(--color-cyan);
  border-radius: 50%;
}

/* Portfolio Section (Tilted Slide Showcase) */
.portfolio {
  background: var(--bg-secondary);
  border-top: 1px solid var(--line-border);
  border-bottom: 1px solid var(--line-border);
  overflow: hidden;
  padding: 100px 0 120px;
}

.portfolio .sec-head {
  margin-bottom: 50px;
}

.pf-marquee {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.pf-marquee::before,
.pf-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.pf-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.pf-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-secondary), transparent);
}

.pf-tilt {
  transform: rotate(-4deg);
  margin: 40px 0;
}

.pf-row {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 12px 0;
  animation: slidePortfolio 60s linear infinite;
}

.pf-row.rev {
  animation-direction: reverse;
  animation-duration: 75s;
  margin-top: 24px;
}

.pf-row:hover {
  animation-play-state: paused;
}

@keyframes slidePortfolio {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.pf-card {
  height: 240px;
  flex: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.pf-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.pf-card.desktop {
  width: 380px;
}

.pf-card.phone {
  width: 120px;
}

/* Style inside slider mockups */
.pf-card .browser-m {
  height: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--line-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.pf-card .browser-m .bar {
  padding: 6px 12px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--line-border);
  display: flex;
  gap: 4px;
}

.pf-card .browser-m .bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.pf-card .browser-m .screen {
  flex: 1;
  background-size: cover;
  background-position: top center;
  transition: background-position 4s ease;
}

.pf-card:hover .browser-m .screen {
  background-position: bottom center;
}

.pf-card .phone-m {
  height: 100%;
  background: var(--bg-primary);
  border: 4px solid var(--bg-tertiary);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.pf-card .phone-m .screen {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  transition: background-position 4s ease;
}

.pf-card:hover .phone-m .screen {
  background-position: bottom center;
}

.pf-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--color-muted);
}

.pf-note b {
  color: var(--color-cyan);
}

/* Steps / How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step-counter;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line-border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  counter-increment: step-counter;
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: var(--color-purple);
}

.step-card::before {
  content: "0" counter(step-counter);
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(147, 39, 143, 0.4);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 300;
}

/* Pricing Section (CTA Final) */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #151020 100%);
  position: relative;
}

.pricing-glow {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 73, 233, 0.15) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.pricing-box {
  background: var(--bg-secondary);
  border: 2px solid var(--color-purple);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-purple-glow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--color-cyan);
  color: #1c1c1c;
  font-size: 9px;
  font-weight: 900;
  padding: 6px 30px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-box .setup-price {
  font-family: var(--font-title);
  margin-bottom: 10px;
}

.pricing-box .setup-price span {
  font-size: 16px;
  color: var(--color-muted);
  font-weight: 400;
}

.pricing-box .setup-price .price {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
}

.pricing-box .plus {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-cyan);
  font-weight: 800;
  margin: 10px 0;
}

.pricing-box .monthly-price {
  font-family: var(--font-title);
  margin-bottom: 30px;
}

.pricing-box .monthly-price .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-yellow);
}

.pricing-box .monthly-price span {
  font-size: 13px;
  color: var(--color-muted);
}

.pricing-box .btn {
  width: 100%;
  margin-bottom: 16px;
}

.pricing-box .terms {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 300;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-grid a.btn {
  margin: 32px auto 0;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--line-border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--line-border-hover);
}

.faq-item summary {
  padding: 24px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--color-cyan);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] {
  border-color: var(--color-purple);
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  color: var(--color-purple);
}

.faq-answer {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Footer */
footer {
  border-top: 1px solid var(--line-border);
  padding: 50px 0;
  background: #151515;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 300;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Scroll reveal class animations */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}

.rv.on {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track,
  .pf-row {
    animation: none;
  }
}

/* Responsiveness / Media Queries */

/* Tablet Layouts */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content .sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .micro-trust {
    justify-content: center;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .list-bullets {
    display: inline-block;
    text-align: left;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pricing-box {
    max-width: 500px;
    margin: 0 auto;
  }

  .pf-card.desktop {
    width: 300px;
  }
}

/* Mobile Portrait Layouts */
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 30px;
  }

  .pricing-box {
    padding: 32px 24px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas .btn {
    width: 100%;
  }

  .floating-badge {
    padding: 10px 16px;
    bottom: 20px;
  }

  .floating-badge .b-price {
    font-size: 20px;
  }

  .phone-mockup {
    bottom: -20px;
  }
}