  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green-dark: #085041;
      --green-mid: #0F6E56;
      --green: #1D9E75;
      --green-light: #5DCAA5;
      --green-pale: #9FE1CB;
      --green-bg: #E1F5EE;
      --purple-bg: #EEEDFE;
      --purple-mid: #3C3489;
      --coral-bg: #FAECE7;
      --coral-mid: #993C1D;
      --blue-bg: #E6F1FB;
      --blue-mid: #185FA5;
      --text: #1a1a1a;
      --text-muted: #666;
      --text-faint: #999;
      --border: rgba(0,0,0,0.12);
      --border-soft: rgba(0,0,0,0.07);
      --bg: #fff;
      --bg-secondary: #f7f7f5;
      --radius-md: 8px;
      --radius-lg: 12px;
    }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
    a { text-decoration: none; }

    /* NAV */
    .nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; border-bottom: 0.5px solid var(--border-soft); position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); z-index: 100; }
    .logo { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; color: var(--text); }
    .logo span { color: var(--green); }
    .nav-links { display: flex; gap: 2rem; font-size: 14px; color: var(--text-muted); }
    .nav-links a { color: inherit; transition: color 0.2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-cta { background: var(--green); color: #fff; border: none; padding: 8px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; cursor: pointer; transition: background 0.2s; }
    .nav-cta:hover { background: var(--green-mid); }

    /* HERO */
    .hero { padding: 5.5rem 2rem 3.5rem; text-align: center; max-width: 800px; margin: 0 auto; }
    .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--green-bg); color: var(--green-mid); font-size: 12px; font-weight: 500; padding: 5px 14px; border-radius: 99px; margin-bottom: 1.5rem; }
    .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
    .hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 600; line-height: 1.12; letter-spacing: -0.7px; margin-bottom: 1.25rem; }
    .hero h1 em { font-style: normal; color: var(--green); }
    .hero p { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 560px; margin: 0 auto 2rem; }
    .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn-primary { background: var(--green); color: #fff; border: none; padding: 12px 28px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.2s; }
    .btn-primary:hover { background: var(--green-mid); }
    .btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); padding: 12px 28px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.2s; }
    .btn-outline:hover { background: var(--bg-secondary); }

    /* STATS */
    .stats { display: flex; justify-content: center; gap: 4rem; padding: 2.5rem 2rem; border-top: 0.5px solid var(--border-soft); border-bottom: 0.5px solid var(--border-soft); flex-wrap: wrap; }
    .stat { text-align: center; }
    .stat-num { font-size: 30px; font-weight: 600; color: var(--green); }
    .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

    /* SECTIONS */
    section { padding: 5rem 2rem; max-width: 1040px; margin: 0 auto; }
    .section-label { font-size: 12px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
    .section-title { font-size: clamp(22px, 3vw, 34px); font-weight: 600; letter-spacing: -0.4px; margin-bottom: 0.75rem; }
    .section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem; }

    /* SERVICES */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
    .service-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: border-color 0.2s, box-shadow 0.2s; }
    .service-card:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(29,158,117,0.08); }
    .service-icon { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--green-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
    .service-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 0.5rem; }
    .service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

    /* TEAM */
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
    .team-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; text-align: center; }
    .avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; margin: 0 auto 1rem; }
    .team-card h3 { font-size: 15px; font-weight: 600; }
    .team-card .role { font-size: 12px; color: var(--green); margin: 4px 0 8px; font-weight: 500; }
    .team-card p { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

    /* TESTIMONIALS */
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
    .testimonial { background: var(--bg-secondary); border-radius: var(--radius-lg); padding: 1.75rem; }
    .quote-mark { font-size: 36px; color: var(--green-pale); line-height: 1; margin-bottom: 0.75rem; font-family: Georgia, serif; }
    .testimonial p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
    .testimonial-author { display: flex; align-items: center; gap: 10px; }
    .t-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
    .t-name { font-size: 13px; font-weight: 600; }
    .t-title { font-size: 11px; color: var(--text-muted); }

    /* CONTACT */
    .contact-wrap { margin: 0 2rem 5rem; background: linear-gradient(135deg, var(--green-bg) 0%, var(--purple-bg) 100%); border-radius: 20px; padding: 4rem 2rem; text-align: center; }
    .contact-wrap .section-label { color: var(--green-mid); }
    .contact-wrap h2 { font-size: 28px; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: -0.4px; }
    .contact-wrap p.sub { font-size: 15px; color: var(--text-muted); max-width: 440px; margin: 0 auto 2rem; line-height: 1.7; }
    .contact-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
    .contact-form input, .contact-form textarea { padding: 11px 15px; border-radius: var(--radius-md); border: 0.5px solid var(--border); background: #fff; font-size: 14px; font-family: inherit; color: var(--text); width: 100%; outline: none; transition: border-color 0.2s; }
    .contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,158,117,0.1); }
    .contact-form textarea { min-height: 90px; resize: vertical; }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-faint); }
    .submit-btn { background: var(--green); color: #fff; border: none; padding: 13px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.2s; font-family: inherit; }
    .submit-btn:hover { background: var(--green-mid); }

    /* WHY US */
    .why-us { background: var(--bg); padding: 5rem 2rem; }
    .why-us-inner { max-width: 1040px; margin: 0 auto; }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 2.5rem; }
    .why-card { border-radius: var(--radius-lg); padding: 1.75rem; border: 0.5px solid var(--border); background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; }
    .why-card:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(29,158,117,0.08); }
    .why-num { font-size: 32px; font-weight: 700; color: var(--green-pale); line-height: 1; margin-bottom: 0.75rem; }
    .why-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 0.5rem; }
    .why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

    /* FOOTER */
    footer { padding: 2rem; text-align: center; border-top: 0.5px solid var(--border-soft); font-size: 13px; color: var(--text-muted); }
    footer .footer-logo { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
    footer .footer-logo span { color: var(--green); }

    /* RESPONSIVE */
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .hero { padding: 3.5rem 1.5rem 2.5rem; }
      .stats { gap: 2rem; }
      .contact-wrap { margin: 0 1rem 4rem; padding: 2.5rem 1.25rem; }
      section { padding: 3.5rem 1.5rem; }
    }
    /* CONTACT */
    .contact-wrap { margin: 0 2rem 5rem; background: linear-gradient(135deg, var(--green-bg) 0%, var(--purple-bg) 100%); border-radius: 20px; padding: 4rem 2rem; text-align: center; }
    .contact-wrap .section-label { color: var(--green-mid); }
    .contact-wrap h2 { font-size: 28px; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: -0.4px; }
    .contact-wrap p.sub { font-size: 15px; color: var(--text-muted); max-width: 440px; margin: 0 auto 2rem; line-height: 1.7; }
    .contact-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
    .contact-form input, .contact-form textarea { padding: 11px 15px; border-radius: var(--radius-md); border: 0.5px solid var(--border); background: #fff; font-size: 14px; font-family: inherit; color: var(--text); width: 100%; outline: none; transition: border-color 0.2s; }
    .contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,158,117,0.1); }
    .contact-form textarea { min-height: 90px; resize: vertical; }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-faint); }
    .submit-btn { background: var(--green); color: #fff; border: none; padding: 13px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.2s; font-family: inherit; }
    .submit-btn:hover { background: var(--green-mid); }

    /* FOOTER */
    footer { padding: 2rem; text-align: center; border-top: 0.5px solid var(--border-soft); font-size: 13px; color: var(--text-muted); }
    footer .footer-logo { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
    footer .footer-logo span { color: var(--green); }

    /* RESPONSIVE */
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .hero { padding: 3.5rem 1.5rem 2.5rem; }
      .stats { gap: 2rem; }
      .contact-wrap { margin: 0 1rem 4rem; padding: 2.5rem 1.25rem; }
      section { padding: 3.5rem 1.5rem; }
    }
    .contact-wrap {
      margin: 4rem 2rem;

      background: linear-gradient(
        135deg,
        var(--green-bg) 0%,
        var(--purple-bg) 100%
      );

      border-radius: 24px;

      padding: 4rem 3rem;
    }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;

      align-items: start;
    }

    .contact-left h2 {
      font-size: 32px;
      margin-bottom: 1rem;
    }

    .sub {
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;

      padding: 12px 14px;

      border-radius: var(--radius-md);

      border: 1px solid var(--border);

      font-size: 14px;

      font-family: inherit;
    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .submit-btn {
      background: var(--green);
      color: white;

      border: none;

      padding: 14px;

      border-radius: var(--radius-md);

      cursor: pointer;
    }

    .contact-right {
      padding-top: 2rem;
    }

    .contact-right h3 {
      margin-bottom: 1.5rem;
      font-size: 24px;
    }

    .contact-info p {
      margin-bottom: 1.5rem;
      color: var(--text-muted);
    }
