*, *::before, *::after { box-sizing: border-box; }

    :root {
      --green: #1f7a4f;
      --green-dark: #155c3b;
      --green-soft: #e7f6ee;
      --ink: #0f172a;
      --muted: #475569;
      --border: #e2e8f0;
      --surface: #f8fafc;
    }

    body {
      margin: 0;
      font-family: "Manrope", "Segoe UI", sans-serif;
      background: #ffffff;
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }

    .a-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .a-nav-inner {
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .a-nav-links a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--muted);
      padding: 5px 10px;
      border-radius: 6px;
      transition: color 0.15s ease, background 0.15s ease;
    }

    .a-nav-links a:hover { color: var(--green); }

    .a-brand {
      display: inline-flex;
      align-items: center;
    }

    .a-brand-logo {
      height: 28px;
    }

    .a-brand::after {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      background: #10b981;
      border-radius: 50%;
      margin-left: 4px;
      margin-bottom: 0;
      align-self: flex-end;
      box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
      animation: fs-pulse 2.4s ease-in-out infinite;
    }

    @keyframes fs-pulse {
      0%, 100% { box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2); }
      50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    }

    .a-hero {
      position: relative;
      overflow: hidden;
      padding: 96px 0 80px;
      background: #ffffff;
    }

    .a-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(90px);
    }

    .a-blob-1 {
      width: 680px;
      height: 680px;
      background: radial-gradient(circle, rgba(31, 122, 79, 0.11) 0%, transparent 65%);
      top: -200px;
      right: -160px;
    }

    .a-blob-2 {
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
      bottom: -100px;
      left: -80px;
    }

    .a-hero-inner {
      position: relative;
      z-index: 1;
    }

    .a-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
      border-radius: 999px;
      border: 1px solid rgba(31, 122, 79, 0.22);
      background: var(--green-soft);
      color: var(--green);
      font-size: 0.77rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 6px 14px;
    }

    .a-eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
      animation: pulse-a 2.6s ease-in-out infinite;
    }

    @keyframes pulse-a {
      0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18); }
      50% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
    }

    .a-hero h1 {
      margin: 0 0 22px;
      color: var(--ink);
      font-size: clamp(2.4rem, 5vw, 3.85rem);
      font-weight: 800;
      line-height: 1.07;
      letter-spacing: -0.04em;
    }

    .a-hero h1 em {
      font-style: normal;
      background: linear-gradient(125deg, #1f7a4f 0%, #34d399 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .a-hero .lead {
      max-width: 620px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.8vw, 1.14rem);
      line-height: 1.72;
    }

    .a-hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
      align-items: center;
      gap: 44px;
    }

    .a-hero-copy {
      min-width: 0;
    }

    .a-hero-visual {
      min-width: 0;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .a-hero-mockup {
      width: min(100%, 760px);
      display: block;
    }

    .a-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .a-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--surface);
      color: var(--muted);
      font-size: 0.79rem;
      font-weight: 600;
      padding: 6px 14px;
    }

    .a-pill svg { color: var(--green); flex-shrink: 0; }

    .a-card {
      height: 100%;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #ffffff;
      padding: 26px 22px;
      box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04), 0 8px 28px rgba(15, 23, 42, 0.06);
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .a-card:hover {
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06), 0 20px 48px rgba(15, 23, 42, 0.09);
      transform: translateY(-3px);
    }

    .a-step-num {
      width: 38px;
      height: 38px;
      margin-bottom: 14px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 800;
    }

    .a-card-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 14px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--green-soft);
    }

    .a-card h3 {
      margin: 0 0 9px;
      color: var(--ink);
      font-size: 1.04rem;
      font-weight: 700;
    }

    .a-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.65;
    }

    .a-section { padding: 64px 0; }
    .a-section-alt { background: var(--surface); }

    .a-section-label {
      margin-bottom: 8px;
      color: var(--green);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .a-section-heading {
      margin: 0;
      color: var(--ink);
      font-size: clamp(1.5rem, 2.8vw, 2.15rem);
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .a-section-sub {
      max-width: 520px;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.65;
    }

    .a-cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      background: var(--ink);
      padding: 56px 40px;
      text-align: center;
    }

    .a-cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
    }

    .a-cta-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 50% 60% at 20% 80%, rgba(31, 122, 79, 0.1) 0%, transparent 70%);
    }

    .a-cta-inner { position: relative; z-index: 1; }

    .a-cta-panel h2 {
      margin: 0 0 12px;
      color: #f8fafc;
      font-size: clamp(1.7rem, 3.2vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .a-cta-panel p {
      margin: 0 0 28px;
      color: #64748b;
      font-size: 1rem;
    }

    .btn-a-green {
      display: inline-block;
      border: none;
      border-radius: 10px;
      background: var(--green);
      color: #fff;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 11px 22px;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(31, 122, 79, 0.28);
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-a-green:hover {
      background: var(--green-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(31, 122, 79, 0.38);
    }

    .btn-a-outline {
      display: inline-block;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      background: transparent;
      color: var(--ink);
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 11px 22px;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    .btn-a-outline:hover {
      border-color: #94a3b8;
      background: var(--surface);
      color: var(--ink);
    }

    .a-nav-cta {
      padding: 9px 18px;
      font-size: 0.88rem;
    }

    .btn-a-cta {
      display: inline-block;
      border: none;
      border-radius: 10px;
      background: #10b981;
      color: #fff;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 700;
      padding: 14px 32px;
      box-shadow: 0 2px 14px rgba(16, 185, 129, 0.32);
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-a-cta:hover {
      background: #059669;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 4px 22px rgba(16, 185, 129, 0.42);
    }

    .a-footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 26px 0;
    }

    .a-footer a { color: #64748b; font-size: 0.88rem; }
    .a-footer a:hover { color: var(--green); }

    .a-footer-copyright {
      color: #94a3b8;
      font-size: 0.88rem;
    }

    @media (min-width: 1200px) and (max-width: 1439px) {
      .container-xxl {
        max-width: 1240px;
        padding-left: 28px;
        padding-right: 28px;
      }

      .a-hero-layout {
        gap: 36px;
      }
    }

    @media (max-height: 800px) {
      .a-hero {
        padding: 56px 0 56px;
      }
    }

    @media (max-height: 680px) {
      .a-hero {
        padding: 36px 0 36px;
      }
    }

    @media (max-width: 767px) {
      .a-nav-inner {
        min-height: 62px;
      }

      .a-hero {
        padding: 72px 0 58px;
      }

      .a-hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .a-hero-visual {
        justify-content: center;
      }
    }
