 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html,
 body {
     width: 100%;
     min-height: 100vh;
     font-family: 'Poppins', sans-serif;
 }

 body {
     background: linear-gradient(135deg, #0a1628 0%, #0d2045 40%, #1a3a6e 70%, #0a1628 100%);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 2rem 1rem;
     position: relative;
     overflow-x: hidden;
 }

 body::before {
     content: '';
     position: fixed;
     top: -40%;
     left: -20%;
     width: 80%;
     height: 80%;
     background: radial-gradient(ellipse, rgba(237, 108, 35, 0.12) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 body::after {
     content: '';
     position: fixed;
     bottom: -30%;
     right: -10%;
     width: 60%;
     height: 60%;
     background: radial-gradient(ellipse, rgba(30, 100, 200, 0.15) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .mountain-bg {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     width: 100%;
     height: 45%;
     opacity: 0.06;
     pointer-events: none;
     z-index: 0;
 }

 .cs-card {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 680px;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 /* LOGO */
 .logo-area {
     margin-bottom: 1.5rem;
     max-width: 260px;
 }

 .logo-area img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Replace the placeholder below with your actual logo:
       <div class="logo-area"><img src="your-logo.png" alt="Ride2Nepal Logo"></div> */
 .logo-placeholder {
     margin-bottom: 1.5rem;
     width: 220px;
     height: 150px;
     background: rgba(255, 255, 255, 0.05);
     border: 2px dashed rgba(255, 255, 255, 0.15);
     border-radius: 16px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.3);
     font-size: 13px;
 }

 .badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: rgba(237, 108, 35, 0.15);
     border: 1px solid rgba(237, 108, 35, 0.4);
     color: #f5a054;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     padding: 5px 14px;
     border-radius: 100px;
     margin-bottom: 1.2rem;
 }

 .badge-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #f5a054;
     animation: pulse 2s ease-in-out infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.5;
         transform: scale(0.7);
     }
 }

 .cs-headline {
     font-size: clamp(2.2rem, 6vw, 3.8rem);
     font-weight: 800;
     line-height: 1.1;
     color: #ffffff;
     margin-bottom: 0.5rem;
     letter-spacing: -0.02em;
 }

 .cs-headline span {
     background: linear-gradient(90deg, #f5a054, #e84040);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .cs-tagline {
     font-size: clamp(1rem, 2.5vw, 1.25rem);
     font-weight: 400;
     color: rgba(200, 220, 255, 0.7);
     margin-bottom: 1.8rem;
     line-height: 1.6;
     max-width: 500px;
 }

 .cs-tagline strong {
     color: rgba(200, 220, 255, 0.95);
     font-weight: 600;
 }

 .divider {
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, #f5a054, #e84040);
     border-radius: 2px;
     margin: 0 auto 1.8rem;
 }

 .features {
     display: flex;
     gap: 1rem;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 2rem;
 }

 .feature-pill {
     display: flex;
     align-items: center;
     gap: 6px;
     background: rgba(255, 255, 255, 0.06);
     border: 0.5px solid rgba(255, 255, 255, 0.12);
     border-radius: 100px;
     padding: 6px 14px;
     font-size: 12px;
     color: rgba(200, 220, 255, 0.8);
     font-weight: 500;
 }

 .feature-pill svg {
     flex-shrink: 0;
     opacity: 0.7;
 }

 .notify-box {
     width: 100%;
     max-width: 460px;
     margin-bottom: 2rem;
 }

 .notify-label {
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: rgba(200, 220, 255, 0.5);
     margin-bottom: 10px;
 }

 .email-row {
     display: flex;
     gap: 8px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: 50px;
     padding: 6px 6px 6px 16px;
     align-items: center;
 }

 .email-row input {
     flex: 1;
     background: none;
     border: none;
     outline: none;
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     color: #fff;
     padding: 4px 0;
 }

 .email-row input::placeholder {
     color: rgba(255, 255, 255, 0.3);
 }

 .notify-btn {
     background: linear-gradient(135deg, #f5a054, #e84040);
     border: none;
     border-radius: 40px;
     color: #fff;
     font-family: 'Poppins', sans-serif;
     font-size: 13px;
     font-weight: 600;
     padding: 9px 20px;
     cursor: pointer;
     white-space: nowrap;
     transition: opacity 0.2s;
 }

 .notify-btn:hover {
     opacity: 0.88;
 }

 .contact-line {
     font-size: 13px;
     color: rgba(200, 220, 255, 0.45);
     margin-bottom: 2.5rem;
 }

 .contact-line a {
     color: #f5a054;
     text-decoration: none;
     font-weight: 500;
 }

 .contact-line a:hover {
     text-decoration: underline;
 }

 .social-row {
     display: flex;
     gap: 12px;
     justify-content: center;
     margin-bottom: 2rem;
 }

 .social-btn {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     border: 0.5px solid rgba(255, 255, 255, 0.15);
     background: rgba(255, 255, 255, 0.06);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: border-color 0.2s, background 0.2s;
     text-decoration: none;
 }

 .social-btn:hover {
     border-color: rgba(245, 160, 84, 0.5);
     background: rgba(245, 160, 84, 0.1);
 }

 .footer-text {
     font-size: 11px;
     color: rgba(255, 255, 255, 0.2);
     letter-spacing: 0.05em;
 }

 .success-msg {
     display: none;
     color: #6ee7b7;
     font-size: 13px;
     margin-top: 8px;
     font-weight: 500;
 }

 @media (max-width: 480px) {
     .email-row {
         border-radius: 12px;
         padding: 8px;
         flex-direction: column;
     }

     .notify-btn {
         width: 100%;
         border-radius: 8px;
         padding: 10px;
     }

     .email-row input {
         padding: 4px 8px;
     }

     .features {
         gap: 8px;
     }

     .feature-pill {
         font-size: 11px;
         padding: 5px 10px;
     }
 }
