/* ========================
       CSS VARIABLES
    ======================== */
:root {
  --dark-green: #1E5C36;
  --mid-green: #2D7A4A;
  --lime: #8DC63F;
  --lime-light: #A8C84A;
  --terracotta: #C9472B;
  --teal: #4BADB8;
  --navy: #0F1630;
  --purple: #7B2D6E;
  --white: #FFFFFF;
  --off-white: #F4F9F5;
  --light-gray: #F0F4F1;
  --text-dark: #0D1F15;
  --text-muted: #5A7068;
  --gradient-main: linear-gradient(135deg, #1E5C36 0%, #2D7A4A 50%, #8DC63F 100%);
  --gradient-hero: linear-gradient(150deg, #0A2316 0%, #1E5C36 40%, #2D6B42 70%, #8DC63F 100%);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 4px 20px rgba(30, 92, 54, 0.1);
  --shadow-md: 0 8px 40px rgba(30, 92, 54, 0.15);
  --shadow-lg: 0 20px 60px rgba(30, 92, 54, 0.2);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

/* ========================
       BASE STYLES
    ======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
}

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

/* ========================
       NAVBAR
    ======================== */
.navbar {
  background: rgba(10, 35, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(141, 198, 63, 0.15);
  padding: 14px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 35, 22, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.navbar-toggler {
  border: 1px solid rgba(141, 198, 63, 0.4);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--lime) !important;
  background: rgba(141, 198, 63, 0.1);
}

.nav-cta {
  background: var(--lime) !important;
  color: var(--dark-green) !important;
  font-weight: 700 !important;
  padding: 8px 22px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: #a0d94e !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(141, 198, 63, 0.4) !important;
}

/* ========================
       HERO SECTION
    ======================== */
.hero {
  background: linear-gradient(150deg, #f8fff9 0%, #edfaf1 40%, #f0fdf4 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated background orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 173, 184, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 92, 54, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 92, 54, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 92, 54, 0.08);
  border: 1px solid rgba(30, 92, 54, 0.2);
  color: var(--dark-green);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 0.7rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--lime), #c5e870);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 92, 54, 0.06);
  border: 1px solid rgba(30, 92, 54, 0.15);
  color: var(--text-dark);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-pill i {
  color: var(--lime);
  font-size: 0.75rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn-primary-green {
  background: var(--lime);
  color: var(--dark-green);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(141, 198, 63, 0.35);
}

.btn-primary-green:hover {
  background: #a0d94e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(141, 198, 63, 0.5);
  color: var(--dark-green);
}

.btn-outline-white {
  background: transparent;
  color: var(--dark-green);
  border: 2px solid rgba(30, 92, 54, 0.35);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: var(--font-main);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  border-color: var(--dark-green);
  color: var(--dark-green);
  transform: translateY(-2px);
}

/* App store buttons */
.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-green);
  border: 1px solid rgba(30, 92, 54, 0.3);
  border-radius: 12px;
  padding: 10px 18px;
  color: var(--white);
  font-size: 0.82rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.store-btn:hover {
  background: var(--mid-green);
  border-color: var(--lime);
  color: var(--white);
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 1.4rem;
}

.store-btn .store-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
}

.store-btn .store-text strong {
  font-size: 0.88rem;
  font-weight: 700;
}

/* Hero stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lime);
  font-family: var(--font-main);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  background: rgba(30, 92, 54, 0.15);
  align-self: stretch;
  min-height: 40px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-phone-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(141, 198, 63, 0.2);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}

.hero-phone-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(141, 198, 63, 0.3), transparent, rgba(75, 173, 184, 0.2));
  z-index: -1;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-logo-badge img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.card-logo-badge span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-main);
}

.card-live-badge {
  background: rgba(141, 198, 63, 0.2);
  border: 1px solid rgba(141, 198, 63, 0.4);
  color: var(--lime);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

.wallet-balance {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.wallet-balance .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.wallet-balance .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-main);
}

.wallet-balance .amount span {
  color: var(--lime);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.quick-action {
  text-align: center;
}

.quick-action .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 1rem;
}

.quick-action .action-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.recent-tx {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 14px;
}

.tx-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-right: 10px;
}

.tx-info .tx-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.tx-info .tx-time {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}

.tx-amount {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-main);
}

/* ========================
       TRUST STRIP
    ======================== */
.trust-strip {
  background: var(--dark-green);
  padding: 14px 0;
  overflow: hidden;
}

.trust-ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--lime);
}

/* ========================
       SECTION STYLES
    ======================== */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-green {
  background: var(--dark-green);
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(141, 198, 63, 0.12);
  border: 1px solid rgba(141, 198, 63, 0.25);
  color: var(--dark-green);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-main);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-dark .section-label,
.section-green .section-label {
  background: rgba(141, 198, 63, 0.15);
  border-color: rgba(141, 198, 63, 0.3);
  color: var(--lime);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-dark .section-title,
.section-green .section-title {
  color: var(--white);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.section-green .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.accent-line {
  width: 52px;
  height: 4px;
  background: var(--lime);
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* ========================
       SERVICES CARDS
    ======================== */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  height: 100%;
  border: 1px solid rgba(30, 92, 54, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--border-radius-lg);
}

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

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

.service-card .card-inner {
  position: relative;
  z-index: 1;
}

.service-card:hover .card-inner * {
  color: rgba(255, 255, 255, 0.9) !important;
}

.service-card:hover .service-icon-wrap {
  background: rgba(255, 255, 255, 0.15) !important;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark-green);
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.35s ease;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  transition: color 0.35s ease;
}

/* ========================
       FEATURE LIST
    ======================== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.feature-list li i {
  color: var(--dark-green);
  background: rgba(141, 198, 63, 0.15);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================
       AIRTIME SECTION
    ======================== */
.airtime-card {
  background: linear-gradient(135deg, #8DC63F 0%, #2D7A4A 30%, #1E5C36 55%, #a03020 80%, #C9472B 100%);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.airtime-card::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.airtime-card::before {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 71, 43, 0.2);
  z-index: 0;
}

.network-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.network-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-main);
}

/* ========================
       HOW IT WORKS
    ======================== */
.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 60px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(141, 198, 63, 0.2));
}

