
    /* ----- PROFESSIONAL NETVERO THEME (REDESIGNED HERO WITH SINGLE IMAGE) ----- */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      color: #1e293b;
      background: #ffffff;
      overflow-x: hidden;
      width: 100%;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    :root {
      --primary: #0f2b4b;
      --secondary: #00c3a5;
      --accent: #c9a959;
      --light: #f8fafc;
      --border-light: #e9edf2;
      --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.05);
      --shadow-md: 0 20px 40px -15px rgba(15,43,75,0.1);
      --shadow-lg: 0 30px 50px -20px rgba(15,43,75,0.2);
    }
    
    /* ===== ANIMATIONS ===== */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
      100% { transform: translateY(0px); }
    }
    @keyframes wiggle {
      0%, 100% { transform: rotate(0deg) scale(1); }
      25% { transform: rotate(-2deg) scale(1.05); }
      75% { transform: rotate(2deg) scale(1.05); }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .float-animation { animation: float 4s ease-in-out infinite; }
    [data-aos] { opacity: 0; transition-property: opacity, transform; }
    [data-aos].aos-animate { opacity: 1; }
    
    /* buttons */
    .btn-netvero-primary {
      background: var(--primary);
      color: white;
      border-radius: 40px;
      padding: 0.75rem 2rem;
      font-weight: 600;
      border: 1px solid var(--primary);
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
      font-size: 0.95rem;
    }
    .btn-netvero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px -5px var(--primary);
    }
    .btn-netvero-secondary {
      background: var(--secondary);
      color: #0b1e33;
      border-radius: 40px;
      padding: 0.75rem 2rem;
      font-weight: 600;
      border: 1px solid var(--secondary);
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
      font-size: 0.95rem;
    }
    .btn-netvero-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px -5px var(--secondary);
    }
    
    /* navbar - fully responsive */
    .navbar-netvero {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      padding: 0.5rem 1rem;
      border-bottom: none;
      z-index: 1030;
    }
    .navbar-netvero .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .navbar-netvero .navbar-nav .nav-link {
      color: #334155;
      font-weight: 500;
      margin: 0.3rem 0;
      padding: 0.5rem 1rem;
    }
    .navbar-netvero .navbar-nav .nav-link.active {
      color: var(--primary);
      background: rgba(0,195,165,0.1);
      border-radius: 40px;
    }
    
    /* ===== REDESIGNED HERO SECTION WITH SINGLE IMAGE ===== */
    .hero-new {
      position: relative;
      min-height: 600px;
      margin-top: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
    }
    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.5) saturate(1.2);
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(15,43,75,0.8) 0%, rgba(0,195,165,0.3) 100%);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 2rem 1rem;
      animation: fadeIn 1s ease;
    }
    .hero-content h6 {
      color: var(--secondary);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      font-size: 1rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .hero-content h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      margin-bottom: 1.5rem;
      text-shadow: 0 4px 20px rgba(0,0,0,0.5);
      background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-content p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      opacity: 0.95;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    /* stats ribbon - fully responsive */
    .stats-ribbon {
      background: white;
      border-radius: 30px;
      box-shadow: var(--shadow-sm);
      padding: 1.5rem 0.8rem;
      margin: -2rem auto 2rem;
      border: 1px solid rgba(0,195,165,0.2);
      width: 95%;
      position: relative;
      z-index: 20;
    }
    .stat-item {
      text-align: center;
      border-bottom: 1px solid var(--border-light);
      padding: 0.8rem 0;
    }
    .stat-item:last-child { border-bottom: none; }
    .stat-item h4 { 
      font-size: 1.3rem; 
      font-weight: 700; 
      color: var(--primary);
      margin-bottom: 0.3rem;
    }
    .stat-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .stat-row p { color: #5f6c80; font-weight: 500; font-size: 0.9rem; margin: 0; }
    
    /* pills with wiggle */
    .circle-chip {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(145deg, #2d4b6e, #1a3349);
      border-radius: 40px;
      padding: 0.25rem 0.8rem;
      font-size: 0.7rem;
      font-weight: 700;
      color: white;
      gap: 4px;
      cursor: help;
      transition: all 0.25s ease;
    }
    .circle-chip:hover {
      animation: wiggle 0.4s ease-in-out;
      background: linear-gradient(145deg, #1a3349, #0f2b4b);
    }
    .circle-chip i {
      color: var(--secondary);
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
    }
    
    .chip-wrap {
      position: relative;
      display: inline-flex;
    }
    .chip-wrap .bubble-message {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: white;
      color: var(--primary);
      padding: 0.4rem 1rem;
      border-radius: 40px;
      font-size: 0.7rem;
      white-space: nowrap;
      box-shadow: 0 15px 35px -8px rgba(0,0,0,0.2);
      border-bottom: 3px solid var(--secondary);
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      z-index: 100;
      pointer-events: none;
    }
    .chip-wrap:hover .bubble-message {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(-12px);
    }
    
    .activate-pill {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(145deg, #00c3a5, #00a08a);
      color: white;
      border-radius: 40px;
      padding: 0.2rem 0.8rem;
      font-size: 0.65rem;
      font-weight: 700;
      gap: 4px;
    }
    .activate-pill i {
      background: white;
      border-radius: 50%;
      width: 14px;
      height: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary);
      font-size: 0.55rem;
    }
    
    /* device cards - perfectly sized */
    .app-card {
      background: white;
      border-radius: 20px;
      padding: 1rem 0.3rem;
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .app-card:hover {
      transform: translateY(-3px);
      border-color: var(--secondary);
    }
    .app-card img { 
      width: 45px;
      height: 45px;
      object-fit: contain;
      margin-bottom: 0.5rem;
    }
    .app-card h5 {
      font-size: 0.75rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .app-card .btn-sm {
      padding: 0.2rem 0.5rem;
      font-size: 0.6rem;
      border-radius: 30px;
      margin-top: auto;
    }
    
    /* qr card */
    .qr-card {
      background: white;
      border-radius: 30px;
      padding: 1.5rem 1rem;
      text-align: center;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }
    .qr-card img {
      width: 100px;
      height: 100px;
    }
    
    /* support block */
    .support-block {
      background: var(--primary);
      border-radius: 30px;
      padding: 1.5rem 1rem;
      color: white;
    }
    .verified-badge {
      background: var(--secondary);
      color: #0b1e33;
      border-radius: 40px;
      padding: 0.2rem 0.8rem;
      font-size: 0.7rem;
      font-weight: 600;
      display: inline-block;
    }
    .btn-wa {
      background: #25D366;
      color: #0b1e33;
      border-radius: 40px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      font-size: 0.85rem;
    }
    
    /* pricing cards - mobile optimized */
    .pricing-card {
      background: white;
      border-radius: 20px;
      padding: 1rem 0.8rem;
      border: 1px solid var(--border-light);
      transition: 0.3s;
      height: 100%;
      text-align: left;
    }
    .pricing-card.popular {
      border: 2px solid var(--secondary);
    }
    .price {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }
    .price small { 
      font-size: 0.8rem; 
      font-weight: 400;
      color: #5f6c80;
    }
    .pricing-card p {
      font-size: 0.75rem;
      margin-bottom: 0.3rem;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .pricing-card p i {
      font-size: 0.7rem;
    }
    
    /* faq */
    .faq-modern .accordion-item {
      border: none;
      border-radius: 20px !important;
      margin-bottom: 0.8rem;
      background: #f8fafc;
    }
    .faq-modern .accordion-button {
      background: #f8fafc;
      border-radius: 20px !important;
      font-weight: 600;
      padding: 1rem 1.2rem;
      font-size: 0.9rem;
    }
    .faq-modern .accordion-body {
      padding: 1rem 1.2rem;
      font-size: 0.85rem;
    }
    
    /* footer */
    .footer-modern {
      background: #0f2b4b;
      color: #cbd5e1;
      border-radius: 30px 30px 0 0;
      padding: 2rem 1rem 1rem;
    }
    .footer-modern a { 
      color: #e2e8f0; 
      text-decoration: none; 
      font-size: 0.8rem;
      display: inline-block;
      margin: 0.2rem 0;
    }
    .footer-modern h4 {
      font-size: 1rem;
      margin-bottom: 0.8rem;
    }
    
    /* floating buttons */
    .whatsapp-float {
      position: fixed;
      right: 12px;
      bottom: 70px;
      width: 48px;
      z-index: 99;
      background: white;
      border-radius: 50%;
      padding: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .back-to-top {
      position: fixed;
      bottom: 15px;
      right: 12px;
      background: var(--secondary);
      color: #0b1e33;
      width: 40px;
      height: 40px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99;
      text-decoration: none;
      font-size: 1rem;
    }
    
    /* tablet and up */
    @media (min-width: 768px) {
      .hero-new {
        min-height: 700px;
      }
      .stat-item {
        border-bottom: none;
        border-right: 1px solid var(--border-light);
        padding: 0.5rem 0;
      }
      .stat-item:last-child { border-right: none; }
      .app-card img { width: 60px; height: 60px; }
      .app-card h5 { font-size: 0.9rem; }
      .pricing-card p { font-size: 0.85rem; }
    }
    
    .whatsapp-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }
