:root {
  --jungle-dark: #0a1a0f;
  --jungle-deep: #0f2418;
  --jungle-mid: #1a3d28;
  --jungle-light: #2d6a45;
  --jungle-bright: #3d9e60;
  --accent-gold: #f5c842;
  --accent-lime: #a8e063;
  --accent-coral: #ff6b6b;
  --accent-sky: #64d8ff;
  --text-white: #f0f8f0;
  --text-muted: #8ab89a;
  --card-bg: rgba(15, 36, 24, 0.85);
  --card-border: rgba(61, 158, 96, 0.25);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--jungle-dark);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Animated Background ─── */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(45,106,69,0.35) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 80%, rgba(26,61,40,0.4) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 50% 50%, rgba(15,36,24,0.8) 0%, transparent 70%),
              linear-gradient(180deg, #050e08 0%, #0a1a0f 40%, #0d2014 100%);
}

.leaf {
  position: absolute;
  opacity: 0.12;
  animation: sway 8s ease-in-out infinite alternate;
}
.leaf svg { filter: drop-shadow(0 0 20px rgba(61,158,96,0.3)); }
.leaf:nth-child(1) { top: -5%; left: -3%; animation-delay: 0s; transform: scale(1.8) rotate(-15deg); }
.leaf:nth-child(2) { top: -8%; right: -5%; animation-delay: -3s; transform: scale(2.2) rotate(20deg) scaleX(-1); }
.leaf:nth-child(3) { bottom: 10%; left: -4%; animation-delay: -5s; transform: scale(2) rotate(10deg); }
.leaf:nth-child(4) { bottom: -5%; right: -3%; animation-delay: -1.5s; transform: scale(1.6) rotate(-25deg) scaleX(-1); }
.leaf:nth-child(5) { top: 40%; left: -6%; animation-delay: -4s; transform: scale(1.4) rotate(5deg); }

@keyframes sway {
  0% { transform: var(--base-transform, rotate(0deg)) translateY(0px); }
  100% { transform: var(--base-transform, rotate(0deg)) translateY(-18px) rotate(3deg); }
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ─── Layout ─── */
.page { position: relative; z-index: 1; }

/* ─── Header ─── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(61,158,96,0.15);
  backdrop-filter: blur(12px);
  background: rgba(10,26,15,0.7);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--jungle-bright), var(--accent-lime));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(61,158,96,0.5);
}

.logo span { color: var(--accent-lime); }

nav { display: flex; gap: 32px; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
nav a:hover { color: var(--text-white); }

.header-cta {
  background: linear-gradient(135deg, var(--jungle-bright), var(--accent-lime));
  color: var(--jungle-dark);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(61,158,96,0.35);
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,158,96,0.5); }

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: 90px 48px 70px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,158,96,0.15);
  border: 1px solid rgba(61,158,96,0.35);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--accent-lime);
  margin-bottom: 28px;
  animation: fade-in 0.6s ease;
}

.hero-badge::before { content: '🌿'; }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fade-up 0.7s ease;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-lime) 0%, var(--accent-gold) 50%, var(--jungle-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 42px;
  line-height: 1.7;
  animation: fade-up 0.8s ease;
}

/* ─── 3D Scene Display ─── */
.hero-3d {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  perspective: 800px;
}

.floating-cards-3d {
  display: flex;
  gap: 20px;
  transform: rotateX(15deg) rotateY(-5deg);
  animation: float-scene 6s ease-in-out infinite alternate;
}

@keyframes float-scene {
  0% { transform: rotateX(15deg) rotateY(-5deg) translateY(0px); }
  100% { transform: rotateX(10deg) rotateY(5deg) translateY(-15px); }
}

.mini-card-3d {
  width: 80px;
  height: 110px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(61,158,96,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  position: relative;
  top: var(--card-offset, 0px);
}

.mini-card-3d:nth-child(1) { --card-offset: 20px; animation: bob 4s ease-in-out infinite; }
.mini-card-3d:nth-child(2) { --card-offset: -10px; animation: bob 4s ease-in-out infinite 0.5s; }
.mini-card-3d:nth-child(3) { --card-offset: 5px; animation: bob 4s ease-in-out infinite 1s; }
.mini-card-3d:nth-child(4) { --card-offset: -20px; animation: bob 4s ease-in-out infinite 1.5s; }
.mini-card-3d:nth-child(5) { --card-offset: 10px; animation: bob 4s ease-in-out infinite 2s; }

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

.mini-card-3d .card-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── Section Title ─── */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
}

.section-label {
  display: inline-block;
  background: rgba(61,158,96,0.15);
  border: 1px solid rgba(61,158,96,0.3);
  color: var(--accent-lime);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

/* ─── Products Grid ─── */
.products-section {
  padding: 80px 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 28px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.3s;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  animation: fade-up 0.6s ease both;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent, var(--jungle-bright)), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(61,158,96,0.12);
  border-color: rgba(61,158,96,0.45);
}

.product-card.featured {
  border-color: rgba(245,200,66,0.4);
  --card-accent: var(--accent-gold);
}

.product-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--accent-gold), #e8a800);
  color: var(--jungle-dark);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.card-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.card-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: inherit;
  opacity: 0.4;
  filter: blur(10px);
  z-index: -1;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(61,158,96,0.15);
  color: var(--accent-lime);
  border: 1px solid rgba(61,158,96,0.25);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-plans {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 10px 14px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.plan-row:hover,
.plan-row.selected {
  background: rgba(61,158,96,0.12);
  border-color: rgba(61,158,96,0.4);
}

.plan-row.selected {
  border-color: var(--accent-lime);
}

.plan-name {
  font-size: 14px;
  font-weight: 500;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
}

.plan-period {
  font-size: 11px;
  color: var(--text-muted);
}

.buy-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--jungle-bright), var(--accent-lime));
  color: var(--jungle-dark);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(61,158,96,0.3);
  letter-spacing: 0.5px;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61,158,96,0.5);
}