.step-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ========================
       AGENT PRICING
    ======================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px 32px;
  border: 2px solid rgba(30, 92, 54, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--gradient-main);
  border-color: transparent;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured * {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured h3 {
  color: var(--white);
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--dark-green);
  border-radius: 50px;
  padding: 4px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-main);
  white-space: nowrap;
}

.price-main {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-main);
  color: var(--dark-green);
  line-height: 1;
}

.pricing-card.featured .price-main {
  color: var(--white);
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card.featured .price-note {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(30, 92, 54, 0.06);
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li i {
  color: var(--dark-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
  color: var(--lime);
}

/* ========================
       REFERRAL CALCULATOR
    ======================== */
.referral-calc {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.ref-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(30, 92, 54, 0.08);
}

.ref-tier-row:last-of-type {
  border-bottom: none;
}

.ref-tier-info h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ref-tier-info small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ref-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ref-counter button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark-green);
  background: transparent;
  color: var(--dark-green);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.ref-counter button:hover {
  background: var(--dark-green);
  color: white;
}

.ref-counter .count-val {
  min-width: 32px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-main);
}

.ref-earning {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-green);
  font-family: var(--font-main);
  min-width: 80px;
  text-align: right;
}

.ref-total-row {
  background: var(--gradient-main);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.ref-total-row .total-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

.ref-total-row .total-amount {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-main);
}

/* ========================
       TESTIMONIALS
    ======================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  border: 1px solid rgba(30, 92, 54, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================
       FAQ
    ======================== */
.faq-item {
  border: 1px solid rgba(30, 92, 54, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: rgba(141, 198, 63, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
  user-select: none;
}

.faq-question:hover {
  color: var(--dark-green);
}

.faq-item.open .faq-question {
  color: var(--dark-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--dark-green);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--lime);
  color: var(--dark-green);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========================
       CONTACT SECTION
    ======================== */
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(141, 198, 63, 0.4);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card .contact-info h6 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.contact-card .contact-info small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(30, 92, 54, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--dark-green);
  box-shadow: 0 0 0 3px rgba(30, 92, 54, 0.1);
}

.form-control::placeholder {
  color: rgba(90, 112, 104, 0.5);
}

/* Social Media */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.social-item i {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 6px;
}

.social-item span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Location card */
.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  padding: 24px;
}

