/* =============================================
   PayGoo Landing Page - CSS Puro
   Brand green: #53e053
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: #060910;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }
::-webkit-scrollbar-thumb { background: rgba(83,224,83,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(83,224,83,0.5); }

/* Utility classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.gradient-text {
  background: linear-gradient(135deg, #53e053 0%, #3cc43c 50%, #2aa32a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(83, 224, 83, 0.15);
}

/* Animations */
@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(40px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideOutRight {
  0% { opacity: 1; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: translateX(40px) scale(0.95); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(83, 224, 83, 0.1); }
  50% { box-shadow: 0 0 30px rgba(83, 224, 83, 0.2); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
.animate-slide-in { animation: slideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-out { animation: slideOutRight 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards; }

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 640px) { .navbar-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .navbar-inner { padding: 0 2rem; height: 80px; }
}
.navbar-logo { flex-shrink: 0; position: relative; z-index: 60; }
.navbar-logo img { height: 32px; width: auto; }
@media (min-width: 1024px) { .navbar-logo img { height: 40px; } }

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .navbar-links { display: flex; } }
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.navbar-links a:hover { color: #fff; }

.navbar-ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .navbar-ctas { display: flex; } }
.btn-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.btn-login:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-register {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0e17;
  background: #53e053;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.btn-register:hover { background: #45c745; }

/* Mobile hamburger */
.hamburger {
  display: block;
  position: relative;
  z-index: 60;
  padding: 0.5rem;
  color: #fff;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger svg { width: 24px; height: 24px; }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.mobile-overlay.open { display: block; }
@media (min-width: 1024px) { .mobile-overlay { display: none !important; } }
.mobile-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 16, 0.98);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
}
.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 110;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.2s;
}
.mobile-close:hover { color: #53e053; border-color: rgba(83,224,83,0.3); }
.mobile-close svg { width: 22px; height: 22px; }
.mobile-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 2rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 320px;
}
.mobile-nav-links a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: #53e053; }
.mobile-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1rem 0;
}
.mobile-btn-login {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  display: block;
}
.mobile-btn-login:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.mobile-btn-register {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0e17;
  background: #53e053;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  display: block;
}
.mobile-btn-register:hover { background: #45c745; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #060910;
}
.hero-glow-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: rgba(83, 224, 83, 0.04);
  border-radius: 50%;
  filter: blur(120px);
}
.hero-glow-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 400px;
  background: rgba(83, 224, 83, 0.02);
  border-radius: 50%;
  filter: blur(100px);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: 640px) { .hero-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 0 2rem; } }
.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-left { text-align: center; }
@media (min-width: 1024px) { .hero-left { text-align: left; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(83, 224, 83, 0.2);
  background: rgba(83, 224, 83, 0.05);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53e053;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hero-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  color: #53e053;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero-desc { margin: 0 0 2rem; } }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0e17;
  background: #53e053;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.hero-cta-primary:hover {
  background: #45c745;
  box-shadow: 0 0 30px rgba(83, 224, 83, 0.25);
}
.hero-cta-primary svg { width: 18px; height: 18px; }
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.hero-cta-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero-stats { gap: 2rem; } }
@media (min-width: 1024px) { .hero-stats { justify-content: flex-start; } }
.hero-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #53e053;
}
@media (min-width: 640px) { .hero-stat-value { font-size: 1.5rem; } }
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.125rem;
}
.hero-stat { text-align: center; }

