/* ═══════════════════════════════════════════════════════
   nxt pay — Light Theme
   Font: Rubik (Google Fonts)
   Primary: linear-gradient(90deg, #00aa82, #00aa82 25%, #ffcf81)
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --green:          #00aa82;
  --green-dark:     #008f6d;
  --green-light:    #e6f7f3;
  --gold:           #ffcf81;
  --gold-dark:      #e8a832;
  --gold-light:     #fff8ec;
  --primary:        linear-gradient(90deg, #00aa82, #00aa82 25%, #ffcf81);
  --primary-soft:   linear-gradient(90deg, rgba(0,170,130,0.1), rgba(255,207,129,0.15));
  --bg:             #f5f7f6;
  --bg-white:       #ffffff;
  --bg-section:     #f0f4f2;
  --border:         #e2eae7;
  --border-strong:  #c8d8d2;
  --text-primary:   #0f2b24;
  --text-secondary: #3d5c53;
  --text-muted:     #7a9e94;
  --shadow-sm:      0 2px 12px rgba(0,170,130,0.07);
  --shadow-md:      0 8px 32px rgba(0,170,130,0.12);
  --shadow-lg:      0 20px 60px rgba(0,170,130,0.15);
  --shadow-card:    0 4px 24px rgba(15,43,36,0.08);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .rubik {
  font-family: 'Rubik', sans-serif;
}

/* Remove noise overlay from dark theme */
body::before { display: none; }

/* ─── UTILITY ─── */
.text-green   { color: var(--green); }
.text-gold    { color: var(--gold-dark); }
.bg-white-card { background: var(--bg-white); }

/* Gradient text helper */
.gradient-text {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(0,170,130,0.06);
}

.navbar-brand {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.03em;
}

.navbar-brand span {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  padding: 0.4rem 1rem !important;
}

.nav-link:hover { color: var(--green) !important; }

.btn-nav {
  background: var(--primary);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  padding: 0.45rem 1.3rem !important;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,170,130,0.3);
}

.btn-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,170,130,0.35);
  color: #ffffff !important;
}

/* Toggler */
.navbar-toggler { color: var(--text-secondary); }
.navbar-toggler:focus { box-shadow: none; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

/* Replace dark glows with light ones */
.hero-glow { display: none; }

#hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,130,0.1) 0%, transparent 65%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,207,129,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid rgba(0,170,130,0.25);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  animation: fadeDown 0.6s ease both;
}

.hero-badge i { font-size: 0.7rem; }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: fadeDown 0.7s 0.1s ease both;
}

.hero-title .gold-text {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeDown 0.7s 0.2s ease both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.3s ease both;
}

/* ─── BUTTONS ─── */
.btn-gold {
  background: var(--primary);
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem 2rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,170,130,0.28);
  color: #ffffff;
  opacity: 0.92;
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--text-primary);
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 2rem;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-light-custom:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}

/* ─── HERO CARD VISUAL ─── */
.hero-card-visual {
  position: relative;
  animation: fadeLeft 0.9s 0.3s ease both;
}

.card-mock {
  background: linear-gradient(135deg, #0f4d3c 0%, #00aa82 50%, #00c994 100%);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,170,130,0.25), 0 0 0 1px rgba(255,255,255,0.1);
}

.card-mock::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,207,129,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.card-mock::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.card-chip {
  width: 45px; height: 33px;
  background: linear-gradient(135deg, #ffcf81, #e8a832);
  border-radius: 6px;
  margin-bottom: 2.5rem;
  position: relative;
}

.card-chip::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
}

.card-number {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
}

.card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-value {
  font-family: 'Rubik', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
}

.card-mastercard { display: flex; }
.mc-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  opacity: 0.92;
}
.mc-red    { background: #eb001b; margin-right: -12px; }
.mc-orange { background: #f79e1b; }

/* Floating stats */
.stat-float {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-md);
}

.stat-float-1 {
  top: -20px; left: -30px;
  animation: float 4s ease-in-out infinite;
  z-index: 9;
}

.stat-float-2 {
  bottom: 20px; right: -20px;
  animation: float 4s 2s ease-in-out infinite;
}

.stat-num {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── TRUSTED BAR ─── */
.trusted-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}

.trusted-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
}

