 

   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 {
    width: 100%;
  }
  
  .superapp-hero {
    background: linear-gradient(135deg, #f1f6ff, #ccdcf1);
    width: 100%;
  }
  
  .superapp-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 0 auto;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
  }
  
  .superapp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
  }
  
  .superapp-hero__text {
    flex: 1 1 400px;
    min-width: 320px;
    margin-right: 40px;
    z-index: 2;
  }
  
  .superapp-hero__text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    background: #2563eb;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  
  .superapp-hero__text p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
  }
  
  .superapp-hero__image {
    flex: 1 1 360px;
    min-width: 300px;
    text-align: right;
    position: relative;
  }
  
  .superapp-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 ease;
  }
  
  .superapp-hero__image img:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  /* ========================================
     SECTION STYLES
     ======================================== */
  
  .superapp-section.section {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 40px;
    position: relative;
    background: #F8FAFC;
  }
  
  .superapp-section--alt.section {
    background: #F8FAFC;
    border-radius: 24px;
    padding: 40px 40px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
  }
  
  .superapp-section--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
  }
  
  .superapp-section h2 {
    font-size: 35px;
    font-weight: 700;
    background: #2563eb;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .superapp-section__desc {
    text-align: center;
    color: #374151;
    font-size: 1.2rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ========================================
     SECTION FLEX LAYOUT
     ======================================== */
  
  /* SuperApp Section Styles */
  .superapp-section-flex {
    
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .superapp-section-left {
    flex: 1 1 420px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .superapp-section-right {
    flex: 1 1 400px;
    min-width: 320px;
    height: 100%;
    align-self: stretch;
    position: relative;
  }
  
  .superapp-section-right img,
  .superapp-section-right svg,
  .superapp-section-right .illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    max-height: none;
  }
  
  .superapp-section-left h2,
  .superapp-section-left .superapp-section__desc {
    text-align: left;
  }
  
  /* Features Grid */
.superapp-features {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
  align-items: stretch;
}
  
  /* Individual Feature */
.superapp-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 0;
  padding: 40px 32px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-height: 280px;
  flex: 1;
  max-width: 320px;
}
  
  .superapp-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  background: #f8fafc;
}
  
  /* Feature Header */
.superapp-feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
  
  .superapp-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 20px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}
  
  .superapp-feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a355b;
    margin: 0;
    text-align: center;
}

