/* navbar - extracted verbatim from the original React bundle. */
  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }

  .navbar{
    position:fixed;
    top:22px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 60px);
    max-width:1420px;
    height:84px;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 34px;

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(15,81,50,.08);

    border-radius:28px;

    box-shadow:
      0 10px 40px rgba(16,42,28,.08),
      inset 0 1px rgba(255,255,255,.9);

    transition:all .45s cubic-bezier(.22,1,.36,1);
  }

  .navbar.scrolled{
    top:12px;

    background:rgba(255,255,255,.92);

    box-shadow:
      0 18px 60px rgba(0,0,0,.08);
  }

  .nav-logo{
    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
  }

  .logo-icon{
    width:54px;
    height:54px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
      linear-gradient(
        135deg,
        #0f5132,
        #46a36f
      );

    color:white;

    font-size:24px;

    box-shadow:
      0 15px 35px rgba(70,163,111,.28);
  }

  .brand-title{
    font-family:'Outfit',sans-serif;
    font-size:24px;
    font-weight:800;
    letter-spacing:.08em;

    color:#143828;

    line-height:1;
  }

  .brand-sub{
    margin-top:4px;

    font-family:'Inter',sans-serif;
    font-size:10px;
    font-weight:700;
    letter-spacing:.24em;
    text-transform:uppercase;

    color:#5f7b67;
  }

  .nav-center{
    display:flex;
    align-items:center;
    gap:34px;
  }

  .nav-link{
    position:relative;

    text-decoration:none;

    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;

    color:#4f6257;

    transition:all .35s ease;
  }

  .nav-link:hover{
    color:#0f5132;
  }

  .nav-link.active{
    color:#0f5132;
  }

  .nav-link::after{
    content:'';

    position:absolute;
    left:0;
    bottom:-10px;

    width:0%;
    height:2px;

    border-radius:999px;

    background:
      linear-gradient(
        90deg,
        #0f5132,
        #98cf5b
      );

    transition:all .4s cubic-bezier(.22,1,.36,1);
  }

  .nav-link:hover::after,
  .nav-link.active::after{
    width:100%;
  }

  .nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
  }

  .quote-btn{
    height:52px;
    padding:0 28px;

    border:none;
    border-radius:18px;

    background:
      linear-gradient(
        135deg,
        #123321,
        #46a36f
      );

    color:white;

    display:flex;
    align-items:center;
    gap:10px;

    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;

    cursor:pointer;

    box-shadow:
      0 16px 40px rgba(18,51,33,.18);

    transition:all .45s cubic-bezier(.22,1,.36,1);
  }

  .quote-btn:hover{
    transform:
      translateY(-3px)
      scale(1.02);
  }

  .menu-btn{
    display:none;

    width:48px;
    height:48px;

    border:none;
    border-radius:16px;

    background:#f2f6f3;

    color:#143828;

    cursor:pointer;
  }

  .mobile-menu{
    position:fixed;
    top:108px;
    left:18px;
    right:18px;

    padding:24px;

    border-radius:28px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(20px);

    border:1px solid rgba(15,81,50,.08);

    display:flex;
    flex-direction:column;
    gap:22px;

    box-shadow:
      0 20px 60px rgba(0,0,0,.12);

    z-index:999;
  }

  .mobile-link{
    text-decoration:none;

    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;

    color:#143828;
  }

  .mobile-quote{
    margin-top:8px;

    height:52px;

    border:none;
    border-radius:18px;

    background:
      linear-gradient(
        135deg,
        #123321,
        #46a36f
      );

    color:white;

    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;

    cursor:pointer;
  }

  @media(max-width:1150px){

    .nav-center{
      display:none;
    }

    .menu-btn{
      display:flex;
      align-items:center;
      justify-content:center;
    }
  }

  @media(max-width:768px){

    .navbar{
      width:calc(100% - 22px);
      height:76px;
      padding:0 18px;
      border-radius:22px;
    }

    .brand-title{
      font-size:18px;
    }

    .brand-sub{
      font-size:8px;
    }

    .logo-icon{
      width:44px;
      height:44px;
      font-size:18px;
    }

    .quote-btn{
      display:none;
    }
  }