/* ─── Features ─── */
.features-section {
  padding: 60px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  background: rgba(15,36,24,0.6);
  border: 1px solid rgba(61,158,96,0.15);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Payment Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,14,8,0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: linear-gradient(160deg, #0f2418 0%, #0a1a0f 100%);
  border: 1px solid rgba(61,158,96,0.3);
  border-radius: 28px;
  padding: 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 60px rgba(61,158,96,0.1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: rgba(255,255,255,0.12); color: white; }

.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.5;
}


/* Customer details */
.customer-form {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 18px;
}
.form-row { margin-bottom: 12px; }
.form-row:last-child { margin-bottom: 0; }
.form-row label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-row input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: white;
  font-size: 14px;
  outline: none;
}
.form-row input:focus { border-color: rgba(61,158,96,0.6); }
.form-row input::placeholder { color: rgba(255,255,255,0.24); }

/* Order Summary */
.order-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 24px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}

.order-row.total {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 10px;
  padding-top: 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-gold);
}

.order-row .label { color: var(--text-muted); }

/* Payment Methods */
.payment-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.25s;
}

.payment-option:hover {
  border-color: rgba(61,158,96,0.4);
  background: rgba(61,158,96,0.07);
}

.payment-option.selected {
  border-color: var(--method-color, var(--jungle-bright));
  background: rgba(var(--method-rgb, 61,158,96), 0.1);
}

