 
.header {
    background: white !important;
  }
  
  .navbar {
    background: white !important;
  }
  
  body {
    font-size: 14px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    background: #F8FAFC;
  }

.section {
  width: 100%;
  padding: 60px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
  
  /* ========================================
     HERO SECTION
     ======================================== */
  
  .hero.section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f6ff, #ccdcf1);
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 0 auto;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
  }
  
  .hero-text {
    flex: 1 1 400px;
    min-width: 320px;
    margin-right: 40px;
    z-index: 2;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
 
    background: #2563eb;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
  }
  
  .hero-image {
    flex: 1 1 360px;
    min-width: 300px;
    text-align: right;
    position: relative;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s cubic-bezier(.4,2,.3,1);
  }
  
  .hero-image img:hover {
    transform: scale(1.045) translateY(-6px) rotate(-1deg);
    box-shadow: 0 32px 64px rgba(37,99,235,0.28);
  }
  
  /* ========================================
     SECTION UTILITIES
     ======================================== */
  
  .section {
    position: relative;
  }
  
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: bold;
    background: #2563eb;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-align: center;
  }

  .novara-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f1f6ff, #ccdcf1);  
  }
  
  /* ========================================
     HOW IT WORKS SECTION
     ======================================== */
  
  .how-it-works.section {
    background: white;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  }
  
  .feature-icon {
    width: 300px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
  }
  
  .feature-card p {
    color: #374151;
    line-height: 1.6;
  }
  
  /* ========================================
     NOVARA SECTION
     ======================================== */
  
  .novara-section.section {
  }
  
  .novara-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
  }
  
  .novara-text {
    flex: 1;
    max-width: 50%;
  }
  
  .novara-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    background-clip: text;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .novara-text p {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .novara-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .novara-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.13);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .novara-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
  }
  
  /* ========================================
     CHAT INTERFACE
     ======================================== */
  
  .chat-interface {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
  }
  
  .chat-message {
    background: #3b82f6;
    color: white;
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 80%;
    margin-left: auto;
  }
  
  .chat-response {
    background: #f1f5f9;
    color: #1e293b;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
  }
  
  /* ========================================
     WHERE IT WORKS SECTION
     ======================================== */
  
  .where-it-works.section {
    background: white;
  }
  
  .applications-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .application-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
    padding: 48px 36px 36px 36px;
    text-align: left;
    border: none;
    min-width: 340px;
    max-width: 420px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.22s, transform 0.22s;
    font-size: 1.15rem;
  }
  
  .application-card:hover {
    box-shadow: 0 20px 60px rgba(37,99,235,0.16);
    transform: translateY(-8px) scale(1.03);
  }
  
  .app-icon-circle {
    width: 68px;
    height: 68px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
  }
  
  .app-icon-circle .iconify {
    color: #fff;
    font-size: 2.2rem;
  }
  
  .application-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
    margin-top: 0;
  }
  
  .application-card p {
    color: #374151;
    font-size: 1.08rem;
    margin-bottom: 22px;
    line-height: 1.6;
  }
  
  .app-icons-row {
    display: flex;
    gap: 20px;
    
  }
  
  .app-icons-row .iconify {
    color: #3b82f6;
    font-size: 1.35rem;
    opacity: 0.95;
    transition: color 0.2s;
  }
  
  .app-icons-row .iconify:hover {
    color: #1d4ed8;
  }
  
  .rating {
    color: #fbbf24;
    font-size: 1.2rem;
  }
  
  /* ========================================
     CTA SECTION
     ======================================== */
  
     .superapp-bottom.section {
      text-align: center;
      background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
      padding: 10px 12px 10px 12px;
      width: 100%;
    }
    
    .superapp-cta {
      border-radius: 24px;
      max-width: 1200px;
      margin: 80px auto 60px auto;
      padding: 10px 12px 10px 12px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
    }
    
    .superapp-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
    }
    
    .superapp-cta h2 {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 18px;
      color: #fff;
      letter-spacing: -0.5px;
      text-align: center;
    }
    
    .superapp-cta__button {
      display: inline-block;
      background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
      color: #ffffff;
      font-weight: 600;
      font-size: 1.2rem;
      padding: 18px 48px;
      border-radius: 50px;
      text-decoration: none;
      margin-bottom: 20px;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .superapp-cta__button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }
    
    .superapp-cta__button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 
        0 15px 40px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      background: #1a355b;
    }
    
    .superapp-cta__button:hover::before {
      left: 100%;
    }
    
    .superapp-cta__contact {
      color: #ffffff;
      font-size: 1.1rem;
      margin-top: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
  
  /* ========================================
     ANIMATIONS
     ======================================== */
  
  @keyframes hero-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-18px); }
  }
  
  /* ========================================
     RESPONSIVE DESIGN - MOBILE FIRST
     ======================================== */
  
  /* Mobile Styles (up to 768px) */
  @media (max-width: 768px) {
    /* Global mobile padding */
    .section-inner {
      padding-left: 24px;
      padding-right: 24px;
    }
    
    /* Hero Section Mobile */
    .hero.section {
      padding: 40px 0;
    }
    
    .hero-content {
      flex-direction: column;
      text-align: left;
      gap: 40px;
      flex: none;
    }
    
    .hero-text {
      margin-right: 0;
      min-width: 0;
      text-align: left;
      flex: none;
    }
    
    .hero-text h1 {
      font-size: 2.5rem;
      text-align: left;
    }
    
    .hero-text p {
      font-size: 1.1rem;
      text-align: left;
    }
    
    .hero-image {
      text-align: center;
      min-width: 0;
      flex: none;
    }
    
    /* Section Mobile */
    .section {
      padding: 40px 0;
    }
    
    .section-title {
      font-size: 28px;
   
      margin-bottom: 20px;
    }
    
    /* How It Works Section Mobile */
    .how-it-works.section {
      padding: 40px 0;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .feature-card {
      padding: 24px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    
    .feature-icon {
      width: 100%;
      height: 200px;
      margin: 0 auto 20px;
      flex-shrink: 0;
    }
    
    .feature-content {
      flex: 1;
    }
    
    .feature-card h3 {
      font-size: 1.3rem;
      text-align: center;
      margin-bottom: 12px;
    }
    
    .feature-card p {
      text-align: center;
      margin: 0;
    }
    
    /* Novara Section Mobile */
    .novara-section {
      padding: 40px 0;
    }
    
    .novara-content {
      flex-direction: column;
      gap: 40px;
      min-height: auto;
    }
    
    .novara-text {
      max-width: 100%;
      text-align: left;
    }
    
    .novara-text h2 {
      font-size: 2rem;
      text-align: left;
    }
    
    .novara-text p {
      font-size: 1rem;
      text-align: left;
    }
    
    .novara-image {
      max-width: 100%;
    }
    
    /* Where It Works Section Mobile */
    .where-it-works.section {
      padding: 40px 0;
    }
    
    .applications-grid {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    
    .application-card {
      padding: 28px 24px;
      min-width: 0;
      max-width: none;
      width: 100%;
      text-align: left;
      flex: none;
    }
    
    .app-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    
    .app-icon-circle {
      width: 56px;
      height: 56px;
      margin-bottom: 0;
      flex-shrink: 0;
    }
    
    .app-icon-circle .iconify {
      font-size: 1.8rem;
    }
    
    .application-card h3 {
      font-size: 1.3rem;
      text-align: left;
      margin-bottom: 12px;
      flex: 1;
    }
    
    .application-card p {
      font-size: 1rem;
      text-align: left;
      margin-bottom: 16px;
    }
    
    .app-icons-row {
      justify-content: flex-start;
    }
    
    /* CTA Section Mobile */
    .superapp-bottom.section {
      padding: 40px 0;
    }
    
    .superapp-cta {
      margin: 40px auto 40px auto;
      padding: 40px 24px;
    }
    
    .superapp-cta h2 {
      font-size: 28px;
      
    }
    
    .superapp-cta__button {
      width: 100%;
      display: block;
      box-sizing: border-box;
      font-size: 1.1rem;
      padding: 16px 32px;
    }
  }
  
  /* Tablet Styles (769px - 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .section-inner {
      padding-left: 32px;
      padding-right: 32px;
    }
    
    .hero-text h1 {
      font-size: 3rem;
    }
    
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-grid {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .application-card {
      min-width: 300px;
      max-width: 400px;
    }
  }
  
  /* Large Desktop Styles (1025px and above) */
  @media (min-width: 1025px) {
    .section-inner {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  /* Extra Small Mobile (up to 480px) */
  @media (max-width: 480px) {
    .section-inner {
      padding-left: 24px;
      padding-right: 24px;
    }
    
    .hero-text h1 {
      font-size: 2rem;
    }
    
    .hero-text p {
      font-size: 1rem;
    }
    
    .section-title {
      font-size: 24px;
    }
    
    .feature-card,
    .application-card {
      padding: 20px 16px;
    }
    
    .feature-card,
    .application-card {
      gap: 16px;
    }
    
    
    
    .app-icon-circle {
      width: 48px;
      height: 48px;
    }
    
    .app-icon-circle .iconify {
      font-size: 1.5rem;
    }
    
    .feature-card h3,
    .application-card h3 {
      font-size: 1.2rem;
    }
    
    .feature-card p,
    .application-card p {
      font-size: 0.95rem;
    }
    
    .novara-text h2 {
      font-size: 1.8rem;
    }
    
    .novara-text p {
      font-size: 0.95rem;
    }
    
    .superapp-cta h2 {
      font-size: 24px;
    }
    
    .superapp-cta__button {
      font-size: 1rem;
      padding: 14px 28px;
    }
  } 
  
 