/* ===========================
   CSS VARIABLES & RESET
   =========================== */
:root {
  --primary: #2D6A4F;
  --primary-dark: #1e4d3a;
  --primary-light: #3D8B6A;
  --primary-bg: #EEF7F3;
  --accent: #F4845F;
  --accent-dark: #e0724d;
  --accent-light: #FEF0EB;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 56px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border);
}

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

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn-outline {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}

.nav-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.nav-btn-solid {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--primary);
  transition: all var(--transition);
  cursor: pointer;
}

.nav-btn-solid:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--primary-bg);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.mobile-menu a {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
}

.mobile-menu .mobile-nav-btn {
  margin-top: 12px;
  text-align: center;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
}

/* ===========================
   STORE BUTTONS
   =========================== */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-width: 178px;
}

.store-btn-dark {
  background: #111111;
  color: var(--white);
}

.store-btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.store-btn-light {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

.store-btn-light:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.12);
}

.store-btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-text small {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 2px;
}

.store-btn-text strong {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.2;
}

/* CTA section store buttons (white bg versions) */
.store-btn-white {
  background: var(--white);
  color: var(--text);
}

.store-btn-white:hover {
  background: var(--primary-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.store-btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.store-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--bg) 55%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero h1 .text-primary {
  color: var(--primary);
}

.hero h1 .text-accent {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-social-proof {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
}

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

.hero-avatar-1 { background: linear-gradient(135deg, #2D6A4F, #A8E6CF); }
.hero-avatar-2 { background: linear-gradient(135deg, #F4845F, #FFD3B6); }
.hero-avatar-3 { background: linear-gradient(135deg, #2D6A4F, #F4845F); }
.hero-avatar-4 { background: linear-gradient(135deg, #FFB347, #2D6A4F); }

.hero-social-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-social-text strong {
  color: var(--text);
  font-weight: 700;
}

/* Hero visual (phone) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-bg {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===========================
   PHONE MOCKUP
   =========================== */
.phone-mockup {
  position: relative;
  width: 265px;
  height: 535px;
  background: #111;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 0 0.5px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 28px;
  background: #111;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.hero-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  display: block;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  background: var(--white);
}

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

.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(244, 132, 95, 0.4);
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.step-icon-wrap svg {
  width: 34px;
  height: 34px;
  color: var(--primary);
}

.step-title {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--text);
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Connector arrows between steps */
.steps-grid-wrapper {
  position: relative;
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-bg);
}

.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon-wrap.accent {
  background: var(--accent-light);
}

.benefit-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.benefit-icon-wrap.accent svg {
  color: var(--accent);
}

.benefit-title {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===========================
   APP SCREENSHOTS
   =========================== */
.screenshots-section {
  background: var(--primary-bg);
  padding: 80px 0;
}

.screenshots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.screenshots-scroll::-webkit-scrollbar {
  display: none;
}

.screenshot-phone {
  flex-shrink: 0;
  width: 195px;
  height: 390px;
  background: #111;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  position: relative;
  transition: transform var(--transition);
}

.screenshot-phone:hover {
  transform: translateY(-8px) scale(1.02);
}

.screenshot-phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 18px;
  background: #111;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* ===========================
   DOWNLOAD CTA
   =========================== */
.download-section {
  background: var(--primary);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.download-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(244, 132, 95, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.download-section .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.download-section .section-title {
  color: var(--white);
  margin-bottom: 14px;
}

.download-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0F0F0F;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: rgba(255, 255, 255, 0.5);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   BUSINESS PAGE - HERO
   =========================== */
.biz-hero {
  padding: 96px 0 80px;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
}

.biz-hero::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 132, 95, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.biz-hero-content {
  max-width: 700px;
}

.biz-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.biz-hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}

.biz-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  transition: all var(--transition);
}

.btn-primary-lg:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
}

.btn-secondary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  transition: all var(--transition);
}

.btn-secondary-lg:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.biz-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.biz-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.biz-stat-value {
  font-family: 'Nunito', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.biz-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===========================
   STEPS (4-column for biz)
   =========================== */
.steps-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  background: var(--primary-bg);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--primary-bg);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
  flex: 1;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.star {
  color: #FFC107;
  font-size: 0.875rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.author-avatar-1 { background: linear-gradient(135deg, #2D6A4F 0%, #52B788 100%); }
.author-avatar-2 { background: linear-gradient(135deg, #F4845F 0%, #FFD3B6 100%); }
.author-avatar-3 { background: linear-gradient(135deg, #1e4d3a 0%, #F4845F 100%); }

.author-name {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text);
}

.author-business {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 14px;
  transition: color var(--transition);
}

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

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.open .faq-toggle-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-toggle-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.faq-item.open .faq-toggle-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease;
}

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

.faq-answer-inner {
  padding: 0 22px 22px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===========================
   JOIN CTA (BUSINESS)
   =========================== */
.join-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.join-section .section-label {
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.join-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.join-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.join-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(244, 132, 95, 0.45);
}

.join-btn svg {
  width: 20px;
  height: 20px;
}

.join-trust {
  margin-top: 22px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
}

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

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

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .steps-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 230px;
    height: 460px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 36px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .biz-stats {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps-grid-4 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn,
  .store-btn-white,
  .store-btn-outline-white {
    justify-content: center;
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .biz-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
