/* ============================================================
   PickNDrop Website — Stylesheet
   Theme: Primary Green #0B6E4F, Accent Gold #D4A017
   Fonts: Plus Jakarta Sans, DM Sans, JetBrains Mono
   ============================================================ */

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

:root {
  --green: #0B6E4F;
  --green-light: #10A37F;
  --green-dark: #084C37;
  --green-50: #E6F5EF;
  --gold: #D4A017;
  --gold-light: #F5D56E;
  --ink: #1A1D21;
  --charcoal: #2D3239;
  --slate: #5A6169;
  --grey: #8B939B;
  --silver: #C4CAD0;
  --cloud: #E8EBED;
  --mist: #F3F5F6;
  --white: #FFFFFF;
  --error: #D42B2B;
  --info: #2563EB;
  --warning: #E6930A;
  --shadow-xs: 0 1px 2px rgba(26,29,33,0.05);
  --shadow-sm: 0 1px 3px rgba(26,29,33,0.08), 0 1px 2px rgba(26,29,33,0.04);
  --shadow-md: 0 4px 8px rgba(26,29,33,0.08), 0 2px 4px rgba(26,29,33,0.04);
  --shadow-lg: 0 8px 24px rgba(26,29,33,0.10), 0 4px 8px rgba(26,29,33,0.04);
  --shadow-xl: 0 16px 48px rgba(26,29,33,0.12), 0 8px 16px rgba(26,29,33,0.04);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- UTILITY ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-secondary:hover {
  background: rgba(11,110,79,0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
}
.btn-ghost:hover {
  background: rgba(11,110,79,0.06);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: #c0910f;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

/* ---------- SECTION HELPERS ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-50);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-label-light {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--white);
}

.section-desc {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: var(--cloud);
  box-shadow: var(--shadow-xs);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
}

.logo-pick {
  color: var(--green);
}

.logo-n {
  color: var(--gold);
}

.logo-drop {
  color: var(--green-dark);
}

/* Footer logo: lighter variant */
.logo-text-light .logo-pick-light,
.logo-text-light .logo-drop-light {
  color: var(--white);
}

.logo-text-light .logo-n {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--cloud);
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--cloud);
}

.mobile-menu-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--green);
  top: -200px;
  right: -100px;
  animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -100px;
  left: -100px;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,110,79,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,110,79,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--green-50);
  border: 1px solid rgba(11,110,79,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid var(--white);
  margin-left: -8px;
}

.trust-avatar:first-child { margin-left: 0; }

.hero-trust-text {
  font-size: 14px;
  color: var(--slate);
}

.hero-trust-text strong {
  color: var(--ink);
}

/* ---------- HERO PHONE MOCKUP ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone-frame {
  width: 300px;
  height: 600px;
  background: var(--ink);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
  overflow: hidden;
}

.hero-phone-notch {
  width: 120px;
  height: 28px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--mist);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.phone-status-icons {
  display: flex;
  gap: 4px;
}

.phone-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px 12px;
}

.phone-greeting {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.phone-notif-bell {
  position: relative;
}

.notif-dot {
  width: 8px;
  height: 8px;
  background: var(--error);
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -2px;
  border: 1.5px solid var(--mist);
}

.phone-map-area {
  position: relative;
  height: 200px;
  margin: 0 12px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0e3 0%, #d4e4d0 30%, #c8d8c4 60%, #e0e8dc 100%);
}

.phone-map-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,110,79,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,110,79,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.phone-route-line {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.4;
  transform: rotate(-15deg);
}

.phone-marker {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}

.phone-marker svg {
  transform: rotate(45deg);
}

.phone-marker-pickup {
  background: var(--green);
  top: 35%;
  left: 15%;
}

.phone-marker-dropoff {
  background: var(--error);
  top: 55%;
  right: 15%;
}

.phone-rider-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  top: 45%;
  left: 48%;
  z-index: 2;
  animation: riderMove 4s ease-in-out infinite;
}

.rider-pulse {
  position: absolute;
  inset: -8px;
  background: rgba(11,110,79,0.2);
  border-radius: 50%;
  animation: ridePulse 2s ease-in-out infinite;
}

@keyframes riderMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -8px); }
}

@keyframes ridePulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.8); opacity: 0; }
}

.phone-delivery-card {
  background: var(--white);
  margin: 12px;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-md);
}

.phone-dc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.phone-dc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-dot-transit {
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.phone-dc-eta {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-50);
  padding: 3px 8px;
  border-radius: 100px;
}

.phone-dc-route {
  margin-bottom: 12px;
}

.phone-dc-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--charcoal);
  padding: 2px 0;
}

.loc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.loc-dot-green { background: var(--green); }
.loc-dot-red { background: var(--error); }

.phone-dc-divider {
  width: 1px;
  height: 12px;
  background: var(--silver);
  margin-left: 3.5px;
}

.phone-dc-rider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--cloud);
}

.phone-dc-rider-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.phone-dc-rider-info {
  flex: 1;
}

.rider-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.rider-tier {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--slate);
}

.phone-dc-actions {
  display: flex;
  gap: 6px;
}

.phone-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--cloud);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- HERO FLOATING BADGES ---------- */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.hero-float-1 {
  top: 10%;
  left: -30px;
  animation: floatBadge 6s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 25%;
  right: -20px;
  animation: floatBadge 7s ease-in-out infinite 1s;
}

