/* =========================================
   Hemp Paper Company — ZERO TREE™ Packaging
   Design System & Complete Styles
   ========================================= */

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

/* ---- CSS Variables ---- */
:root {
  --brand-primary: #0B3D2C;
  --brand-primary-light: #165A42;
  --brand-accent: #2A9D8F;
  --brand-accent-dark: #21867A;
  --brand-accent-glow: rgba(42, 157, 143, 0.15);
  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --cream: #F0F7F4;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
}

/* ---- Utilities ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Subtle grain texture overlay for premium feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.3); }
  50% { box-shadow: 0 0 20px 5px rgba(42, 157, 143, 0.15); }
}
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }
.animate-in-delay-4 { animation-delay: 0.4s; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 61, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img {
  height: 40px;
  width: auto;
  transition: transform 0.2s;
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--brand-accent); background: rgba(255,255,255,0.1); }
.nav-cta {
  padding: 10px 20px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  margin-left: 8px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--amber-light); transform: scale(0.97); }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: #fff;
}
.nav-toggle svg { width: 24px; height: 24px; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 320px; height: 100vh;
  background: var(--brand-primary);
  z-index: 200;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 24px;
}
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--brand-accent); }

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
}

/* =========================================
   HERO (Homepage)
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/images/hero-main.png') center/cover;
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,61,44,0.92) 0%, rgba(7,42,30,0.85) 35%, rgba(11,61,44,0.5) 65%, rgba(11,61,44,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(42,157,143,0.15);
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: 50px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}
.hero-title .accent { color: var(--brand-accent); }
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}
.hero-subtitle .tm { color: var(--brand-accent); font-weight: 600; }
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(42,157,143,0.25);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--brand-accent-dark), var(--brand-primary-light)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,157,143,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 640px;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
  opacity: 0;
}
.hero-stat {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s;
}
.hero-stat:hover {
  background: rgba(42,157,143,0.1);
  border-color: rgba(42,157,143,0.2);
  transform: translateY(-4px);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-stat { padding: 16px; }
  .hero-stat-value { font-size: 28px; }
}

.hero-usda-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}
.hero-usda-badge img {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
@media (max-width: 768px) {
  .hero-usda-badge { bottom: 20px; right: 20px; }
  .hero-usda-badge img { width: 60px; }
}

/* =========================================
   SECTIONS (shared patterns)
   ========================================= */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--brand-primary);
  color: #fff;
}
.section-light {
  background: var(--off-white);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--brand-accent-glow);
  border-radius: 50px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-title .accent { color: var(--brand-accent); }
.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* =========================================
   FEATURE CARDS (homepage "Why Hemp?")
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05), 0 24px 48px rgba(11,61,44,0.08);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-accent-glow);
  border-radius: 12px;
  color: var(--brand-accent);
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* =========================================
   USDA CERTIFICATION BANNER
   ========================================= */
.usda-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
}
.usda-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
}
.usda-logo { flex-shrink: 0; }
.usda-logo img { width: 100px; height: auto; }
.usda-text h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.usda-text p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .usda-inner { flex-direction: column; text-align: center; }
}

/* =========================================
   TREE SAVINGS CALCULATOR
   ========================================= */
.tree-calc-section {
  padding: 80px 0;
  background: var(--white);
}
.tree-calc-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.tree-calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.tree-calc-text {
  padding: 48px 40px;
}
.tree-calc-display {
  position: relative;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}
.tree-calc-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hawaii-fields.jpg') center/cover;
}
.tree-calc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,44,0.88) 0%, rgba(7,42,30,0.78) 50%, rgba(11,61,44,0.72) 100%);
}
.tree-calc-numbers {
  position: relative;
  z-index: 2;
}
.tree-bag-count {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1;
}
.tree-bag-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tree-divider {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 20px 0;
  border-radius: 1px;
}
.tree-count-wrap {
  margin-bottom: 16px;
}
.tree-count {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.tree-count-label {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-top: 4px;
}
.tree-co2-line {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.tree-co2-line strong {
  color: var(--brand-accent);
}
.tree-slider-wrap {
  max-width: 100%;
}
.tree-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--brand-accent) 0%, var(--brand-accent) 1%, var(--gray-200) 1%, var(--gray-200) 100%);
  outline: none;
  cursor: pointer;
}
.tree-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(42,157,143,0.4);
  border: 3px solid #fff;
  transition: transform 0.15s;
}
.tree-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.tree-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(42,157,143,0.4);
  border: 3px solid #fff;
}
.tree-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}
@media (max-width: 768px) {
  .tree-calc-inner { grid-template-columns: 1fr; }
  .tree-calc-text { padding: 32px 24px; }
  .tree-calc-display { padding: 32px 24px; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   PRODUCTS PAGE
   ========================================= */
.products-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
  text-align: center;
}
.products-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}
.products-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.product-card-img {
  height: 220px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 24px;
}
.product-card-body .tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-accent-glow);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
}
.product-card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.product-card-body .badge-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 500;
  border-radius: 6px;
}
.product-badge.green { background: rgba(42,157,143,0.1); color: var(--brand-accent-dark); }

