:root {
  /* Brand Colors - inspired by Cookie-Script.com */
  --primary: #00c853; /* Green accent */
  --primary-dark: #009624;
  --secondary: #293241; /* Dark navy */
  --text-main: #2c3e50;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 70px;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--white);
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: #1a202c;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background-color: rgba(0, 200, 83, 0.05);
}

.text-center { text-align: center; }
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Header */
header {
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--primary); }

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--primary); }

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--secondary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

/* Badges/Trust */
.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0.7;
  font-weight: 600;
  color: var(--text-light);
}

/* Features Grid */
.features {
  padding: 80px 0;
}

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

.card {
  padding: 32px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.icon-box {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 12px; color: var(--secondary); }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* Service Highlight (Implementation & Audit) */
.services-highlight {
  background-color: var(--secondary);
  color: var(--white);
  padding: 80px 0;
}

.services-highlight .section-title { color: var(--white); }
.services-highlight .section-subtitle { color: #cbd5e1; }

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
}
.service-card h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 16px; }
.service-card ul { list-style: none; margin-bottom: 24px; }
.service-card li { margin-bottom: 12px; display: flex; gap: 10px; }
.service-card li::before { content: "✓"; color: var(--primary); font-weight: bold; }

/* Pricing */
.pricing { padding: 80px 0; background: var(--bg-light); }
.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
}

.popular-tag {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  width: 120px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 20px 0;
}
.price span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.features-list { text-align: left; margin: 30px 0; list-style: none; }
.features-list li { margin-bottom: 12px; color: var(--text-main); }

/* How it works */
.steps { padding: 80px 0; }
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
}

/* Footer */
footer {
  background: var(--secondary);
  color: #94a3b8;
  padding: 60px 0 20px;
  font-size: 0.9rem;
}

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

.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; text-decoration: none; }
.footer-col a:hover { color: var(--primary); }

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { display: none; } /* Mobile menu simplified for now */
  .hero-buttons { flex-direction: column; }
}