.hero-float-3 {
  top: 35%;
  right: -40px;
  animation: floatBadge 5s ease-in-out infinite 2s;
}

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

/* ---------- HERO SCROLL INDICATOR ---------- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--silver);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--green);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
  background: var(--mist);
}

.trust-bar-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
}

.trust-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 120px 0;
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(11,110,79,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.feature-card-large {
  grid-column: span 1;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-green { background: var(--green-50); }
.feature-icon-gold { background: #FFF8E6; }
.feature-icon-blue { background: #EBF2FF; }
.feature-icon-purple { background: #F0EBF8; }
.feature-icon-amber { background: #FFF4E0; }

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* Feature: Tracking Visual */
.feature-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  margin-top: 24px;
}

.tracking-demo {
  width: 100%;
  padding: 24px 16px;
  background: var(--mist);
  border-radius: 14px;
}

.tracking-path {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.tracking-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}

.tracking-dot-start { background: var(--green); }
.tracking-dot-end { background: var(--error); }

.tracking-line {
  flex: 1;
  height: 3px;
  background: var(--cloud);
  position: relative;
  border-radius: 2px;
}

.tracking-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: var(--green);
  border-radius: 2px;
  animation: trackProgress 3s ease-in-out infinite;
}

.tracking-rider-icon {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(11,110,79,0.3);
  animation: riderSlide 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes trackProgress {
  0%, 100% { width: 30%; }
  50% { width: 80%; }
}

@keyframes riderSlide {
  0%, 100% { left: 30%; }
  50% { left: 75%; }
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 120px 0;
  background: var(--mist);
}

.steps-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.steps-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cloud);
}

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.step:last-child { margin-bottom: 0; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(11,110,79,0.25);
}

.step-content {
  padding-top: 4px;
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 480px;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  padding: 80px 0;
  background: var(--ink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.stat-number {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-left: 4px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
}

/* ---------- TIERS ---------- */
.tiers {
  padding: 120px 0;
  background: var(--white);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

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

.tier-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
  transform: scale(1.02);
}

.tier-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.tier-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.tier-bronze { background: #F0DCC8; }
.tier-silver { background: #E3E6E8; }
.tier-gold { background: #FFF2CC; }
.tier-platinum { background: #E8E0F0; }

.tier-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 20px;
}

.tier-perks {
  list-style: none;
  text-align: left;
}

.tier-perks li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--cloud);
}

.tier-perks li:last-child { border-bottom: none; }

.tier-perks li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-50);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B6E4F' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}

/* ---------- FOR BUSINESS ---------- */
.for-business {
  padding: 120px 0;
  background: var(--ink);
  overflow: hidden;
}

.business-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.business-desc {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 32px;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.business-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--silver);
}

/* Dashboard Preview */
.biz-dashboard-preview {
  background: var(--charcoal);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.06);
}

.biz-dash-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.biz-dash-dots {
  display: flex;
  gap: 6px;
}

.biz-dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate);
}

