    :root {
      --hhr-primary: #0f766e;
      --hhr-primary-soft: #0d9488;
      --hhr-dark: #040816;
      --hhr-light: #f9fafb;
      --hhr-accent: #f97316;
    }

    * {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--hhr-light);
      color: #0f172a;
    }

    /* Navbar */
    .navbar {
      transition: box-shadow 0.2s ease, background-color 0.2s ease;
    }
    .navbar .nav-link{
      color: #020617;
    }

    .navbar-brand span {
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    /* Hero */
    .hero-section {
      display: flex;
      align-items: center;
      background: radial-gradient(circle at top left, #ccfbf1 0, #e0f2fe 40%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-gradient-circle {
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 60%);
      top: -120px;
      right: -120px;
      filter: blur(4px);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: #134b24;
      color: #e5e7eb;
      font-size: 0.8rem;
      gap: 0.4rem;
    }
    .text-primary{
      color: #197138 !important;
    }
    .hero-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(14px);
      border-radius: 1.5rem;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
      padding: 1.8rem;
    }

    .hero-metric {
      border-radius: 1rem;
      padding: 0.9rem 1.2rem;
      background: #0f766e0d;
      border: 1px solid rgba(15, 118, 110, 0.15);
      font-size: 0.85rem;
    }

    .hero-metric strong {
      display: block;
      font-size: 1.1rem;
    }

    /* Section spacing */
    section {
      padding: 4.5rem 0;
    }

    .section-heading {
      font-size: 2.1rem;
      font-weight: 600;
    }

    .section-subtitle {
      max-width: 600px;
      color: #64748b;
    }

    /* Service cards */
    .service-card {
      position: relative;
      border-radius: 1.25rem;
      padding: 1.8rem;
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.25);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
      transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, translate 0.16s ease;
    }

    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
      border-color: rgba(56, 189, 248, 0.8);
    }

    .service-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.9rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #197138;
      color: #ffffff;
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    .service-pill {
      display: inline-flex;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      background: #197138;
      color: #ffffff;
      font-size: 0.75rem;
    }

    /* Pricing */
    .pricing-card {
      background: #0f172a;
      color: #e5e7eb;
      border-radius: 1.5rem;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
    }

    .pricing-card::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(45,212,191,0.28), transparent 70%);
      right: -80px;
      top: -80px;
    }

    .pricing-amount {
      font-size: 2.4rem;
      font-weight: 600;
    }

    .pricing-pill {
      display: inline-flex;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.15);
      color: #bbf7d0;
      font-size: 0.8rem;
    }

    /* Testimonials */
    .testimonial-card {
      border-radius: 1.25rem;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: #ffffff;
      padding: 1.6rem;
      height: 100%;
    }

    .testimonial-quote {
      font-size: 0.98rem;
      color: #475569;
    }

    /* Contact */
    .contact-card {
      border-radius: 1.5rem;
      background: #ffffff;
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.13);
      border: 1px solid rgba(148, 163, 184, 0.4);
      padding: 2rem;
    }

    .form-control,
    .form-select {
      border-radius: 0.8rem;
      border-color: rgba(148, 163, 184, 0.6);
    }

    .form-control:focus,
    .form-select:focus {
      box-shadow: 0 0 0 1px rgba(14, 116, 144, 0.5);
      border-color: rgba(8, 47, 73, 0.8);
    }

    /* Footer */
    footer {
      background: radial-gradient(circle at top left, #ccfbf1 0, #e0f2fe 40%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
      color: #000;
      padding: 2.5rem 0 1.2rem;
    }
    .hero-gradient-circl {
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 60%);
      top: -120px;
      right: -120px;
      filter: blur(4px);
      pointer-events: none;
    }

    .footer-link {
      color: #000;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .footer-link:hover {
      color: #e5e7eb;
    }

    .social-icon {
      width: 2.3rem;
      height: 2.3rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
      font-size: 1.2rem;
      transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
    }

    .social-icon:hover {
      background: #e5e7eb;
      color: #020617;
      transform: translateY(-2px);
      border-color: transparent;
    }

    /* Buttons */
    .btn-primary-hhr {
      background:#197138;
      border: none;
      border-radius: 999px;
      padding: 0.55rem 1.4rem;
      font-weight: 500;
      color: white;
    }

    .btn-primary-hhr:hover {
      filter: brightness(1.07);
      transform: translateY(-1px);
    }

    .btn-outline-hhr {
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.35);
      padding: 0.55rem 1.4rem;
    }

    .btn-outline-hhr:hover {
      border-color: var(--hhr-primary);
      background: rgba(15, 118, 110, 0.08);
    }

    .btn-whatsapp {
      background: #22c55e;
      border-radius: 999px;
      border: none;
      padding: 0.55rem 1.4rem;
      font-weight: 500;
    }

    .btn-whatsapp:hover {
      filter: brightness(1.05);
    }

    @media (max-width: 767.98px) {
      .hero-section {
        padding-top: 1rem;
        text-align: left;
      }
      .hero-card {
        margin-top: 2rem;
      }
    }