/* Additional products grid */
.additional-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.additional-product {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
}
.additional-product:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-md);
}
.additional-product h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.additional-product p {
  font-size: 13px;
  color: var(--gray-500);
}

/* =========================================
   PAPER BAGS PAGE
   ========================================= */
.bags-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
}
.bags-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bags-hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  color: #fff;
  margin-bottom: 16px;
}
.bags-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
}
.bags-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.bags-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 768px) {
  .bags-hero-inner { grid-template-columns: 1fr; }
}

.bag-sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bag-size-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.bag-size-card:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-md);
}
.bag-size-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.bag-size-card .dims {
  font-size: 14px;
  color: var(--brand-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.bag-size-card p {
  font-size: 13px;
  color: var(--gray-500);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
  text-align: center;
}
.about-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}
.about-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.mission-section {
  padding: 80px 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-grid h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.mission-grid h2 .accent { color: var(--brand-accent); }
.mission-grid p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.mission-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.mission-img img { width: 100%; }
@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.value-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Problem section */
.problem-section {
  padding: 80px 0;
  background: var(--off-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-grid h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.problem-grid p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: 12px; top: 4px;
  width: 18px; height: 18px;
  background: var(--brand-accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--brand-accent-glow);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 4px;
}
.timeline-event {
  font-size: 16px;
  color: var(--gray-700);
}

/* =========================================
   HEMP 101 PAGE
   ========================================= */
.hemp101-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #165A42 0%, var(--brand-primary) 100%);
  text-align: center;
}
.hemp101-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}
.hemp101-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.hemp-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.hemp-fact-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s;
}
.hemp-fact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-accent);
}
.hemp-fact-card .emoji {
  font-size: 40px;
  margin-bottom: 12px;
}
.hemp-fact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.hemp-fact-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Anatomy diagram */
.anatomy-section {
  padding: 80px 0;
  text-align: center;
}
.anatomy-img {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* Quiz */
.quiz-section {
  padding: 80px 0;
  background: var(--off-white);
}
.quiz-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.quiz-question {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  padding: 16px 20px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}
.quiz-option:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent-glow);
}
.quiz-option.correct {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  color: #065F46;
}
.quiz-option.wrong {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
  color: #991B1B;
}
.quiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.quiz-progress-dot {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
}
.quiz-progress-dot.filled { background: var(--brand-accent); }
.quiz-progress-dot.current { background: var(--amber); }
.quiz-score {
  text-align: center;
  padding: 40px;
}
.quiz-score h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.quiz-score p {
  font-size: 16px;
  color: var(--gray-500);
}

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
  text-align: center;
}
.blog-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}
.blog-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.blog-filter {
  padding: 8px 20px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter.active, .blog-filter:hover {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
  align-items: stretch;
}
.blog-featured-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}
.blog-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
.blog-featured-content .tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-accent-glow);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}
.blog-featured-content h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.blog-featured-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-400);
}
@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 24px;
}
.blog-card-body .tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-accent-glow);
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
  text-align: center;
}
.newsletter h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button {
  padding: 14px 28px;
  background: #fff;
  color: var(--brand-accent-dark);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s;
}
.newsletter-form button:hover { transform: scale(0.97); }
@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
}

/* =========================================
   BAG LOGO PREVIEW
   ========================================= */
.logo-preview-hero {
  padding: 160px 0 40px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
  text-align: center;
}
.logo-preview-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 12px;
}
.logo-preview-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

.logo-preview-workspace {
  padding: 60px 0;
}
.control-group {
  margin-bottom: 16px;
}
.control-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.control-group select {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}
@media (max-width: 768px) {
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}
.contact-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  background: var(--gray-50);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px var(--brand-accent-glow);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--brand-accent-dark); }

.contact-info {
  padding: 20px 0;
}
.contact-info-card {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-accent-glow);
  color: var(--brand-accent);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--gray-500);
}
.expect-section {
  margin-top: 40px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.expect-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.expect-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.expect-item .num {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
.expect-item p {
  font-size: 14px;
  color: var(--gray-600);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================
   INVESTOR PAGE
   ========================================= */
.investor-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #072A1E 100%);
}
.investor-gate-box {
  padding: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 420px;
  width: 100%;
}
.investor-gate-box h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.investor-gate-box .sub {
  color: var(--brand-accent);
  font-size: 14px;
  margin-bottom: 24px;
}
.investor-gate-box p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 24px;
}
.investor-gate-box input {
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(42,157,143,0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  outline: none;
  margin-bottom: 16px;
}
.investor-gate-box input:focus {
  border-color: var(--brand-accent);
}
.investor-gate-box button {
  width: 100%;
  padding: 14px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
}
.investor-gate-box button:hover { background: var(--brand-accent-dark); }
.investor-gate-box .error {
  color: #EF4444;
  font-size: 13px;
  margin-top: 12px;
}
.investor-deck-frame {
  width: 100%;
  min-height: 100vh;
  border: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--brand-accent); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-contact-item svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--brand-accent); }
.footer-legal {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================
   PAGE TRANSITIONS
   ========================================= */
.page-enter {
  animation: fadeIn 0.3s ease-out;
}

/* =========================================
   CUSTOM ICON (replaces emojis)
   ========================================= */
.icon-circle {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-accent-glow);
  border-radius: 14px;
  color: var(--brand-accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; }
.icon-circle-sm {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-accent-glow);
  border-radius: 10px;
  color: var(--brand-accent);
}
.icon-circle-sm svg { width: 20px; height: 20px; }

/* =========================================
   FOUNDER SECTION (About page)
   ========================================= */
.founder-section {
  padding: 80px 0;
  background: var(--off-white);
}
.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.founder-photo::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 100%; height: 100%;
  border: 2px solid var(--brand-accent);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.founder-content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.founder-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.founder-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.founder-book {
  margin-top: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-book .book-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
.founder-book .book-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.founder-book .book-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 2px;
}
.founder-book .book-link {
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s;
}
.founder-book .book-link:hover { color: var(--brand-primary); }
@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo { max-width: 300px; margin: 0 auto; }
}

/* =========================================
   PRICING TABLE
   ========================================= */
.pricing-section {
  padding: 80px 0;
  background: var(--off-white);
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.pricing-header {
  padding: 28px 32px;
  background: var(--brand-primary);
  color: #fff;
}
.pricing-header h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.pricing-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.pricing-specs {
  padding: 16px 32px;
  background: rgba(11,61,44,0.05);
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-specs strong { color: var(--gray-800); }
.pricing-table-wrap {
  padding: 0 32px 32px;
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
}
.pricing-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-200);
}
.pricing-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.pricing-table tbody tr:hover {
  background: var(--brand-accent-glow);
}
.pricing-table .size-name {
  font-weight: 700;
  color: var(--gray-900);
}
.pricing-table .popular {
  display: inline-block;
  padding: 2px 8px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.pricing-table .price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-primary);
}
.pricing-note {
  padding: 16px 32px 28px;
  font-size: 13px;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-100);
}
.pricing-note strong { color: var(--brand-accent-dark); }

/* =========================================
   MEMORY MATCH GAME
   ========================================= */
.match-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.match-card {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  cursor: pointer;
  perspective: 600px;
  position: relative;
}
.match-card-inner {
  width: 100%; height: 100%;
  border-radius: var(--radius-md);
  position: relative;
  transition: transform 0.4s;
  transform-style: preserve-3d;
}
.match-card.flipped .match-card-inner,
.match-card.matched .match-card-inner {
  transform: rotateY(180deg);
}
.match-card-face {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.match-card-back {
  background: var(--brand-primary);
  border: 2px solid var(--brand-primary-light);
}
.match-card-back svg {
  width: 32px; height: 32px;
  color: var(--brand-accent);
  opacity: 0.5;
}
.match-card-front {
  background: #fff;
  border: 2px solid var(--gray-200);
  transform: rotateY(180deg);
  padding: 8px;
}
.match-card.matched .match-card-front {
  border-color: var(--brand-accent);
  background: var(--brand-accent-glow);
}
.match-card-front .card-emoji {
  font-size: 28px;
  margin-bottom: 4px;
}
.match-card-front .card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}
.match-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--gray-600);
}
.match-stats span { font-weight: 700; color: var(--brand-accent); }

/* =========================================
   DUAL BAG PHOTO PREVIEW (independent sides)
   ========================================= */
.dual-bag-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.bag-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.bag-photo-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.bag-photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.1));
}
.bag-photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.logo-overlay {
  position: absolute;
  width: 35%;
  height: auto;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: contain;
  z-index: 2;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}
.logo-placeholder {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(140, 120, 90, 0.35);
  white-space: nowrap;
  pointer-events: none;
}
.bag-controls {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.logo-upload-zone.mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px dashed var(--gray-300);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  color: var(--gray-500);
}
.logo-upload-zone.mini:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}
.logo-upload-zone.mini svg { width: 20px; height: 20px; flex-shrink: 0; }
.bag-controls .control-group { margin-bottom: 0; }
.bag-controls .control-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.bag-controls .control-group label span {
  font-weight: 700;
  color: var(--brand-accent);
}
.bag-controls input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-200);
  border-radius: 2px;
  outline: none;
}
.bag-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--brand-accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.preview-toolbar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.preview-toolbar button {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.preview-toolbar button svg { width: 16px; height: 16px; }
.preview-toolbar button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(42,157,143,0.3); }
.preview-toolbar button.outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  box-shadow: none;
}
.preview-toolbar button.outline:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  box-shadow: none;
}
@media (max-width: 700px) {
  .dual-bag-layout { grid-template-columns: 1fr; gap: 48px; }
  .bag-photo-frame { max-width: 260px; }
}

/* =========================================
   SCROLL OBSERVER (JS-driven)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Success message */
.success-message {
  padding: 40px;
  text-align: center;
  animation: scaleIn 0.4s ease-out;
}
.success-message .checkmark {
  width: 60px; height: 60px;
  background: #10B981;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.success-message h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.success-message p {
  font-size: 15px;
  color: var(--gray-500);
}