.superapp-feature p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6b7280;
}
  
  /* Section Title and Description */
  .superapp-section-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .superapp-section__desc {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
  }
 

  /* ========================================
     HERO CONTENT LAYOUT (ALT SECTION)
     ======================================== */
  
  .superapp-section--alt .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;
  }
  
  .superapp-section--alt .hero-text {
    flex: 1 1 400px;
    min-width: 320px;
    margin-right: 40px;
    z-index: 2;
  }
  
  .superapp-section--alt .hero-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: #2563eb;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .superapp-section--alt .superapp-section__desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: left;
  }
  
  .superapp-section--alt .hero-image {
    flex: 1 1 360px;
    min-width: 300px;
    text-align: right;
    position: relative;
  }
  
  .superapp-section--alt .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);
  }
  
  .superapp-section--alt .hero-image img:hover {
    transform: scale(1.045) translateY(-6px) rotate(-1deg);
    box-shadow: 0 32px 64px rgba(37,99,235,0.28);
  }
  
  /* ========================================
     FEATURES
     ======================================== */
  
  .superapp-features {
    margin-top: 32px;
  }
  
  .superapp-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.superapp-feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
  
  .superapp-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
  }
  
  .superapp-feature-icon iconify-icon {
    color: white;
  }
  
  .superapp-feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.3;
  }
  
  .superapp-feature-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
  }
  
  /* ========================================
     FLOW COMPONENT
     ======================================== */
  
  .superapp-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    padding: 40px 32px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .superapp-flow::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-flow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a355b;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }
  
  .superapp-flow__item:hover {
    transform: translateY(-5px);
  }
  
  .superapp-flow__item--center {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 20px 32px;
    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-flow__item--center::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
  }
  
  /* ========================================
     CARDS
     ======================================== */
  
  .superapp-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 80px;
  }
  
  .superapp-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    padding: 40px 32px;
    max-width: 350px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .superapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .superapp-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
      0 20px 60px rgba(37, 99, 235, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.9);
  }
  
  .superapp-card:hover::before {
    opacity: 1;
  }
  
  .superapp-card iconify-icon {
    color: #2563eb;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.2));
  }
  
  .superapp-card:hover iconify-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.4));
  }
  
  .superapp-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.superapp-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a355b;
  margin: 0;
  text-align: center;
}
  
  .superapp-card p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* ========================================
     ILLUSTRATION COMPONENTS
     ======================================== */
  
  .superapp-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  .illustration-container {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
  }
  
  .illustration-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
  }
  
  .phone-container,
  .sdk-container,
  .apps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a355b;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }
  
  .phone-container:hover,
  .sdk-container:hover,
  .apps-container:hover {
    transform: translateY(-5px);
  }
  
  .phone-icon,
  .sdk-icon,
  .apps-icon {
    font-size: 3rem;
    color: #2563eb;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.2));
  }
  
  .phone-container:hover .phone-icon,
  .sdk-container:hover .sdk-icon,
  .apps-container:hover .apps-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.4));
  }
  
  .sdk-container {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 20px 32px;
    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;
  }
  
  .sdk-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
  }
  
  .sdk-container .sdk-icon {
    color: white;
  }
  
  .arrow-container {
    display: flex;
    align-items: center;
  }
  
  .arrow-icon {
    font-size: 2rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
  }
  
  .arrow-container:hover .arrow-icon {
    color: #2563eb;
    transform: scale(1.1);
  }
  
  /* ========================================
     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 titleGlow {
    from { filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.2)); }
    to { filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.3)); }
  }
  
  @keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========================================
     RESPONSIVE DESIGN - MOBILE FIRST
     ======================================== */

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
  /* Global mobile padding */
  .section-inner,
  .superapp-inner,
  .superapp-section-flex {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Hero Section Mobile */
  .hero.section {
    padding: 40px 0;
  }
  
  .superapp-hero.section {
    padding: 40px 0;
  }
  
  .superapp-hero__image {
    flex : initial;
  }

  .superapp-inner {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }
  
  .superapp-hero__text {
    margin-right: 0;
    min-width: 0;
    text-align: left;
  }
  
  .superapp-hero__text h1 {
    font-size: 2.5rem;
    text-align: left;
  }
  
  .superapp-hero__text p {
    font-size: 1.1rem;
    text-align: left;
  }
  
  .superapp-hero__image {
    text-align: center;
    min-width: 0;
  }
  
  /* Section Mobile */
  .section {
    padding: 40px 0;
  }
  
  .superapp-section.section {
    margin: 40px auto 0 auto;
  }
  
  .superapp-section--alt.section {
    padding: 40px 24px;
    margin-top: 40px;
  }
  
  .superapp-section h2 {
    font-size: 28px;
    text-align: left;
  }
  
  .superapp-section__desc {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  /* Section Flex Layout Mobile */
  .superapp-section-flex {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }
  
  .superapp-section-left {
    min-width: 0;
  }
  
  .superapp-section-left h2,
  .superapp-section-left .superapp-section__desc {
    text-align: left;
  }
  
  .superapp-section-right {
    min-width: 0;
  }
  
  /* Features Mobile - Styled like superapp cards */
  .superapp-features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .superapp-feature {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    padding: 28px 24px;
    width: 100%;
    text-align: left;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }
  
  .superapp-feature-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  
  .superapp-feature-icon {
    width: 48px;
    height: 48px;
    margin-top: 0;
    flex-shrink: 0;
  }
  
  .superapp-feature-header h3 {
    font-size: 1.1rem;
    text-align: left;
    margin: 0;
    color: #1a355b;
    font-weight: 700;
    flex: 1;
  }
  
  .superapp-feature p {
    font-size: 0.95rem;
    text-align: left;
    margin: 0;
    color: #374151;
    line-height: 1.6;
  }
  
  /* Flow Component Mobile */
  .superapp-flow {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
  
  .superapp-flow__item {
    font-size: 1rem;
  }
  
  /* Cards Mobile */
  .superapp-cards {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 40px;
  }
  
  .superapp-card {
    max-width: none;
    width: 100%;
    padding: 28px 24px;
    text-align: left;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    flex: initial;
  }
  
  .superapp-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: initial;
  }
  
  .superapp-card-header iconify-icon {
    flex-shrink: 0;
  }
  
  .superapp-card-header h3 {
    font-size: 1.2rem;
    text-align: left;
    margin: 0;
    color: #1a355b;
    font-weight: 700;
    flex: 1;
  }
  
  .superapp-card p {
    font-size: 0.95rem;
    text-align: left;
    margin: 0;
    color: #374151;
    line-height: 1.6;
  }
  
  /* Illustration Components Mobile */
  .superapp-illustration {
    padding: 24px;
  }
  
  .illustration-container {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
  }
  
  .phone-container,
  .sdk-container,
  .apps-container {
    font-size: 1rem;
  }
  
  .phone-icon,
  .sdk-icon,
  .apps-icon {
    font-size: 2.5rem;
  }
  
  .arrow-container {
    transform: rotate(90deg);
  }
  
  /* 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,
  .superapp-inner,
  

  /* Hero Section Tablet */
  .superapp-hero.section {
    padding: 60px 0;
  }
  
  .superapp-inner {
    gap: 48px;
  }
  
  .superapp-hero__text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
  }
  
  .superapp-hero__text p {
    font-size: 1.15rem;
    line-height: 1.7;
  }
  
  .superapp-hero__image {
    flex: initial;
  }
  
  .superapp-hero__image img {
    max-width: 90%;
    border-radius: 24px;
  }
  
  /* Section Tablet */
  .superapp-section.section {
    padding: 0 32px;
    margin: 60px auto 0 auto;
  }
  
  .superapp-section--alt.section {
    padding: 60px 32px;
    margin-top: 60px;
    border-radius: 32px;
  }
  
  .superapp-section h2 {
    font-size: 34px;
    margin-bottom: 16px;
  }
  
  .superapp-section__desc {
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 700px;
  }
  
  /* Section Flex Layout Tablet */
  .superapp-section-flex {
    gap: 56px;
    align-items: flex-start;
  }
  
  .superapp-section-left {
    flex: 1 1 450px;
  }
  
  .superapp-section-right {
    flex: 1 1 400px;
  }
  
  /* Features Tablet */
  .superapp-features {
    gap: 28px;
  }
  
  .superapp-feature {
    padding: 32px 28px;
    gap: 20px;
    margin-bottom: 0;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
  }
  
  .superapp-feature-header {
    gap: 20px;
  }
  
  .superapp-feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .superapp-feature-header h3 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  .superapp-feature p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Illustration Components Tablet */
  .superapp-illustration {
    padding: 32px;
  }
  
  .illustration-container {
    gap: 28px;
    padding: 48px 40px;
    border-radius: 28px;
  }
  
  .phone-container,
  .sdk-container,
  .apps-container {
    font-size: 1.1rem;
    padding: 24px 36px;
  }
  
  .phone-icon,
  .sdk-icon,
  .apps-icon {
    font-size: 3.5rem;
  }
  
  .arrow-icon {
    font-size: 2.2rem;
  }
  
  /* Cards Tablet */
  .superapp-cards {
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .superapp-card {
    max-width: 340px;
    padding: 40px 32px;
    gap: 20px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
  }
  
  .superapp-card-header {
    gap: 20px;
  }
  
  .superapp-card-header iconify-icon {
    width: 48px;
    height: 48px;
  }
  
  .superapp-card-header h3 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  .superapp-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* CTA Section Tablet */
  .superapp-bottom.section {
    padding: 60px 0;
  }
  
  .superapp-cta {
    margin: 60px auto 60px auto;
    padding: 60px 48px;
    border-radius: 32px;
  }
  
  .superapp-cta h2 {
    font-size: 34px;
    margin-bottom: 24px;
  }
  
  .superapp-cta__button {
    font-size: 1.25rem;
    padding: 20px 56px;
    border-radius: 60px;
  }
}

/* Large Desktop Styles (1025px and above) */
@media (min-width: 1025px) {
  .section-inner,
  .superapp-inner,
  .superapp-section-flex {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .section-inner,
  .superapp-inner,
  
  .superapp-hero__image {
    flex : initial;
  }

  .superapp-section-right {
    display: none;  
  }
  
  .superapp-hero__text h1 {
    font-size: 2rem;
  }
  
  .superapp-hero__text p {
    font-size: 1rem;
  }
  
  .superapp-section h2 {
    font-size: 24px;
    text-align: left;
  }
  
  .superapp-section__desc {
    font-size: 0.9rem;
  }
  
  /* Features extra small mobile */
  .superapp-feature {
    padding: 20px 16px;
    gap: 12px;
    min-height: initial;
  }
  
  .superapp-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .superapp-feature-text h3 {
    font-size: 1.1rem;
  }
  
  .superapp-feature-text p {
    font-size: 0.85rem;
  }
  
  /* Cards extra small mobile */
  .superapp-card {
    padding: 20px 16px;
    gap: 12px;
  }
  
  .superapp-card h3 {
    font-size: 1.1rem;
  }
  
 
  
  .superapp-cta h2 {
    font-size: 24px;
  }
  
  .superapp-cta__button {
    font-size: 1rem;
    padding: 14px 28px;
  }
}   