/* Notifications panel */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) { .hero-right { align-items: flex-end; } }
.hero-right-glow {
  position: absolute;
  inset: -2rem;
  background: rgba(83, 224, 83, 0.03);
  border-radius: 1.5rem;
  filter: blur(48px);
}
.notifications-container {
  position: relative;
  width: 100%;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
#notificationsList {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.notif-header {
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.notif-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.notif-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.notif-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53e053;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.notif-header-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.notif-header-live {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}
.notif-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.notif-stat {
  text-align: center;
  flex: 1;
}
.notif-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
}
.notif-stat-value.green { color: #53e053; }
.notif-stat-value.white { color: #fff; }
.notif-stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.notif-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

/* Individual notification */
.notification-card {
  border-radius: 0.75rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.notification-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-icon.pix {
  background: rgba(83, 224, 83, 0.1);
  border: 1px solid rgba(83, 224, 83, 0.2);
}
.notif-icon.card {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.notif-icon svg { width: 14px; height: 14px; }
.notif-icon.pix svg { color: #53e053; }
.notif-icon.card svg { color: #60a5fa; }
.notif-body { flex: 1; min-width: 0; }
.notif-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notif-status {
  display: flex;
  align-items: center;
  gap: 4px;
}
.notif-status svg { width: 10px; height: 10px; color: #53e053; flex-shrink: 0; }
.notif-status span {
  font-size: 11px;
  font-weight: 500;
  color: #53e053;
}
.notif-badge {
  font-size: 9px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 9999px;
}
.notif-badge.pix { background: rgba(83, 224, 83, 0.1); color: #53e053; }
.notif-badge.card { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.notif-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.notif-name {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notif-amount {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, #060910, transparent);
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section {
  position: relative;
  padding: 6rem 0;
}
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-bg-dark { background: #060910; }
.section-bg-darker { background: #0a0e17; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #53e053;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-desc {
  color: rgba(255,255,255,0.4);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
}
@media (min-width: 640px) { .section-desc { font-size: 1.125rem; } }

/* Ambient glow */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* =============================================
   SOLUTIONS
   ============================================= */
.solutions-glow {
  top: 50%;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(83, 224, 83, 0.02);
  transform: translateY(-50%);
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(3, 1fr); } }
.solution-card {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s ease;
}
@media (min-width: 1024px) { .solution-card { padding: 2rem; } }
.solution-card:hover { transform: translateY(-4px); }
.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(83, 224, 83, 0.1);
  border: 1px solid rgba(83, 224, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.solution-card:hover .solution-icon { background: rgba(83, 224, 83, 0.15); }
.solution-icon svg { width: 22px; height: 22px; color: #53e053; }
.solution-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(83, 224, 83, 0.8);
  background: rgba(83, 224, 83, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.solution-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.solution-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits-line-top,
.benefits-line-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(83, 224, 83, 0.1), transparent);
}
.benefits-line-top { top: 0; }
.benefits-line-bottom { bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.stat-card {
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}
@media (min-width: 1024px) { .stat-card { padding: 1.5rem; } }
.stat-card svg { width: 20px; height: 20px; color: #53e053; margin: 0 auto 0.75rem; }
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) { .stat-value { font-size: 1.875rem; } }
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.benefits-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.5s;
}
.benefit-item:hover { background: rgba(255,255,255,0.03); }
.benefit-bar {
  flex-shrink: 0;
  width: 4px;
  border-radius: 9999px;
  background: linear-gradient(to bottom, #53e053, rgba(83, 224, 83, 0.2));
}
.benefit-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.benefit-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* Benefits right cards */
.benefits-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefits-cards-glow {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 160px;
  height: 160px;
  background: rgba(83, 224, 83, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}
.benefit-rate-card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.benefit-rate-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.benefit-rate-dot-wrap {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(83, 224, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-rate-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #53e053;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.benefit-rate-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.benefit-rate-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.benefit-rate-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #53e053;
}
.benefit-rate-status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.benefit-rate-right { text-align: right; }

/* =============================================
   PRICING
   ============================================= */
.pricing-glow {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(83, 224, 83, 0.02);
  filter: blur(120px);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 768px;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.pricing-card {
  border-radius: 1rem;
  padding: 2rem;
}
.pricing-card.featured {
  border-color: rgba(83, 224, 83, 0.2);
  box-shadow: 0 0 0 1px rgba(83, 224, 83, 0.1);
  position: relative;
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #53e053;
  color: #0a0e17;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}
.pricing-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pricing-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(83, 224, 83, 0.1);
  border: 1px solid rgba(83, 224, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-icon svg { width: 20px; height: 20px; color: #53e053; }
.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.pricing-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.pricing-amount {
  margin-bottom: 1.5rem;
}
.pricing-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
}
@media (min-width: 1024px) { .pricing-number { font-size: 3rem; } }
.pricing-percent {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.pricing-plus {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-left: 0.25rem;
}
.pricing-per {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.25rem;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.pricing-feature svg { width: 16px; height: 16px; color: #53e053; flex-shrink: 0; }
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.pricing-btn.outline {
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.pricing-btn.outline:hover { border-color: rgba(255,255,255,0.2); color: #fff; }
.pricing-btn.filled {
  background: #53e053;
  color: #0a0e17;
}
.pricing-btn.filled:hover {
  background: #45c745;
  box-shadow: 0 0 20px rgba(83, 224, 83, 0.2);
}
.pricing-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.pricing-btn:hover svg { transform: translateX(4px); }
.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2rem;
}

/* =============================================
   INTEGRATIONS
   ============================================= */
.integrations-glow {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: rgba(83, 224, 83, 0.02);
  filter: blur(100px);
}
.integrations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 896px;
  margin: 0 auto;
}
@media (min-width: 640px) { .integrations-grid { grid-template-columns: repeat(3, 1fr); } }
.integration-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s;
}
@media (min-width: 1024px) { .integration-card { padding: 2rem; } }
.integration-card:hover { transform: translateY(-4px); }
.integration-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(83, 224, 83, 0.1);
  border: 1px solid rgba(83, 224, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background 0.3s;
}
.integration-card:hover .integration-icon { background: rgba(83, 224, 83, 0.15); }
.integration-icon svg { width: 24px; height: 24px; color: #53e053; }
.integration-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.integration-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.integrations-link {
  text-align: center;
  margin-top: 3rem;
}
.integrations-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #53e053;
  transition: color 0.2s;
}
.integrations-link a:hover { color: #45c745; }
.integrations-link svg { width: 16px; height: 16px; }

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(83, 224, 83, 0.2); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
@media (min-width: 640px) { .faq-trigger { font-size: 1rem; } }
.faq-item.open .faq-trigger { color: #53e053; }
.faq-trigger:hover { color: #fff; }
.faq-chevron {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding-bottom: 1.25rem;
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .cta-section { padding: 8rem 0; } }
.cta-bg {
  position: absolute;
  inset: 0;
  background: #060910;
}
.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(83, 224, 83, 0.03), rgba(83, 224, 83, 0.06), rgba(83, 224, 83, 0.02));
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(83, 224, 83, 0.04);
  border-radius: 50%;
  filter: blur(150px);
}
.cta-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 640px) { .cta-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .cta-content { padding: 0 2rem; } }
.cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 640px) { .cta-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 3rem; } }
@media (min-width: 1280px) { .cta-title { font-size: 3.75rem; } }
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 640px) { .cta-desc { font-size: 1.125rem; } }
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0e17;
  background: #53e053;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.cta-btn-primary:hover {
  background: #45c745;
  box-shadow: 0 0 40px rgba(83, 224, 83, 0.25);
}
.cta-btn-primary svg { width: 18px; height: 18px; }
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.cta-btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #050810;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1rem;
}
@media (min-width: 640px) { .footer-inner { padding: 3.5rem 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 4rem 2rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.footer-brand img { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-email:hover { color: #53e053; }
.footer-email svg { width: 14px; height: 14px; }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.6); }
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
.footer-made {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.15);
}
.footer-made .dot { color: #53e053; }