.trusted-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  animation: marquee 20s linear infinite;
}

.logo-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.4rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ─── SECTION COMMONS ─── */
section { padding: 6rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
  background: var(--green-light);
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(0,170,130,0.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  font-weight: 300;
}

/* ─── HOW IT WORKS ─── */
#how { background: var(--bg-section); }

.step-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,170,130,0.08);
  line-height: 1;
  position: absolute;
  top: 1.2rem; right: 1.5rem;
}

.step-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border: 1.5px solid rgba(0,170,130,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--green);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

/* ─── STATS ─── */
#stats {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; padding: 1rem; }

.stat-big {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  height: 80px;
  margin: auto;
}

/* ─── FEATURES ─── */
#features { background: var(--bg); }

.feature-row { margin-bottom: 5rem; }
.feature-row:last-child { margin-bottom: 0; }

.feature-visual {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-visual::before {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.fv-gold::before {
  background: rgba(255,207,129,0.3);
  top: -80px; right: -80px;
}

.fv-blue::before {
  background: rgba(0,170,130,0.1);
  bottom: -80px; left: -80px;
}

.feature-icon-lg {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}

.feature-stat {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-tag {
  display: inline-block;
  background: var(--green-light);
  border: 1px solid rgba(0,170,130,0.2);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.feature-list { list-style: none; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.feature-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* Transaction mock */
.txn-list { display: flex; flex-direction: column; gap: 0.75rem; }

.txn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
}

.txn-left { display: flex; align-items: center; gap: 0.8rem; }

.txn-dot {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.txn-name { font-size: 0.88rem; font-weight: 500; color: var(--text-primary); }
.txn-date { font-size: 0.7rem; color: var(--text-muted); }

.txn-amount {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-dark);
}

/* Integration grid */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.int-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.int-pill:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-light);
}

/* Progress bar override */
.reconcile-bar-bg {
  background: var(--bg);
  border-radius: 100px;
  height: 6px;
}

.reconcile-bar-fill {
  background: var(--primary);
  height: 100%;
  border-radius: 100px;
}

/* ─── REWARDS ─── */
#rewards { background: var(--bg-section); }

.reward-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.reward-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reward-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reward-pct {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.reward-title {
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  font-size: 1rem;
}

.reward-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

/* ─── SECURITY ─── */
#security { background: var(--bg-white); }

.security-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.security-card:hover {
  border-color: rgba(0,170,130,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.security-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}

.security-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.security-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

/* ─── PRICING ─── */
#pricing { background: var(--bg-section); }

.pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, #f0faf7 0%, #ffffff 100%);
  box-shadow: 0 8px 40px rgba(0,170,130,0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.pricing-price {
  font-family: 'Rubik', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 1rem 0 0.4rem;
  color: var(--text-primary);
}

.pricing-price.gold {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-divider {
  border-color: var(--border);
  margin: 1.5rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}

.pricing-feature i { color: var(--green); }

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

.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: rgba(0,170,130,0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--green);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.3rem;
}

.faq-question.open i { transform: rotate(45deg); }

/* ─── CTA ─── */
#cta {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,170,130,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,207,129,0.15) 0%, transparent 70%);
  top: 20%; right: 10%;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text-primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 0 2rem;
}

.footer-brand {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
}

.footer-brand span {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  font-weight: 300;
}

.footer-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-link:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  font-weight: 300;
}

.footer-mastercard { display: flex; align-items: center; gap: 8px; }

.footer-social {
  color: rgba(255,255,255,0.35) !important;
  font-size: 1.1rem;
  transition: color 0.2s !important;
  text-decoration: none;
}

.footer-social:hover { color: rgba(255,255,255,0.85) !important; }

/* ─── SCROLL ANIMATIONS ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .stat-float { display: none; }
  .hero-card-visual { margin-top: 3rem; }
  .feature-row.flex-lg-row-reverse { flex-direction: column !important; }
}

@media (max-width: 767px) {
  section { padding: 4rem 0; }
  .hero-title { font-size: 2.6rem; }
  .cta-title { font-size: 2rem; }
  .pricing-card.featured { margin-top: 1rem; }
}