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

:root {
  --brand-green: #5ea11e;
  --brand-green-hover: #4e8816;
  --brand-dark: #111827;
  --brand-dark-hover: #1f2937;
  
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  
  --bg-main: #ffffff;
  --bg-alt: #f9fafb;
  --border-color: #e5e7eb;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Inter', sans-serif; 
  background: var(--bg-main); 
  color: var(--text-main); 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.center { text-align: center; }
.text-orange { color: #d97706; }
.text-purple { color: #6366f1; }

/* ============ NAVBAR ============ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
nav.scrolled {
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.logo img {
  height: 36px; border-radius: var(--radius-sm);
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand-green); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.btn-primary-sm {
  background: var(--brand-green); color: #fff; text-decoration: none;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-primary-sm:hover { background: var(--brand-green-hover); }

.burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--text-main); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: #fff; flex-direction: column; padding: 1.5rem 5%; gap: 1rem;
  border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 1.05rem; }

/* ============ HERO ============ */
.hero {
  padding: 8rem 5% 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
}
.hero-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 4rem;
}
.hero-content { flex: 1; }
.hero-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--brand-green);
  background: rgba(94, 161, 30, 0.1); padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 3.2rem; font-weight: 700; line-height: 1.2; letter-spacing: -1px; margin-bottom: 1.2rem; color: var(--brand-dark);
}
.hero-title span { color: var(--brand-green); }
.hero-description {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; max-width: 540px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.justify-center { justify-content: center; }
.btn-store {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.2rem; border-radius: var(--radius-sm);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-store i { font-size: 1.5rem; }
.btn-store-dark { background: var(--brand-dark); color: #fff; }
.btn-store-dark:hover { background: var(--brand-dark-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-store-green { background: var(--brand-green); color: #fff; }
.btn-store-green:hover { background: var(--brand-green-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-store-text { display: flex; flex-direction: column; }
.btn-store-text span { font-size: 0.65rem; text-transform: uppercase; opacity: 0.8; line-height: 1; margin-bottom: 2px; }
.btn-store-text strong { font-size: 1rem; line-height: 1; }

.hero-metrics {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--border-color);
}
.metric { display: flex; flex-direction: column; }
.metric-val { font-size: 1.5rem; font-weight: 700; color: var(--brand-dark); }
.metric-lbl { font-size: 0.85rem; color: var(--text-muted); }
.metric-divider { width: 1px; height: 30px; background: var(--border-color); }

.hero-visual { flex: 1; display: flex; justify-content: flex-end; }
.hero-image { max-width: 320px; width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); }

/* ============ SECTIONS COMMON ============ */
.section { padding: 6rem 0; border-bottom: 1px solid var(--border-color); }
.bg-light { background: var(--bg-alt); }

.section-header { margin-bottom: 4rem; max-width: 600px; }
.section-header.center { margin: 0 auto 4rem; text-align: center; }
.section-badge {
  display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-muted);
  background: #e5e7eb; padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.badge-green { background: rgba(94, 161, 30, 0.1); color: var(--brand-green); }

.section-header h2, .split-text h2 {
  font-size: 2.2rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 1rem; color: var(--brand-dark);
}
.section-header p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; }

/* ============ FEATURE GRID (PARTICULIERS) ============ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-card {
  background: #fff; padding: 2.5rem 2rem; border-radius: var(--radius-md);
  border: 1px solid var(--border-color); box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card.highlight { border-top: 4px solid var(--brand-green); }
.feature-icon {
  width: 48px; height: 48px; background: var(--bg-alt); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  margin-bottom: 1.5rem; color: var(--brand-dark); border: 1px solid var(--border-color);
}
.feature-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; color: var(--brand-dark); }
.feature-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ============ SPLIT LAYOUT (PROS) ============ */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.split-text .lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.6; }

.benefits-list { list-style: none; margin-bottom: 2.5rem; }
.benefits-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.benefits-list li i {
  color: var(--brand-green); font-size: 0.9rem; margin-top: 0.3rem;
  background: rgba(94, 161, 30, 0.1); padding: 4px; border-radius: 50%;
}
.benefits-list li strong { display: block; font-size: 1.05rem; font-weight: 600; color: var(--brand-dark); margin-bottom: 0.2rem; }
.benefits-list li span { font-size: 0.95rem; color: var(--text-muted); }

.action-wrap { display: flex; align-items: center; gap: 1.5rem; }
.btn-primary {
  display: inline-block; background: var(--brand-green); color: #fff; text-decoration: none;
  padding: 0.8rem 1.5rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 1rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--brand-green-hover); }
.sub-action { font-size: 0.85rem; color: var(--text-light); }

.split-image { position: relative; }
.split-image img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.floating-stat {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-md);
}
.stat-icon {
  width: 40px; height: 40px; background: rgba(94, 161, 30, 0.1); color: var(--brand-green);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.stat-title { display: block; font-weight: 600; font-size: 0.95rem; color: var(--brand-dark); }
.stat-desc { font-size: 0.85rem; color: var(--text-muted); }

/* ============ SECTORS ============ */
.sectors-wrapper {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
}
.sector-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius-sm); transition: border-color 0.2s; cursor: default;
}
.sector-item:hover { border-color: var(--brand-green); }
.sector-item i { font-size: 1.2rem; color: var(--text-light); width: 24px; text-align: center; }
.sector-item span { font-weight: 500; font-size: 0.95rem; color: var(--brand-dark); }
.highlight-sector { background: var(--brand-dark); border-color: var(--brand-dark); }
.highlight-sector i, .highlight-sector span { color: #fff; }
.highlight-sector:hover { border-color: var(--brand-dark-hover); background: var(--brand-dark-hover); }

/* ============ CTA SECTION ============ */
.cta-section { background: #fff; border-bottom: none; }
.cta-box {
  background: var(--bg-alt); padding: 4rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.cta-box h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--brand-dark); }
.cta-box p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============ FOOTER ============ */
.footer {
  background: var(--brand-dark); color: #fff;
  padding: 4rem 0 2rem;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 4rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.footer-brand img { height: 32px; border-radius: 4px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-light); font-size: 0.95rem; max-width: 300px; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.link-group h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; color: #fff; }
.link-group a {
  display: block; color: var(--text-light); text-decoration: none; font-size: 0.9rem;
  margin-bottom: 0.8rem; transition: color 0.2s;
}
.link-group a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem;
  text-align: center; color: var(--text-light); font-size: 0.85rem;
}

/* ============ PRIVACY PAGE ============ */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
}
.page-title {
  font-size: 2.8rem; font-weight: 700; color: var(--brand-dark);
  margin-bottom: 0.5rem; letter-spacing: -1px;
}
.page-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
}
.content-section {
  padding: 5rem 0;
  background: var(--bg-main);
}
.content-box {
  max-width: 800px; margin: 0 auto;
}
.content-box h2 {
  font-size: 1.5rem; font-weight: 600; color: var(--brand-dark);
  margin: 3rem 0 1rem;
}
.content-box h2:first-child { margin-top: 0; }
.content-box p, .content-box ul {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.content-box ul {
  padding-left: 1.5rem;
}
.content-box li {
  margin-bottom: 0.5rem;
}
.content-box a {
  color: var(--brand-green); text-decoration: none;
}
.content-box a:hover {
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .hero-container, .split-layout { flex-direction: column; text-align: center; gap: 3rem; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-metrics, .action-wrap { justify-content: center; }
  .benefits-list li { text-align: left; }
  .feature-grid { grid-template-columns: 1fr; }
  .split-text h2 { margin-left: auto; margin-right: auto; }
  .nav-links, .btn-primary-sm { display: none; }
  .burger { display: flex; }
  .hero-visual { justify-content: center; }
  .floating-stat { left: auto; right: 20px; bottom: -20px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.4rem; }
  .cta-box { padding: 2rem; }
  .footer-top { flex-direction: column; gap: 2.5rem; }
  .hero-metrics { flex-direction: column; gap: 1rem; border: none; padding-top: 1rem; }
  .metric-divider { display: none; }
}