.location-card h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.location-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.btn-directions {
  background: var(--dark-green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-directions:hover {
  background: var(--mid-green);
  transform: translateY(-2px);
  color: var(--white);
}

/* ========================
       FOOTER CTA
    ======================== */
.footer-cta {
  background: linear-gradient(135deg, #0A2316 0%, #1E5C36 60%, #163d25 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 198, 63, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 198, 63, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.footer-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-cta .btn-outline-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-cta .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ========================
       FOOTER
    ======================== */
footer {
  background: #030d06;
  padding: 50px 0 24px;
}

.footer-logo img {
  height: 36px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  max-width: 240px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--lime);
}

.ncc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(141, 198, 63, 0.1);
  border: 1px solid rgba(141, 198, 63, 0.2);
  color: var(--lime);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ========================
       UTILITIES
    ======================== */
.btn-green {
  background: var(--lime);
  color: var(--dark-green);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background: #a0d94e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141, 198, 63, 0.4);
  color: var(--dark-green);
}

.btn-dark-green {
  background: var(--dark-green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-dark-green:hover {
  background: var(--mid-green);
  transform: translateY(-2px);
  color: var(--white);
}

.highlight {
  color: var(--lime);
}

.text-lime {
  color: var(--lime);
}

/* Differentiator cards */
.diff-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(141, 198, 63, 0.3);
  transform: translateY(-4px);
}

.diff-icon {
  font-size: 1.6rem;
  color: var(--lime);
  margin-bottom: 14px;
}

.diff-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* Grid digital marketplace */
.market-item {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(30, 92, 54, 0.08);
  transition: all 0.3s ease;
}

.market-item:hover {
  border-color: var(--lime);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.market-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.market-item h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.market-item small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Scroll to top */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--dark-green);
  color: var(--lime);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(30, 92, 54, 0.4);
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--lime);
  color: var(--dark-green);
  transform: translateY(-3px);
}

/* Toast notification */
.toast-msg {
  position: fixed;
  bottom: 80px;
  right: 28px;
  background: var(--dark-green);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9998;
  max-width: 280px;
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}



/* ========================
       SHOW MORE COLLAPSIBLE
    ======================== */
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.collapsible-content.expanded {
  max-height: 2000px;
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.show-more-btn:hover {
  background: var(--dark-green);
  color: var(--white);
}

.show-more-btn.expanded i {
  transform: rotate(180deg);
}

.show-more-btn i {
  transition: transform 0.3s ease;
}

/* ========================
       APP SCREENSHOT HERO
    ======================== */
.app-screenshot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-screenshot-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(30, 92, 54, 0.25) 0%, transparent 70%);
  filter: blur(10px);
}

.app-screenshot-img {
  width: 100%;
  max-width: 320px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(30, 92, 54, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .app-screenshot-img {
    max-width: 280px;
  }
}

/* ========================
       RESPONSIVE
    ======================== */
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-visual {
    margin-top: 48px;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .quick-actions {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .quick-action .icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats {
    gap: 16px;
  }
}

/* ========================
       TERMS PAGE STYLES
    ======================== */

/* Terms Hero Section */
.terms-hero {
  background: linear-gradient(150deg, #0A2316 0%, #1E5C36 50%, #2D7A4A 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.terms-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}

.terms-hero-content {
  position: relative;
  z-index: 2;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(141, 198, 63, 0.15);
  border: 1px solid rgba(141, 198, 63, 0.3);
  color: var(--lime);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.terms-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.terms-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  font-weight: 500;
}

.terms-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.terms-meta i {
  color: var(--lime);
  margin-right: 6px;
}

.terms-meta .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Terms Content Section */
.terms-content {
  padding: 80px 0;
  background: var(--off-white);
}

/* Sidebar Navigation */
.terms-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.sidebar-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-main);
}

.terms-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.terms-nav-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.terms-nav-link:hover {
  background: rgba(30, 92, 54, 0.05);
  color: var(--dark-green);
  padding-left: 18px;
}

.terms-nav-link.active {
  background: rgba(141, 198, 63, 0.1);
  color: var(--dark-green);
  border-left-color: var(--lime);
  font-weight: 600;
}

/* Main Content */
.terms-main {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.terms-intro {
  background: linear-gradient(135deg, rgba(30, 92, 54, 0.05) 0%, rgba(141, 198, 63, 0.05) 100%);
  border-left: 4px solid var(--lime);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 48px;
}

.terms-intro p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

.terms-intro p:last-child {
  margin-bottom: 0;
}

.terms-section {
  margin-bottom: 48px;
  padding-top: 24px;
  scroll-margin-top: 100px;
}

.terms-section h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.75rem;
  color: var(--dark-green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(30, 92, 54, 0.1);
}

.section-number {
  color: var(--lime);
  font-weight: 800;
}

.terms-section>p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-dark);
}

.terms-subsection {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid rgba(141, 198, 63, 0.2);
}

.terms-subsection h4 {
  font-size: 1.1rem;
  color: var(--mid-green);
  margin-bottom: 12px;
  font-weight: 700;
}

.terms-subsection p {
  margin-bottom: 12px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Highlight Box */
.terms-highlight {
  background: linear-gradient(135deg, rgba(75, 173, 184, 0.08) 0%, rgba(141, 198, 63, 0.08) 100%);
  border: 1px solid rgba(75, 173, 184, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  gap: 16px;
}

.terms-highlight i {
  color: var(--teal);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-highlight strong {
  display: block;
  color: var(--dark-green);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.terms-highlight p {
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Numbered Lists */
.terms-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 32px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-light) 100%);
  color: var(--dark-green);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-main);
  flex-shrink: 0;
}

.terms-list-item p {
  flex: 1;
  margin: 0;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Last Updated Notice */
.terms-updated {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(141, 198, 63, 0.1);
  border: 1px solid rgba(141, 198, 63, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 48px;
}

.terms-updated i {
  color: var(--lime);
  font-size: 1.2rem;
}

.terms-updated p {
  margin: 0;
  font-weight: 600;
  color: var(--dark-green);
}

/* CTA Section */
.terms-cta {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--mid-green) 100%);
  border-radius: var(--border-radius);
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}

.terms-cta h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.terms-cta>p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.terms-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Responsive Styles for Terms Page */
@media (max-width: 991px) {
  .terms-sidebar {
    position: static;
    margin-bottom: 32px;
    max-height: none;
  }

  .terms-hero {
    padding: 120px 0 60px;
  }

  .terms-main {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .terms-hero h1 {
    font-size: 2rem;
  }

  .terms-subtitle {
    font-size: 1rem;
  }

  .terms-main {
    padding: 24px 20px;
  }

  .terms-section h2 {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 4px;
  }

  .terms-list-item {
    flex-direction: column;
    gap: 8px;
  }

  .list-number {
    align-self: flex-start;
  }

  .terms-cta {
    padding: 28px 20px;
  }

  .terms-cta h3 {
    font-size: 1.4rem;
  }

  .terms-cta-btns {
    flex-direction: column;
  }

  .terms-cta-btns .btn-primary-green,
  .terms-cta-btns .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* ========================
       PRIVACY PAGE SPECIFIC STYLES
    ======================== */

/* Privacy Data Box */
.privacy-data-box {
  background: linear-gradient(135deg, rgba(30, 92, 54, 0.05) 0%, rgba(141, 198, 63, 0.05) 100%);
  border: 1px solid rgba(30, 92, 54, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.privacy-data-box h5 {
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-data-box h5 i {
  color: var(--lime);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.data-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(30, 92, 54, 0.1);
  transition: all 0.3s ease;
}

.data-item:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.data-item i {
  color: var(--teal);
  font-size: 1.2rem;
}

.data-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* KYC Warning Box */
.kyc-warning {
  background: linear-gradient(135deg, rgba(75, 173, 184, 0.1) 0%, rgba(141, 198, 63, 0.1) 100%);
  border: 2px solid var(--teal);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.kyc-warning i {
  font-size: 2.5rem;
  color: var(--teal);
  flex-shrink: 0;
}

.kyc-warning h4 {
  font-size: 1.25rem;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.kyc-warning p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Privacy Lists */
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  line-height: 1.7;
}

.privacy-list li i {
  color: var(--lime);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.privacy-list.not-used li i {
  color: var(--terracotta);
}

/* Security Badges */
.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 92, 54, 0.08);
  border: 1px solid rgba(30, 92, 54, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-green);
}

.security-badge i {
  color: var(--lime);
  font-size: 1.1rem;
}

/* List Icon Style */
.list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-light) 100%);
  color: var(--dark-green);
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Security Notice */
.security-notice {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, rgba(201, 71, 43, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  border-left: 4px solid var(--terracotta);
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}

.security-icon {
  flex-shrink: 0;
}

.security-icon i {
  font-size: 2rem;
  color: var(--terracotta);
}

.security-content h5 {
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.security-content p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Age Restriction */
.age-restriction {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(123, 45, 110, 0.08);
  border: 1px solid rgba(123, 45, 110, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
}

.age-restriction i {
  font-size: 2rem;
  color: var(--purple);
}

.age-restriction strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark-green);
  margin-bottom: 4px;
}

.age-restriction p {
  margin: 0;
  color: var(--text-dark);
}

/* Contact Options */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(30, 92, 54, 0.05) 0%, rgba(141, 198, 63, 0.05) 100%);
  border: 1px solid rgba(30, 92, 54, 0.15);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--lime);
  flex-shrink: 0;
}

.contact-card h5 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card a {
  color: var(--dark-green);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--lime);
}

/* Responsive for Privacy Specific Elements */
@media (max-width: 767px) {
  .data-grid {
    grid-template-columns: 1fr;
  }

  .kyc-warning {
    flex-direction: column;
    text-align: center;
  }

  .kyc-warning i {
    margin: 0 auto;
  }

  .security-notice {
    flex-direction: column;
  }

  .security-icon {
    text-align: center;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .security-badges {
    flex-direction: column;
  }

  .security-badge {
    justify-content: center;
  }
}