 .retail-nav {
     position: sticky;
     top: 0;
     z-index: 100;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     padding: 15px 0;
 }

 .nav-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     width: 140px;
 }

 .dot {
     color: var(--primary);
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     font-weight: 500;
     color: #4B5563;
     font-size: 15px;
 }

 .nav-links a:hover {
     color: var(--primary);
 }

 .nav-actions {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .link-login {
     font-weight: 600;
     font-size: 15px;
 }


 .home-nav {
     position: relative;
     display: flex;
     align-items: center;
     gap: 4px;
     cursor: pointer;
 }

 .home-btn {
     background: transparent;
     border: none;
     font-size: 16px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .dropdown-icon {
     font-size: 20px;
     cursor: pointer;
     color: var(--gold);
     transition: 0.3s ease;
 }

 .dropdown-icon.rotate {
     transform: rotate(180deg);
 }

 .home-select {
     position: absolute;
     top: 25px;
     left: 0;
     background: black;
     border: 1px solid #ddd;
     border-radius: 10px;
     min-width: 150px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
     display: none;
     z-index: 100;
 }

 .home-select.show {
     display: block;
 }

 .home-select a {
     display: block;
     padding: 10px 14px;
     color: #ffffff !important;
     text-decoration: none;
 }

 .hamburger,
 .btn-close,
 .mobile-nav-actions {
     display: none;
 }

 @media (max-width: 768px) {
     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         height: 100vh;
         width: 270px;
         background: #fff;
         flex-direction: column;
         align-items: flex-start;
         padding: 80px 20px;
         gap: 20px;
         transition: right 0.35s ease;
         z-index: 999;
         display: none;
     }

     .nav-links.nav-open {
         right: 0;
         display: flex;
     }

     .nav-actions {
         display: none;
     }

     .hamburger {
         display: block;
         cursor: pointer;
         z-index: 900;
     }

     .btn-close {
         display: none;
         position: fixed;
         top: 25px;
         right: 20px;
         font-size: 26px;
         cursor: pointer;
         z-index: 9990;
     }

     .mobile-nav-actions {
         display: none;
         gap: 10px;
         flex-direction: column;
     }

     .mobile-nav-actions .btn-primary {
         color: white !important;
     }


     .btn-close.nav-open {
         display: block !important;
     }

     .mobile-nav-actions.nav-open {
         display: flex;
     }
 }

 .retail-hero {
     padding: 80px 0 100px;
     background: radial-gradient(circle at top right, #EEF2FF 0%, #FFFFFF 50%);
     overflow: hidden;
 }

 .hero-grid {
     display: flex;
     align-items: center;
     gap: 60px;
 }

 .hero-text {
     flex: 1;
 }

 .badge-new {
     background: #DCFCE7;
     color: #166534;
     padding: 6px 15px;
     border-radius: 20px;
     font-size: 13px;
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 25px;
     display: inline-block;
 }

 .hero-text h1 {
     font-size: 64px;
     line-height: 1.1;
     margin-bottom: 25px;
     letter-spacing: -2px;
     color: var(--dark);
 }

 .gradient-text {
     background: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero-text p {
     font-size: 20px;
     color: var(--text-gray);
     margin-bottom: 40px;
     line-height: 1.6;
     max-width: 500px;
 }

 .hero-btns {
     display: flex;
     gap: 15px;
     margin-bottom: 40px;
 }

 .trust-row {
     display: flex;
     align-items: center;
     gap: 15px;
     font-size: 14px;
     color: var(--text-gray);
 }

 .avatars {
     display: flex;
 }

 .av {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     border: 3px solid white;
     margin-left: -10px;
     display: inline-block;
 }

 .av:first-child {
     margin-left: 0;
 }

 .av img {
     border-radius: 50px;
 }

 .hero-visual {
     flex: 1;
     position: relative;
     height: 500px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .card-float {
     width: 380px;
     height: 240px;
     background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
     border-radius: 20px;
     position: relative;
     z-index: 2;
     padding: 30px;
     color: white;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
     transform: rotate(-10deg) translateY(-20px);
     transition: transform 0.5s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .hero-visual:hover .card-float {
     transform: rotate(0deg) translateY(-30px) scale(1.05);
 }

 .card-chip {
     width: 50px;
     height: 35px;
     background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
     border-radius: 6px;
     margin-bottom: 40px;
 }

 .card-wifi {
     position: absolute;
     top: 30px;
     right: 30px;
     font-size: 24px;
     transform: rotate(90deg);
     opacity: 0.5;
 }

 .card-number {
     font-family: monospace;
     font-size: 22px;
     letter-spacing: 3px;
     margin-bottom: 30px;
     text-shadow: 0 2px 2px black;
 }

 .card-bottom {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
 }

 .card-name {
     font-size: 14px;
     letter-spacing: 1px;
     opacity: 0.8;
 }

 .card-expiry {
     font-size: 14px;
     opacity: 0.8;
 }

 .card-logo {
     position: absolute;
     bottom: 30px;
     right: 30px;
     font-weight: 800;
 }

 .blob {
     position: absolute;
     border-radius: 50%;
     filter: blur(60px);
     z-index: 0;
 }

 .blob-1 {
     width: 300px;
     height: 300px;
     background: rgba(79, 70, 229, 0.2);
     top: 0;
     right: 0;
 }

 .blob-2 {
     width: 200px;
     height: 200px;
     background: rgba(16, 185, 129, 0.2);
     bottom: 0;
     left: 50px;
 }

 .float-bubble {
     position: absolute;
     background: white;
     padding: 12px 20px;
     border-radius: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     font-weight: 600;
     font-size: 14px;
     animation: float 4s infinite ease-in-out;
     z-index: 3;
 }

 .b1 {
     top: 100px;
     right: 20px;
     animation-delay: 0s;
 }

 .b2 {
     bottom: 80px;
     left: 20px;
     animation-delay: 2s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .features-section {
     background: white;
 }

 .highlight {
     color: var(--primary);
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .feature-card {
     padding: 30px;
     border-radius: 20px;
     background: white;
     border: 1px solid #F3F4F6;
     transition: 0.3s;
 }

 .feature-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
     border-color: #E5E7EB;
 }

 .icon-box {
     width: 60px;
     height: 60px;
     background: #EEF2FF;
     color: var(--primary);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     margin-bottom: 20px;
 }

 .feature-card h3 {
     font-size: 20px;
     margin-bottom: 10px;
 }

 .feature-card p {
     color: var(--text-gray);
     line-height: 1.6;
 }

 .bg-light {
     background: #F9FAFB;
 }

 .split-layout {
     display: flex;
     align-items: center;
     gap: 80px;
 }

 .split-layout.reverse {
     flex-direction: row-reverse;
 }

 .split-img {
     flex: 1;
     position: relative;
 }

 .rounded-img {
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     width: 100%;
     display: block;
     transition: transform 0.3s;
 }

 .split-img:hover .rounded-img {
     transform: scale(1.02);
 }

 .split-text {
     flex: 1;
 }

 .small-tag {
     color: var(--primary);
     font-weight: 700;
     text-transform: uppercase;
     font-size: 13px;
     letter-spacing: 1px;
     margin-bottom: 15px;
     display: block;
 }

 .split-text h2 {
     font-size: 42px;
     line-height: 1.1;
     margin-bottom: 20px;
     color: var(--dark);
 }

 .split-text p {
     font-size: 18px;
     color: var(--text-gray);
     margin-bottom: 30px;
     line-height: 1.7;
 }

 .check-list li {
     margin-bottom: 12px;
     font-size: 16px;
     color: #4B5563;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .float-badge {
     position: absolute;
     background: white;
     padding: 15px 25px;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     animation: float 4s infinite ease-in-out;
 }

 .badge-right {
     bottom: 40px;
     right: -30px;
 }

 .badge-left {
     top: 40px;
     left: -30px;
 }

 .float-badge span {
     font-size: 12px;
     color: var(--text-gray);
 }

 .float-badge strong {
     font-size: 16px;
     color: var(--dark);
 }

 .steps-section {
     background: white;
 }

 .steps-grid {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
 }

 .step-card {
     text-align: center;
     flex: 1;
     padding: 20px;
 }

 .step-num {
     width: 50px;
     height: 50px;
     background: #DCFCE7;
     color: #166534;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 20px;
     margin: 0 auto 20px;
 }

 .step-connector {
     flex: 1;
     height: 2px;
     background: #E5E7EB;
     margin-top: -50px;
 }

 .cta-section {
     background: var(--dark);
     padding: 80px 0;
     color: white;
 }

 .cta-section h2 {
     font-size: 36px;
     margin-bottom: 15px;
 }

 .cta-section p {
     font-size: 18px;
     color: #9CA3AF;
     margin-bottom: 30px;
 }

 .app-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 .btn-store {
     background: white;
     color: var(--dark);
     border: none;
     padding: 12px 25px;
     border-radius: 8px;
     font-weight: 600;
     font-size: 16px;
     cursor: pointer;
     transition: 0.3s;
 }

 .btn-store:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
 }

 .retail-footer {
     padding: 60px 0;
     background: #F9FAFB;
     border-top: 1px solid #E5E7EB;
     color: var(--text-gray);
     font-size: 14px;
 }

 .footer-links {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
 }

 .footer-links .links {
     display: flex;
     gap: 20px;
 }

 @media (max-width: 900px) {
     .hero-grid {
         flex-direction: column;
         text-align: center;
     }

     .hero-btns,
     .trust-row,
     .avatars {
         justify-content: center;
     }

     .features-grid {
         grid-template-columns: 1fr;
     }

     .card-float {
         width: 300px;
         height: 190px;
     }

     .split-layout,
     .split-layout.reverse {
         flex-direction: column;
         text-align: center;
     }

     .badge-right {
         right: 0;
     }

     .badge-left {
         left: 0;
     }

     .steps-grid {
         flex-direction: column;
     }

     .step-connector {
         display: none;
     }
 }

 .reviews-section {
     background: #F9FAFB;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .review-card {
     background: white;
     padding: 30px;
     border-radius: 20px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
     border: 1px solid #E5E7EB;
     transition: 0.3s;
 }

 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
 }

 .stars {
     color: #FBBF24;
     letter-spacing: 2px;
     margin-bottom: 15px;
     font-size: 18px;
 }

 .review-text {
     font-size: 16px;
     color: #4B5563;
     line-height: 1.6;
     margin-bottom: 20px;
     font-style: italic;
 }

 .reviewer {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .reviewer .av {
     width: 40px;
     height: 40px;
     border: none;
     margin: 0;
 }

 .reviewer-info strong {
     display: block;
     font-size: 14px;
     color: var(--dark);
 }

 .reviewer-info span {
     font-size: 12px;
     color: var(--text-gray);
 }

 .faq-section {
     background: white;
 }

 .small-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     border-bottom: 1px solid #E5E7EB;
 }

 .faq-item:last-child {
     border-bottom: none;
 }

 .faq-question {
     width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 0;
     font-size: 18px;
     font-weight: 600;
     color: var(--dark);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: 0.3s;
 }

 .faq-question:hover {
     color: var(--primary);
 }

 .plus-icon {
     font-size: 24px;
     font-weight: 400;
     color: var(--text-gray);
     transition: 0.3s;
 }

 .faq-question.active .plus-icon {
     transform: rotate(45deg);
     color: var(--primary);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
 }

 .faq-answer p {
     padding-bottom: 20px;
     color: #4B5563;
     line-height: 1.6;
     font-size: 16px;
 }

 @media (max-width: 900px) {
     .reviews-grid {
         grid-template-columns: 1fr;
     }
 }