:root {
  --primary: #005e2b;
  --primary-light: #008a3f;
  --accent: #f9b233;
  --bg: #fdfdfd;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #555555;
  --border: #e0e0e0;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  
  --wf-space-xs: 8px;
  --wf-space-sm: 16px;
  --wf-space-md: 24px;
  --wf-space-lg: 32px;
  --wf-space-xl: 64px;
  --wf-space-2xl: 96px;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.1;
  font-weight: 800;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

section {
  padding: var(--wf-space-xl) 0;
  position: relative;
}

/* Typography */
.text-display { font-size: clamp(2.5rem, 8vw, 4.5rem); text-transform: uppercase; letter-spacing: -0.02em; }
.text-h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.text-h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
.text-lead { font-size: 1.25rem; color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 94, 43, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--text);
}

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--wf-space-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Placeholders */
.placeholder-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.placeholder-image::after {
  content: attr(data-label);
  color: #999;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--wf-space-md);
}

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

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Marketing Machine Icons */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--wf-space-md);
}

.marketing-card {
  background: white;
  padding: var(--wf-space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.marketing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 94, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 8px;
}

/* Territory Component */
.territory-lock {
  background: #111;
  color: white;
  padding: var(--wf-space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.territory-lock::after {
  content: 'SECURE';
  position: absolute;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.territory-content {
  position: relative;
  z-index: 1;
}

/* Investment Table */
.investment-card {
  border: 2px solid var(--primary);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--wf-space-sm) 0;
  border-bottom: 1px dashed var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label { font-weight: 500; }
.price-value { font-weight: 800; color: var(--primary); font-size: 1.2rem; }

/* Scale Checklist */
.scale-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: var(--wf-space-md);
}

.scale-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Specific Components */
.navbar {
  padding: var(--wf-space-sm) 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wf-space-md);
  margin: var(--wf-space-lg) 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.stat-box {
  text-align: center;
  padding: var(--wf-space-lg);
  border-right: 1px solid var(--border);
}

.stat-box:last-child { border-right: none; }

.data-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.data-row:last-child { border-bottom: none; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: var(--wf-space-md);
  border: 1px solid var(--border);
  text-align: left;
}

.highlight-cell {
  background: rgba(0, 94, 43, 0.05);
  font-weight: 700;
  color: var(--primary);
}

footer {
  background: #111;
  color: white;
  padding: var(--wf-space-xl) 0;
  margin-top: var(--wf-space-2xl);
}
