/* ═══════════════════════════════════════════════════
   PHONEPHIXER — MAIN CSS
   Design System + Global Styles
═══════════════════════════════════════════════════ */

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

/* ── CSS VARIABLES ── */
:root {
  /* Brand Colors */
  --teal-1: #00E8C0;
  --teal-2: #00C4A0;
  --teal-3: #00A896;
  --teal-4: #007A65;
  --teal-5: #00574A;
  --teal-6: #00201A;

  /* Gradients */
  --grad-main: linear-gradient(135deg, #00E8C0 0%, #00A896 50%, #007A65 100%);
  --grad-dark: linear-gradient(135deg, #00574A 0%, #00201A 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,232,192,0.15) 0%, rgba(0,168,150,0.05) 100%);

  /* Backgrounds */
  --bg: #F0FAF8;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-dark: #00201A;

  /* Text */
  --text-primary: #022520;
  --text-secondary: #5AAAA0;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;

  /* Borders */
  --border: rgba(0,168,150,0.2);
  --border-strong: rgba(0,168,150,0.4);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,120,100,0.08);
  --shadow-md: 0 8px 32px rgba(0,120,100,0.12);
  --shadow-lg: 0 20px 60px rgba(0,120,100,0.18);
  --shadow-teal: 0 8px 32px rgba(0,168,150,0.3);

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav height */
  --nav-h: 80px;
}

/* ── DARK THEME VARIABLES ── */
[data-theme="dark"] {
  --bg: #0D1F1C;
  --bg-white: #122420;
  --bg-card: #163530;
  --bg-dark: #060E0C;

  --text-primary: #E0FAF6;
  --text-secondary: #5AAAA0;
  --text-muted: #8ABFBA;

  --border: rgba(0,232,192,0.15);
  --border-strong: rgba(0,232,192,0.3);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

/* Dark mode overrides for components that use hard-coded white */
[data-theme="dark"] .navbar { background: #122420 !important; }
[data-theme="dark"] .mobile-menu { background: #122420 !important; }
[data-theme="dark"] .navbar.scrolled { background: #122420 !important; box-shadow: 0 2px 16px rgba(0,0,0,0.5); }

/* ── DARK MODE: COMPREHENSIVE VISIBILITY FIXES ── */

/* Cards & Sections */
[data-theme="dark"] .card,
[data-theme="dark"] .sell-card,
[data-theme="dark"] .auth-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .hd-banner,
[data-theme="dark"] .refurb-card,
[data-theme="dark"] .how-step,
[data-theme="dark"] .brand-btn,
[data-theme="dark"] .issue-card,
[data-theme="dark"] .pp-id-card {
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
}

/* Headings inside cards — boost contrast */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--text-primary);
}

/* Teal-colored headings — make them brighter in dark */
[data-theme="dark"] .section-title,
[data-theme="dark"] .how-step-title,
[data-theme="dark"] .sell-step-title,
[data-theme="dark"] [style*="color:var(--teal"],
[data-theme="dark"] [class*="title"] {
  color: var(--teal-1) !important;
}

/* All form inputs, selects, textareas */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea,
[data-theme="dark"] .form-input,
[data-theme="dark"] .field-group input,
[data-theme="dark"] .field-group select,
[data-theme="dark"] .field-group textarea,
[data-theme="dark"] .auth-input,
[data-theme="dark"] .form-control {
  background: #1a3a35 !important;
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--text-secondary) !important;
  opacity: 0.7;
}
[data-theme="dark"] select option {
  background: #122420;
  color: var(--text-primary);
}

/* Brand buttons text */
[data-theme="dark"] .brand-btn span,
[data-theme="dark"] .brand-btn .brand-name {
  color: var(--text-primary) !important;
}
[data-theme="dark"] .brand-btn {
  background: #1a3a35 !important;
  border-color: var(--border) !important;
}
[data-theme="dark"] .brand-btn.active {
  background: rgba(0,168,150,0.2) !important;
  border-color: var(--teal-3) !important;
}

/* Step indicators */
[data-theme="dark"] .step-indicator,
[data-theme="dark"] .step-circle,
[data-theme="dark"] .ind-circle {
  background: #1a3a35 !important;
  border-color: var(--border) !important;
  color: var(--text-secondary) !important;
}

/* PP Coins / Refurb card info text */
[data-theme="dark"] .coin-item-label,
[data-theme="dark"] .refurb-card .device-name,
[data-theme="dark"] .refurb-card .device-specs,
[data-theme="dark"] .refurb-card .device-brand {
  color: var(--text-primary) !important;
}

/* Sort/filter dropdowns on refurb */
[data-theme="dark"] .filter-bar select,
[data-theme="dark"] .sort-select {
  background: #1a3a35 !important;
  color: var(--text-primary) !important;
}

/* Search input */
[data-theme="dark"] .search-input,
[data-theme="dark"] .search-wrap input {
  background: #1a3a35 !important;
  color: var(--text-primary) !important;
}

/* Tables */
[data-theme="dark"] table,
[data-theme="dark"] th,
[data-theme="dark"] td {
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
}
[data-theme="dark"] thead tr,
[data-theme="dark"] .table-head {
  background: #1a3a35 !important;
}
[data-theme="dark"] tbody tr:nth-child(even) {
  background: rgba(0,168,150,0.04) !important;
}

/* Sections with light bg */
[data-theme="dark"] .alt-bg,
[data-theme="dark"] .section-light,
[data-theme="dark"] .bg-light {
  background: #0f2a26 !important;
}

/* Labels */
[data-theme="dark"] label,
[data-theme="dark"] .form-label,
[data-theme="dark"] .field-group label {
  color: var(--text-secondary) !important;
}

/* Alert/info boxes */
[data-theme="dark"] .security-note,
[data-theme="dark"] .info-box,
[data-theme="dark"] .note-box {
  background: rgba(0,168,150,0.1) !important;
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
}


/* ── THEME TOGGLE BUTTON ── */
/* ── THEME TOGGLE BUTTON ── */
.theme-toggle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
  padding: 0;
  outline: none;
  user-select: none;
}
.theme-toggle:hover {
  border-color: var(--teal-3);
  background: rgba(0,168,150,0.1);
  transform: rotate(20deg) scale(1.1);
}



/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 56px !important;
  width: auto;
  transition: var(--transition);
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition-fast);
}
.nav-links a:hover {
  background: rgba(0,168,150,0.05);
  color: var(--teal-3);
}
.nav-links a.active {
  background: #E6F8F5;
  color: #00A896;
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
}
.mobile-menu a.active {
  color: var(--teal-3);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }
