
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary: #1a4d2e;
      --primary-light: #2d7a4a;
      --primary-dark: #0f3319;
      --accent: #d4a843;
      --text: #1a2e1f;
      --text-muted: #5a6b5e;
      --bg: #ffffff;
      --bg-alt: #f7f9f7;
      --border: #dde5dd;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(26, 77, 46, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .navbar-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 12px 24px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .navbar-logo { width: 48px; height: 48px; border-radius: 50%; }
    .navbar-title { color: var(--white); }
    .navbar-title span { display: block; font-size: 18px; font-weight: 700; letter-spacing: 1px; }
    .navbar-title small { display: block; font-size: 11px; letter-spacing: 3px; opacity: 0.8; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.8); text-decoration: none;
      font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--white); }

    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(15, 51, 25, 0.85), rgba(26, 77, 46, 0.75)),
                  url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
      text-align: center; padding: 120px 24px 80px;
    }
    .hero-content { max-width: 800px; animation: fadeInUp 1s ease-out; }
    .hero h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
    .hero h1 em { font-style: normal; color: var(--accent); }
    .hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
    .btn-hero {
      display: inline-block; background: var(--accent); color: var(--text);
      padding: 16px 36px; font-size: 14px; font-weight: 600;
      letter-spacing: 1px; text-decoration: none; border-radius: 4px;
      transition: filter 0.3s;
    }
    .btn-hero:hover { filter: brightness(1.1); }

    /* ===== SECTIONS ===== */
    .section { padding: 96px 24px; }
    .section-alt { background: var(--bg-alt); }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 64px; }
    .section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
    .section-header .bar { width: 64px; height: 4px; background: var(--primary); margin: 0 auto 24px; border-radius: 2px; }
    .section-header p { color: var(--text-muted); font-size: 18px; max-width: 700px; margin: 0 auto; }

    /* ===== STATS ===== */
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .stat-card {
      text-align: center; padding: 32px 24px; background: var(--bg);
      border: 1px solid var(--border); border-radius: 8px;
      transition: box-shadow 0.3s;
    }
    .stat-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .stat-icon { width: 32px; height: 32px; margin: 0 auto 12px; color: var(--primary); }
    .stat-value { font-size: 32px; font-weight: 700; margin-bottom: 4px; }
    .stat-label { font-size: 14px; color: var(--text-muted); }

    /* ===== SERVICES ===== */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card {
      padding: 40px 32px; border: 1px solid var(--border);
      border-radius: 8px; background: var(--bg);
      transition: all 0.3s; cursor: default;
    }
    .service-card:hover { background: var(--primary); border-color: var(--primary); }
    .service-card:hover h3,
    .service-card:hover p,
    .service-card:hover .service-icon { color: var(--white); }
    .service-card:hover p { opacity: 0.85; }
    .service-icon { width: 40px; height: 40px; color: var(--primary); margin-bottom: 16px; transition: color 0.3s; }
    .service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; transition: color 0.3s; }
    .service-card p { color: var(--text-muted); line-height: 1.7; transition: color 0.3s; }

    /* ===== CONTACT ===== */
    .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
    .contact-card {
      text-align: center; padding: 40px 24px;
      border: 1px solid var(--border); border-radius: 8px; background: var(--bg);
    }
    .contact-card .contact-icon { width: 32px; height: 32px; margin: 0 auto 12px; color: var(--primary); }
    .contact-card h3 { font-weight: 600; margin-bottom: 8px; }
    .contact-card p { font-size: 14px; color: var(--text-muted); }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--primary); color: var(--white);
      padding: 48px 24px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 24px;
    }
    .footer-brand { display: flex; align-items: center; gap: 12px; }
    .footer-logo { width: 40px; height: 40px; border-radius: 50%; }
    .footer-brand span { font-weight: 700; letter-spacing: 1px; }
    .footer-social a {
      color: rgba(255,255,255,0.7); transition: color 0.3s;
    }
    .footer-social a:hover { color: var(--white); }
    .footer-copy { font-size: 14px; opacity: 0.6; }

    /* ===== SCROLL REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--primary); padding: 24px;
        gap: 16px; border-top: 1px solid rgba(255,255,255,0.1);
      }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
    }