.payment-logo {
  width: 52px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.payment-logo.bkash { background: #e2136e; color: white; font-family: 'Syne', sans-serif; }
.payment-logo.nagad { background: linear-gradient(135deg, #f04e23, #f8931d); color: white; font-family: 'Syne', sans-serif; }
.payment-logo.rocket { background: #8332ac; color: white; font-family: 'Syne', sans-serif; }

.payment-info { flex: 1; }
.payment-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.payment-sub { color: var(--text-muted); font-size: 12px; }

.payment-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.payment-option.selected .payment-check {
  background: var(--method-color, var(--jungle-bright));
  border-color: var(--method-color, var(--jungle-bright));
}

.payment-check::after {
  content: '✓';
  font-size: 12px;
  color: white;
  opacity: 0;
  transition: opacity 0.2s;
  font-weight: 700;
}

.payment-option.selected .payment-check::after { opacity: 1; }

/* ─── Payment Instructions ─── */
.instr-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.instr-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}

.instr-logo.bkash { background: #e2136e; color: white; }
.instr-logo.nagad { background: linear-gradient(135deg, #f04e23, #f8931d); color: white; }
.instr-logo.rocket { background: #8332ac; color: white; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.step-item {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 20px;
}

.step-item:last-child { padding-bottom: 0; }

.step-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

.step-item:last-child::before { display: none; }

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--method-color, var(--jungle-bright));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(var(--method-rgb, 61,158,96), 0.4);
}

.step-content { padding-top: 6px; }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.step-number-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: 'DM Sans', monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.step-number-copy:hover { background: rgba(255,255,255,0.1); }
.step-number-copy .copy-icon { font-size: 14px; color: var(--text-muted); }

/* ─── Transaction Input ─── */
.txn-amount-info {
  background: rgba(var(--method-rgb, 61,158,96), 0.1);
  border: 1px solid rgba(var(--method-rgb, 61,158,96), 0.3);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.txn-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold);
}

.txn-amount-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.txn-input-wrap { margin-bottom: 20px; }
.txn-input-wrap label { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; display: block; }

.txn-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 18px;
  color: white;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
  transition: border-color 0.2s;
  outline: none;
}

.txn-input:focus { border-color: rgba(61,158,96,0.6); }
.txn-input::placeholder { color: rgba(255,255,255,0.2); letter-spacing: 0; }

/* ─── Action Buttons ─── */
.modal-btn {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}

.modal-btn.primary {
  background: linear-gradient(135deg, var(--jungle-bright), var(--accent-lime));
  color: var(--jungle-dark);
  box-shadow: 0 4px 20px rgba(61,158,96,0.3);
}

.modal-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(61,158,96,0.5); }
.modal-btn.primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.modal-btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  margin-top: 10px;
}

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

.modal-btn.method-color {
  background: var(--method-color, var(--jungle-bright));
  color: white;
  box-shadow: 0 4px 20px rgba(var(--method-rgb, 61,158,96), 0.4);
}

/* ─── Result States ─── */
.result-box {
  text-align: center;
  padding: 20px 0;
}

.result-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.result-icon.success {
  background: rgba(61,158,96,0.2);
  border: 2px solid rgba(61,158,96,0.5);
  box-shadow: 0 0 40px rgba(61,158,96,0.3);
  animation: pulse-success 2s ease infinite;
}

.result-icon.error {
  background: rgba(255,80,80,0.15);
  border: 2px solid rgba(255,80,80,0.4);
  box-shadow: 0 0 40px rgba(255,80,80,0.25);
  animation: shake 0.4s ease;
}

@keyframes pulse-success {
  0%, 100% { box-shadow: 0 0 30px rgba(61,158,96,0.3); }
  50% { box-shadow: 0 0 60px rgba(61,158,96,0.6); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.result-title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.result-msg {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--accent-gold);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}

/* ─── Verifying ─── */
.verifying-wrap { text-align: center; padding: 30px 0; }

.spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(61,158,96,0.15);
  border-top-color: var(--jungle-bright);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.verify-text {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.verify-sub { color: var(--text-muted); font-size: 14px; }

/* ─── Footer ─── */
footer {
  text-align: center;
  padding: 48px;
  border-top: 1px solid rgba(61,158,96,0.1);
  color: var(--text-muted);
  font-size: 14px;
}

footer a { color: var(--accent-lime); text-decoration: none; }

/* ─── Animations ─── */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--jungle-dark); }
::-webkit-scrollbar-thumb { background: var(--jungle-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--jungle-bright); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  header { padding: 16px 20px; }
  nav { display: none; }
  .hero { padding: 60px 20px 40px; }
  .products-section { padding: 60px 20px; }
  .features-section { padding: 40px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .floating-cards-3d { gap: 10px; }
  .mini-card-3d { width: 60px; height: 85px; font-size: 24px; }
  .modal { padding: 24px 20px; }
}
