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

    :root {
      --green: #129d00;
      --green-light: #e8f7e5;
      --text: #111;
      --muted: #666;
      --line: #e0e0e0;
      --white: #ffffff;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Switzer', sans-serif;
      background: var(--white);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--line);
      padding: 0 1.5rem;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo img {
      height: 28px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--green);
    }

    /* ── HERO ── */
    .hero {
      padding: 5rem 1.5rem 4rem;
      max-width: 680px;
      margin: 0 auto;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 1.5rem;
    }

    .hero-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--green);
    }

    h1 {
      font-size: clamp(2rem, 6vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 1.75rem;
    }

    h1 em {
      font-style: normal;
      color: var(--green);
    }

    /* ── HERO IMAGE ── */
    .hero-image {
      width: 100%;
      border-radius: 8px;
      display: block;
      margin-bottom: 1.75rem;
      border: 1px solid var(--line);
      object-fit: cover;

    }

    .hero-sub {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .btn {
      display: inline-block;
      padding: 0.7rem 1.5rem;
      border-radius: 4px;
      font-family: 'Switzer', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-primary {
      background: var(--green);
      color: #fff;
      border: 1px solid var(--green);
    }

    .btn-primary:hover {
      background: #0e8500;
      border-color: #0e8500;
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--line);
    }

    .btn-outline:hover {
      border-color: var(--green);
      color: var(--green);
    }

    /* ── DIVIDER ── */
    .divider {
      border: none;
      border-top: 1px solid var(--line);
      margin: 0 1.5rem;
    }

    /* ── STATS ── */
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      max-width: 680px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem;
    }

    .stat {
      padding-right: 1.5rem;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border-right: none;
      padding-right: 0;
      padding-left: 1.5rem;
    }

    .stat:nth-child(2) {
      padding-left: 1.5rem;
    }

    .stat-number {
      font-size: 1.75rem;
      font-weight: 600;
      letter-spacing: -0.04em;
      color: var(--green);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 400;
    }

    /* ── SERVICES ── */
    .section {
      max-width: 680px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    .section-header {
      margin-bottom: 2rem;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 16px;
      height: 1px;
      background: var(--muted);
    }

    h2 {
      font-size: clamp(1.4rem, 4vw, 1.9rem);
      font-weight: 500;
      letter-spacing: -0.025em;
      line-height: 1.2;
    }

    .services {
      display: flex;
      flex-direction: column;
    }

    .service-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--line);
    }

    .service-item:first-child {
      border-top: 1px solid var(--line);
    }

    .service-num {
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--green);
      letter-spacing: 0.05em;
      padding-top: 0.15rem;
      min-width: 24px;
    }

    .service-content h3 {
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 0.3rem;
    }

    .service-content p {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.5;
    }

    /* ── FEATURE BLOCK ── */
    .feature-block {
      background: var(--green-light);
      border: 1px solid #c5e8bf;
      border-radius: 6px;
      padding: 2rem;
      margin: 0 1.5rem 3rem;
    }

    .feature-block-inner {
      max-width: 680px;
      margin: 0 auto;
    }

    .feature-block h3 {
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }

    .feature-block p {
      font-size: 0.875rem;
      color: #3a5c38;
      font-weight: 300;
      line-height: 1.6;
    }

    /* ── PROCESS ── */
    .process {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .process-step {
      display: grid;
      grid-template-columns: 2rem 1fr;
      gap: 1rem;
      padding: 1.25rem 0;
      position: relative;
    }

    .process-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 0.75rem;
      top: 3rem;
      bottom: 0;
      width: 1px;
      background: var(--line);
    }

    .step-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      margin-top: 0.4rem;
      flex-shrink: 0;
    }

    .step-body h4 {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .step-body p {
      font-size: 0.82rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.5;
    }

    /* ── TESTIMONIAL ── */
    .testimonial {
      border-left: 2px solid var(--green);
      padding: 1.25rem 1.5rem;
      margin: 2rem 0 0;
    }

    .testimonial p {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.65;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .testimonial-meta {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .testimonial-meta strong {
      color: var(--text);
      font-weight: 500;
    }

    /* ── CONTACT ── */
    .contact-section {
      border-top: 1px solid var(--line);
      max-width: 680px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    .contact-grid {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

    .contact-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    label {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    input, textarea {
      font-family: 'Switzer', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text);
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 0.65rem 0.85rem;
      width: 100%;
      outline: none;
      transition: border-color 0.2s;
    }

    input:focus, textarea:focus {
      border-color: var(--green);
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    .contact-submit {
      margin-top: 0.5rem;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--line);
      padding: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      gap: 1.25rem;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.78rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--green);
    }

    /* ── RESPONSIVE ── */
    @media (min-width: 600px) {
      nav {
        padding: 0 2.5rem;
      }

      .hero,
      .section,
      .contact-section,
      .stats {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
      }

      .divider {
        margin: 0 2.5rem;
      }

      .feature-block {
        margin-left: 2.5rem;
        margin-right: 2.5rem;
      }

      footer {
        padding: 1.5rem 2.5rem;
      }

      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-field:last-of-type {
        grid-column: 1 / -1;
      }
    }

th, td {
    padding: 4px;
}

tr:nth-child(odd) {
    background-color: #f5f5f5;
}

tr:nth-child(even) {
    background-color: #ffffff;
}
