    :root {
      --green:       #5dab3e;
      --green-dark:  #4a8f30;
      --green-light: #eaf6e4;
      --blue:        #1a7cb9;
      --blue-dark:   #155f8f;
      --blue-light:  #e3f1fb;
      --gray-text:   #555b63;
      --gray-sub:    #8a9099;
      --white:       #ffffff;
      --off-white:   #f8fbf9;
      --border:      #dde9f3;
      --shadow-sm:   0 2px 12px rgba(26,124,185,.10);
      --shadow-md:   0 6px 30px rgba(26,124,185,.14);
    }

    /* ── Base ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--gray-text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── Navbar ─────────────────────────────────── */
    .navbar {
      background: var(--white);
      border-bottom: 2px solid var(--border);
      padding: 0.6rem 0;
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand img { height: 80px; }
    .nav-link {
      font-weight: 500;
      font-size: .93rem;
      color: var(--gray-text) !important;
      padding: .5rem 1rem !important;
      letter-spacing: .02em;
      transition: color .2s;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 1rem; right: 1rem;
      height: 2px;
      background: var(--green);
      transform: scaleX(0);
      transition: transform .25s;
    }
    .nav-link:hover, .nav-link.active { color: var(--green) !important; }
    .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
    .navbar-toggler { border: none; }
    .navbar-toggler:focus { box-shadow: none; }

    /* ── Hero ───────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #0d3d5e 0%, #1a7cb9 55%, #3ca040 100%);
      color: var(--white);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,.06)' stroke-width='1.5'/%3E%3C/svg%3E") repeat;
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-block;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 20px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .3rem .9rem;
      margin-bottom: 1.2rem;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.1rem;
    }
    .hero h1 span { color: #a8e680; }
    .hero p {
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 520px;
      opacity: .9;
      margin-bottom: 2rem;
    }
    .btn-hero-primary {
      background: var(--green);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: .7rem 1.8rem;
      border-radius: 6px;
      transition: background .2s, transform .2s;
    }
    .btn-hero-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
    .btn-hero-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,.6);
      color: #fff;
      font-weight: 600;
      padding: .65rem 1.8rem;
      border-radius: 6px;
      transition: all .2s;
    }
    .btn-hero-outline:hover { background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }
    .hero-stats {
      margin-top: 3rem;
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    .stat-item strong {
      display: block;
      font-size: 1.9rem;
      font-weight: 700;
      color: #a8e680;
      line-height: 1;
    }
    .stat-item span { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: .05em; }
    .hero-badge-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }
    .hero-badge {
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-align: center;
      max-width: 320px;
    }
    .hero-badge img { height: 90px; margin-bottom: 1.2rem; }
    .hero-badge h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
    .hero-badge p { font-size: .85rem; opacity: .75; margin: 0; }
    .brand-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; justify-content: center; }
    .brand-pill {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 20px;
      font-size: .75rem;
      padding: .25rem .75rem;
      font-weight: 500;
    }

    /* ── Section Shared ─────────────────────────── */
    section { padding: 80px 0; }
    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: .5rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 700;
      color: #1a2b3c;
      line-height: 1.25;
      margin-bottom: .6rem;
    }
    .section-divider {
      width: 48px;
      height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--green), var(--blue));
      margin: 0 auto 1.2rem;
    }
    .section-divider.left { margin: 0 0 1.2rem; }

    /* ── About ──────────────────────────────────── */
    #about { background: var(--off-white); }
    .about-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 2rem;
      height: 100%;
      transition: box-shadow .2s, transform .2s;
    }
    .about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .about-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    .about-icon.green { background: var(--green-light); color: var(--green-dark); }
    .about-icon.blue  { background: var(--blue-light);  color: var(--blue-dark);  }
    .about-card h5 { font-weight: 700; font-size: .98rem; color: #1a2b3c; margin-bottom: .4rem; }
    .about-card p  { font-size: .88rem; line-height: 1.65; margin: 0; }
    .about-body { font-size: 1rem; line-height: 1.8; }
    .brand-tag {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--green-light);
      color: var(--green-dark);
      border-radius: 6px;
      padding: .3rem .75rem;
      font-size: .82rem;
      font-weight: 600;
      margin: .2rem;
    }

    /* ── Products ───────────────────────────────── */
    #products { background: var(--white); }
    .product-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: box-shadow .25s, transform .25s;
      height: 100%;
    }
    .product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .product-card-header {
      padding: 2rem 1.8rem 1.2rem;
      background: linear-gradient(135deg, var(--green-light) 0%, var(--blue-light) 100%);
      text-align: center;
    }
    .product-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin: 0 auto 1rem;
      box-shadow: var(--shadow-sm);
    }
    .product-card h5 { font-weight: 700; color: #1a2b3c; margin: 0; }
    .product-card-body { padding: 1.4rem 1.8rem 1.8rem; }
    .product-card-body p { font-size: .87rem; line-height: 1.7; color: var(--gray-sub); margin-bottom: 1rem; }
    .product-tag {
      display: inline-block;
      background: var(--blue-light);
      color: var(--blue-dark);
      border-radius: 4px;
      padding: .15rem .55rem;
      font-size: .74rem;
      font-weight: 600;
      margin: .15rem;
    }

    /* ── Distributor ────────────────────────────── */
    #distributor { background: var(--off-white); }
    .dist-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: box-shadow .2s, transform .2s;
      height: 100%;
    }
    .dist-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .dist-logo-box {
      width: 72px; height: 72px;
      border-radius: 50%;
      margin: 0 auto 1rem;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      font-weight: 800;
    }
    .dist-logo-box.g { background: var(--green-light); color: var(--green-dark); }
    .dist-logo-box.b { background: var(--blue-light);  color: var(--blue-dark);  }
    .dist-card h5 { font-weight: 700; color: #1a2b3c; font-size: 1rem; margin-bottom: .35rem; }
    .dist-card p  { font-size: .84rem; color: var(--gray-sub); margin: 0; }

    /* ── Contact ────────────────────────────────── */
    #contact {
      background: linear-gradient(135deg, #0d3d5e 0%, #1a7cb9 100%);
      color: var(--white);
    }
    #contact .section-title { color: var(--white); }
    #contact .section-label { color: #a8e680; }
    .contact-card {
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 14px;
      padding: 1.8rem 1.5rem;
      text-align: center;
      transition: background .2s;
    }
    .contact-card:hover { background: rgba(255,255,255,.16); }
    .contact-icon {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin: 0 auto 1rem;
    }
    .contact-card h6 { font-weight: 700; font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .5rem; opacity: .8; }
    .contact-card a { color: var(--white); font-weight: 500; text-decoration: none; font-size: .97rem; }
    .contact-card a:hover { color: #a8e680; }
    .contact-card p { margin: 0; font-size: .95rem; font-weight: 500; }

    /* ── Footer ─────────────────────────────────── */
    footer {
      background: #0b2a40;
      color: rgba(255,255,255,.65);
      padding: 2rem 0;
      font-size: .84rem;
    }
    footer strong { color: var(--white); }
    .footer-logo img { height: 44px; filter: brightness(0) invert(1); opacity: .85; }

    /* ── Utility ────────────────────────────────── */
    @media (max-width: 767.98px) {
      .hero { padding: 72px 0 60px; }
      .hero-stats { gap: 1.5rem; }
      section { padding: 60px 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
    }