p { font-size: 1rem; color: var(--text-secondary); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block;
  background: rgba(0,168,150,0.1);
  color: var(--teal-3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(0,168,150,0.2);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-main);
  color: white;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,168,150,0.4); }
.btn-outline {
  background: transparent;
  color: var(--teal-3);
  border: 2px solid var(--teal-3);
}
.btn-outline:hover { background: var(--teal-3); color: white; transform: translateY(-2px); }
.btn-dark {
  background: var(--teal-6);
  color: white;
}
.btn-dark:hover { background: var(--teal-5); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-pad { padding: 24px; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-teal { background: rgba(0,168,150,0.1); color: var(--teal-3); border: 1px solid rgba(0,168,150,0.2); }
.badge-green { background: rgba(16,185,129,0.1); color: #10B981; border: 1px solid rgba(16,185,129,0.2); }
.badge-dark { background: var(--teal-6); color: var(--teal-1); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal-3);
  background: rgba(0,168,150,0.08);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-coins {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0,168,150,0.08);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--teal-4);
  border: 1px solid rgba(0,168,150,0.15);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.mobile-menu a:hover { background: rgba(0,168,150,0.08); color: var(--teal-3); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── HERO ── */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,232,192,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 10% 80%, rgba(0,168,150,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,150,0.1);
  color: var(--teal-3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(0,168,150,0.25);
  width: fit-content;
}
.hero-tag-dot { width: 8px; height: 8px; background: var(--teal-1); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.5; transform: scale(1.5); } }
.hero-title { margin-bottom: 20px; }
.hero-title span { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--teal-4); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }
.hero-visual { position: relative; }
.hero-phone-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-phone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-main);
}
.hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hero-card-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; }
.hero-price-badge {
  background: var(--grad-main);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.hero-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.hero-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0,168,150,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,168,150,0.1);
}
.hero-benefit-icon {
  width: 32px;
  height: 32px;
  background: rgba(0,168,150,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-benefit-text { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.floating-badge {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-badge-1 { top: -16px; right: 20px; color: var(--teal-4); animation-delay: 0s; }
.floating-badge-2 { bottom: 20px; left: -20px; color: #10B981; animation-delay: 1.5s; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--teal-6);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-1);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-dot { width: 6px; height: 6px; background: var(--teal-3); border-radius: 50%; flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal-4));
  opacity: 0.3;
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: white;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-teal);
  position: relative;
  z-index: 1;
}
.step-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
.step-desc { font-size: 0.875rem; color: var(--text-secondary); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  padding: 24px 20px;
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover { border-color: var(--teal-3); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,168,150,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  transition: var(--transition);
  color: var(--teal-4);
}
.service-card:hover .service-icon { background: var(--grad-main); color: white; }
.service-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.service-price { font-size: 0.875rem; color: var(--teal-3); font-weight: 700; }
.service-tag { font-size: 0.75rem; color: var(--text-secondary); margin-top: 4px; }

/* ── PLAN BANNER ── */
.plan-banner {
  background: var(--grad-dark);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.plan-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(0,232,192,0.08);
  border-radius: 50%;
}
.plan-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 40%;
  width: 200px;
  height: 200px;
  background: rgba(0,168,150,0.06);
  border-radius: 50%;
}
.plan-banner-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-1);
  margin-bottom: 12px;
  opacity: 0.8;
}
.plan-banner-title { color: white; margin-bottom: 16px; }
.plan-banner-title span { color: var(--teal-1); }
.plan-banner-list { display: flex; flex-direction: column; gap: 10px; }
.plan-banner-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.plan-banner-item-dot { width: 8px; height: 8px; background: var(--teal-1); border-radius: 50%; flex-shrink: 0; }
.plan-price-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 200px;
  position: relative;
  z-index: 1;
}
.plan-price-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.plan-price-amount { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 3.5rem; color: var(--teal-1); line-height: 1; }
.plan-price-period { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.plan-price-original { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: line-through; margin-bottom: 20px; }
.plan-coins-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,232,192,0.15);
  border: 1px solid rgba(0,232,192,0.3);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: var(--teal-1);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 28px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--teal-2); box-shadow: var(--shadow-teal); }
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  border: 1px solid rgba(0,168,150,0.15);
}
.why-title { font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.why-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ── STATS ── */
.stats-section { background: var(--grad-main); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 2.8rem; color: white; line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; }

/* ── REFURB PREVIEW ── */
.refurb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.refurb-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.refurb-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.refurb-img {
  height: 180px;
  background: linear-gradient(135deg, #f0faf8, #e0f5f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.refurb-cert {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bg-white);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  gap: 4px;
}
.refurb-info { padding: 16px; }
.refurb-brand { font-size: 0.75rem; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.refurb-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; margin: 4px 0; }
.refurb-price { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--teal-4); }
.refurb-og { font-size: 0.8rem; color: var(--text-secondary); text-decoration: line-through; }
.refurb-savings { font-size: 0.75rem; color: #10B981; font-weight: 700; }
.refurb-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.8rem; color: var(--text-secondary); }

/* ── COINS SECTION ── */
.coins-section { background: linear-gradient(135deg, #fffbeb, #fef3c7); border-top: 1px solid #fde68a; border-bottom: 1px solid #fde68a; }
.coins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.coins-title { color: var(--text-primary); margin-bottom: 12px; }
.coins-title span { color: #D97706; }
.coins-desc { margin-bottom: 28px; }
.coins-earn-list { display: flex; flex-direction: column; gap: 12px; }
.coins-earn-item { display: flex; align-items: center; gap: 14px; }
.coins-earn-icon { font-size: 1.2rem; width: 36px; flex-shrink: 0; }
.coins-earn-text { font-weight: 600; font-size: 0.95rem; }
.coins-earn-amount { margin-left: auto; font-family: 'Poppins', sans-serif; font-weight: 800; color: #D97706; font-size: 0.9rem; background: rgba(217,119,6,0.1); padding: 4px 12px; border-radius: var(--radius-full); }
.coins-visual {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid #fde68a;
}
.coins-balance { text-align: center; margin-bottom: 24px; }
.coins-balance-num { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 4rem; color: #D97706; line-height: 1; }
.coins-balance-label { color: var(--text-secondary); font-size: 0.9rem; }
.coins-progress { background: #fef3c7; border-radius: var(--radius-full); height: 8px; margin-bottom: 24px; overflow: hidden; }
.coins-progress-fill { height: 100%; background: linear-gradient(90deg, #F59E0B, #D97706); border-radius: var(--radius-full); width: 65%; }

/* ── SELL SECTION ── */
.sell-section { background: var(--bg-white); }
.sell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sell-steps { display: flex; flex-direction: column; gap: 20px; }
.sell-step { display: flex; gap: 16px; align-items: flex-start; }
.sell-step-num {
  width: 36px;
  height: 36px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.sell-step-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.sell-step-desc { font-size: 0.875rem; color: var(--text-secondary); }
.sell-visual {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
}
.sell-price-display { text-align: center; margin-bottom: 24px; }
.sell-price-label { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; }
.sell-price-amount { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--teal-4); }

/* ── FOOTER ── */
.footer { background: var(--teal-6); color: white; padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--teal-1); margin-bottom: 12px; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.footer-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; color: var(--teal-1); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--teal-1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom-text { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--teal-3); color: white; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  color: white;
  font-size: 1.5rem;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.chat-float-btn {
  width: 56px;
  height: 56px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
  color: white;
  font-size: 1.3rem;
}
.chat-float-btn:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-teal { color: var(--teal-3); }
.text-white { color: white; }
.text-muted { color: var(--text-secondary); }
.fw-800 { font-weight: 800; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .refurb-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-banner { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .plan-price-box { max-width: 280px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .refurb-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .coins-grid { grid-template-columns: 1fr; }
  .sell-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-coins { display: none; }
  .hero-stats { gap: 20px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .refurb-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
}
