  :root {
      --primary-green: #05d180;
      --dark-green: #77e227;
      --accent-black: #131a27;
      --light-gray: #f8f9fa;
      --text-gray: #555555;
      --nav-height: 88px;
      --primary-blue: #21b0eb;
      --dark-blue: #0a86e0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      color: var(--accent-black);
  }

  section[id] {
      scroll-margin-top: calc(var(--nav-height) + 16px);
  }

  .container {
      position: relative;
      z-index: 1;
  }

  /* Navbar Styling */
  .navbar {
      transition: all 0.3s ease;
      padding: 1rem 0;
      background: transparent;
  }

  .navbar.scrolled {
      background: var(--light-gray);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      padding: 0.5rem 0;
      color: var(--accent-black) !important;
  }

  .navbar.scrolled .navbar-brand,
  .navbar.scrolled .nav-link {
      color: var(--accent-black) !important;
  }

  .navbar.scrolled .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2819, 26, 39, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 800;
      font-size: 1.8rem;
      color: white !important;
  }

  .brand-logo {
      width: 46px;
      height: 46px;
      object-fit: contain;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.12);
      padding: 0.25rem;
      flex-shrink: 0;
  }

  .brand-text {
      line-height: 1;
  }

  .navbar-toggler {
      border: 0;
      box-shadow: none !important;
      padding: 0.35rem 0.5rem;
  }

  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .nav-link {
      font-weight: 600;
      color: white !important;
      margin: 0 10px;
      position: relative;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--primary-green);
      transition: width 0.3s;
  }

  .nav-link:hover::after {
      width: 100%;
  }

  .btn-whatsapp-nav {
      background-color: #25D366;
      color: white !important;
      border-radius: 50px;
      padding: 8px 20px !important;
      transition: none;
  }

  .btn-whatsapp-nav::after {
      display: none;
  }

  .btn-whatsapp-nav:hover {
      background-color: #25D366;
      color: white !important;
  }

  /* Hero Section */
  .hero-section {
      min-height: 100svh;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?q=80&w=2000&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      color: white;
      padding: calc(var(--nav-height) + 2rem) 0 4rem;
  }

  .hero-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .hero-content h1 {
      font-size: clamp(2.4rem, 5vw, 4.75rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.1;
  }

  .hero-content p {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero-actions .btn {
      min-width: 200px;
  }

  .btn-custom-primary {
      background-color: var(--primary-green);
      color: white;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      border: 2px solid var(--primary-green);
      transition: all 0.3s;
  }

  .btn-custom-primary:hover {
      background-color: transparent;
      color: white;
      transform: translateY(-3px);
  }

  .btn-custom-outline {
      background-color: transparent;
      color: white;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      border: 2px solid white;
      transition: all 0.3s;
  }

  .btn-custom-outline:hover {
      background-color: white;
      color: var(--accent-black);
  }

  /* Slider Section */
  .carousel-item {
      height: 500px;
  }

  .carousel-item img {
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6);
  }

  .carousel-caption {
      bottom: 30%;
  }

  /* Section Headers */
  .section-title {
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      width: 60px;
      height: 4px;
      background: var(--primary-green);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
  }

  /* Feature Cards */
  .feature-card {
      padding: clamp(1.5rem, 3vw, 2rem);
      border-radius: 15px;
      background: white;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
      border-bottom: 4px solid transparent;
  }

  .feature-card:hover {
      transform: translateY(-10px);
      border-bottom: 4px solid var(--primary-green);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
      font-size: 2.5rem;
      color: var(--primary-green);
      margin-bottom: 1rem;
  }

  /* App Download Section */
  .app-section {
      background-color: var(--accent-black);
      color: white;
      position: relative;
      overflow: hidden;
  }

  .app-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: var(--primary-green);
      border-radius: 50%;
      opacity: 0.1;
  }

  .phone-mockup {
      width: min(100%, 420px);
      max-height: 500px;
      filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
      transform: rotate(-5deg);
      transition: transform 0.5s;
  }

  .phone-mockup:hover {
      transform: rotate(0deg) scale(1.05);
  }

  .store-btn {
      display: inline-flex;
      align-items: center;
      background: white;
      color: var(--accent-black);
      padding: 10px 20px;
      border-radius: 10px;
      text-decoration: none;
      margin-right: 10px;
      margin-bottom: 10px;
      transition: transform 0.3s;
  }

  .store-btn:hover {
      transform: scale(1.05);
      color: var(--primary-green);
  }

  /* Why Choose Us */
  .why-us-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      margin-bottom: 2rem;
  }

  .why-icon {
      background: rgba(0, 176, 80, 0.1);
      color: var(--primary-green);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
  }

  .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
  }

  /* Contact Form */
  .form-control {
      padding: 0.8rem;
      border-radius: 8px;
      border: 1px solid #ddd;
  }

  iframe {
      display: block;
  }

  .form-control:focus {
      border-color: var(--primary-green);
      box-shadow: 0 0 0 0.2rem rgba(0, 176, 80, 0.25);
  }

  /* Footer */
  footer {
      background-color: var(--accent-black);
      color: white;
      padding-top: 4rem;
  }

  .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
  }

  .footer-contact {
      display: grid;
      gap: 0.75rem;
  }

  .footer-contact i {
      width: 1rem;
      margin-right: 0.75rem;
      color: var(--primary-green);
  }

  .footer-link {
      color: #aaa;
      text-decoration: none;
      transition: color 0.3s;
      display: block;
      margin-bottom: 0.5rem;
  }

  .footer-link:hover {
      color: var(--primary-green);
  }

  .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin-right: 10px;
      transition: all 0.3s;
  }

  .social-icon:hover {
      background: var(--primary-green);
      color: white;
      transform: translateY(-3px);
  }

  /* Floating WhatsApp */
  .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 30px;
      right: 30px;
      background-color: #25D366;
      color: white;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      animation: pulse 2s infinite;
  }

  .whatsapp-float:hover {
      background-color: #128C7E;
      color: white;
      transform: scale(1.1);
  }

  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
          box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
  }

  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
      :root {
          --nav-height: 76px;
      }

      .navbar-collapse {
          background: rgba(19, 26, 39, 0.98);
          border-radius: 1rem;
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
          margin-top: 1rem;
          padding: 1rem 1.25rem;
      }

      .navbar-nav {
          align-items: stretch !important;
          gap: 0.25rem;
      }

      .nav-link {
          margin: 0;
          padding-left: 0;
          padding-right: 0;
      }

      .btn-whatsapp-nav {
          display: inline-flex;
          justify-content: center;
          width: 100%;
          margin-top: 0.5rem;
      }

      .hero-section {
          background-attachment: scroll;
      }

      .app-section .row,
      #about .row {
          row-gap: 2rem;
      }
  }

  @media (max-width: 767.98px) {
      .navbar-brand {
          font-size: 1.5rem;
      }

      .brand-logo {
          width: 40px;
          height: 40px;
      }

      .hero-content h1 {
          line-height: 1.15;
      }

      .hero-content p br,
      .hero-content h1 br {
          display: none;
      }

      .hero-actions {
          flex-direction: column;
          align-items: stretch;
      }

      .hero-actions .btn {
          width: 100%;
          min-width: 0;
      }

      .carousel-item {
          height: 300px;
      }

      .phone-mockup {
          max-height: 300px;
          margin-top: 2rem;
          transform: none;
      }

      .phone-mockup:hover {
          transform: none;
      }

      .store-btn {
          width: 100%;
          justify-content: center;
          margin-right: 0;
      }

      .why-us-item,
      .contact-info-item {
          gap: 0.9rem;
      }

      .why-icon {
          width: 52px;
          height: 52px;
          font-size: 1.2rem;
      }

      footer {
          text-align: center;
      }

      .social-icon {
          margin: 0 5px;
      }

      .whatsapp-float {
          width: 54px;
          height: 54px;
          bottom: 20px;
          right: 20px;
          font-size: 26px;
      }
  }

  @media (max-width: 575.98px) {
      :root {
          --nav-height: 72px;
      }

      .hero-section {
          padding-top: calc(var(--nav-height) + 1.5rem);
          padding-bottom: 3rem;
      }

      .section-title::after {
          width: 48px;
      }

      .feature-card,
      #contact form,
      #contact .shadow-sm,
      footer .input-group {
          border-radius: 1rem !important;
      }

      .why-us-item,
      .contact-info-item {
          align-items: flex-start;
      }

      .contact-info-item .why-icon {
          margin-right: 0 !important;
      }
  }

  a {
      text-decoration: none;
  }


  .legal-hero {
      padding: 9rem 0 3rem;
      position: relative;
  }

  .legal-card {
      background: #fff;
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(19, 26, 39, 0.08);
      padding: clamp(1.5rem, 4vw, 3rem);
  }

  .legal-kicker {
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--primary-green);
  }

  .legal-card h1 {
      font-weight: 800;
      margin-bottom: 0.75rem;
  }

  .legal-card .lead {
      color: #556070;
      margin-bottom: 2rem;
  }

  .legal-content {
      line-height: 1.8;
      color: #2e3948;
  }

  .legal-content h2,
  .legal-content h3,
  .legal-content h4 {
      margin-top: 1.8rem;
      margin-bottom: 0.85rem;
      font-weight: 700;
  }

  .legal-content p:last-child {
      margin-bottom: 0;
  }

  .legal-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.5rem;
      color: #6b7280;
      font-size: 0.95rem;
  }

  .legal-nav {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(19, 26, 39, 0.06);
  }

  .legal-nav .navbar-brand,
  .legal-nav .nav-link {
      color: var(--accent-black) !important;
  }

  .legal-nav .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2819, 26, 39, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .legal-footer {
      margin-top: 4rem;
  }

  @media (max-width: 767.98px) {
      .legal-hero {
          padding-top: 7rem;
      }

      .legal-meta {
          flex-direction: column;
          gap: 0.4rem;
      }
  }