.biz-dash-dots span:first-child { background: #ff5f57; }
.biz-dash-dots span:nth-child(2) { background: #febc2e; }
.biz-dash-dots span:nth-child(3) { background: #28c840; }

.biz-dash-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
}

.biz-dash-content {
  padding: 24px 20px;
}

.biz-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.biz-kpi {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.biz-kpi-label {
  display: block;
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.biz-kpi-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.biz-kpi-sub {
  display: block;
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}

.biz-chart {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.biz-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
}

.biz-bar {
  flex: 1;
  background: var(--green);
  border-radius: 4px 4px 0 0;
  min-height: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.biz-bar-active {
  opacity: 1;
  background: linear-gradient(to top, var(--green), var(--green-light));
}

.biz-dashboard-preview:hover .biz-bar {
  opacity: 0.4;
}

.biz-dashboard-preview:hover .biz-bar:hover,
.biz-dashboard-preview:hover .biz-bar-active {
  opacity: 1;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 120px 0;
  background: var(--mist);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.testimonial-role {
  display: block;
  font-size: 12px;
  color: var(--grey);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--cloud);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--grey);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ---------- CTA / DOWNLOAD ---------- */
.cta-section {
  padding: 120px 0;
  background: var(--mist);
}

.cta-inner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 28px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,160,23,0.1) 0%, transparent 50%);
}

.cta-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 14px 24px;
  color: var(--white);
  transition: all 0.2s ease;
}

.store-btn:hover {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.store-btn-sub {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  line-height: 1;
}

.store-btn-main {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.cta-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.qr-placeholder {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-qr span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--grey);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--slate);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--slate);
}

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

/* ---------- SUB-PAGES (shared) ---------- */
.page-hero {
  padding: 140px 0 60px;
  background: var(--mist);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

.page-hero .section-title {
  margin-bottom: 12px;
}

.page-hero .section-desc {
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 80px 0;
}

.page-content .container {
  max-width: 800px;
}

.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cloud);
}

.page-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 12px;
}

.page-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content a:hover {
  color: var(--green-light);
}

.page-content .last-updated {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 32px;
}

.page-content strong {
  color: var(--ink);
  font-weight: 600;
}

/* Sub-page: value cards grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
}

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

.value-card h3 {
  margin-top: 0;
  font-size: 17px;
}

.value-card p {
  margin-bottom: 0;
}

/* Sub-page: contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-card h3 {
  margin-top: 0;
  font-size: 16px;
}

.contact-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Sub-page: form */
.page-form {
  margin: 32px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--silver);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11,110,79,0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Sub-page: help category cards */
.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.help-category-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.help-category-card h3 {
  margin-top: 12px;
  font-size: 16px;
}

.help-category-card p {
  font-size: 13px;
  margin-bottom: 0;
}

/* Sub-page: help section */
.help-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--cloud);
}

.help-section h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* Sub-page: info box / callout */
.info-box {
  background: var(--green-50);
  border: 1px solid rgba(11,110,79,0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p {
  color: var(--green-dark);
  margin-bottom: 0;
}

.warning-box {
  background: #FFF4E0;
  border: 1px solid rgba(230,147,10,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.warning-box p {
  color: #8B6914;
  margin-bottom: 0;
}

/* Sub-page CTA banner */
.page-cta {
  text-align: center;
  padding: 64px 0;
  background: var(--mist);
}

.page-cta h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

.page-cta p {
  color: var(--slate);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Sub-page: about page specifics */
.about-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--cloud);
}

.about-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-section .section-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.about-value-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
}

.about-value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-value-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-value-card p {
  margin-bottom: 0;
}

.about-cta {
  text-align: center;
  background: var(--mist);
  border-radius: 20px;
  padding: 48px 32px !important;
  border-bottom: none !important;
}

.about-cta .section-title {
  font-size: 26px;
}

.about-cta-actions {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
}

/* ---------- SUB-PAGE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .page-hero { padding: 110px 0 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .help-categories { grid-template-columns: 1fr; }
}

/* ---------- ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-title { font-size: 44px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }

  .hero-visual { display: none; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .section-title { font-size: 34px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }

  .mobile-menu.active {
    display: flex;
  }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 12px; }

  .features { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }

  .how-it-works { padding: 80px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }

  .tiers { padding: 80px 0; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .tier-card-featured { transform: none; }
  .tier-card-featured:hover { transform: translateY(-4px); }

  .for-business { padding: 80px 0; }

  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .faq { padding: 80px 0; }

  .cta-inner { padding: 56px 24px; border-radius: 20px; }
  .cta-title { font-size: 28px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-header { margin-bottom: 48px; }
  .section-title { font-size: 28px; }
  .section-desc { font-size: 15px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 30px; }
  .trust-logos { gap: 20px; }
  .footer-links-group { grid-template-columns: 1fr 1fr; gap: 24px; }
  .store-btn { padding: 12px 18px; }
}

/* ---------- PRINT ---------- */
@media print {
  .navbar, .hero-bg-shapes, .hero-scroll-indicator { display: none; }
}
